Click here to Skip to main content
15,894,405 members
Articles / Programming Languages / C++

A very simple COM server without ATL or MFC

Rate me:
Please Sign up or sign in to vote.
4.30/5 (18 votes)
3 Aug 2000CPOL 262.1K   3.4K   62  
A step by step guide to write a COM server using C++ without MFC or ATL.

Revisions


  

Compare Revision Minor Date Status Editor
1 - publicly available No 3-Aug-00 18:00 Available Chris Maunder

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
Pakistan Pakistan
Let a = b ....... (1)
a - b = a - b
a^2 - ab = a^2 - ab
a^2 - ab = a^2 - b^2 (from 1)
a (a - b) = (a + b) (a - b)
a = (a + b) ...... (2)

if a = 1
1 = (1 + 1) (from 1 & 2)
1 = 2 !!

Comments and Discussions