Click here to Skip to main content
15,891,423 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 261.9K   3.4K   62  
A step by step guide to write a COM server using C++ without MFC or ATL.

Views

Daily Counts

Downloads

Weekly Counts

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