The text of this article is not in this database — only its details are. Read it on the old site: DLL Tutorial Part I : MFC DLL Basics
3 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: DLL Tutorial Part I : MFC DLL Basics
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
palla madhuPosted Oct 13, 2008, 9:19 AM
I never saw like this clear explanation about DLLs in any other website. Thank you to Mahesh Chand. Can you sugest the link for Threads using MFC
Dolly jinhaPosted Dec 26, 2007, 2:43 AM
i'm calling a dll function MakeLog(x,y,z) in a function MakeLog(y,z) of CMeter class. But its giveing me error 'x' unidefined identifier. DB_INT32 CMeter::MakeLog(DB_INT32 y, DB_INT32 z) { DB_INT32 dbi32RetVal = FAIL; dbi32RetVal = makeLog(x,y,z); return dbi32RetVal; }