Click here to Skip to main content
15,902,635 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Single Instance DLL Pin
Erik Funkenbusch19-Sep-00 13:07
Erik Funkenbusch19-Sep-00 13:07 
GeneralRe: Single Instance DLL Pin
Larry Dobson19-Sep-00 17:03
Larry Dobson19-Sep-00 17:03 
GeneralRe: Single Instance DLL Pin
Erik Funkenbusch20-Sep-00 9:14
Erik Funkenbusch20-Sep-00 9:14 
GeneralPaint problems Pin
Ori19-Sep-00 7:56
Ori19-Sep-00 7:56 
GeneralISAPI Filter Pin
Anderson J Almeida19-Sep-00 7:21
sussAnderson J Almeida19-Sep-00 7:21 
GeneralODBC API, BLOBs Pin
Oz Ben Eliezer19-Sep-00 7:12
Oz Ben Eliezer19-Sep-00 7:12 
QuestionInteresting Question on DLL...use class* as a parameter../?? Pin
Ryan Park18-Sep-00 23:52
Ryan Park18-Sep-00 23:52 
AnswerRe: Interesting Question on DLL...use class* as a parameter../?? Pin
Jignesh Patel19-Sep-00 4:12
Jignesh Patel19-Sep-00 4:12 
There are a few things that you'd need to change to make it work the way that you intended it to work.

First of all, you need to change the Set function to take in a pointer to a pointer.

Secondly, in your set function you are creating a CA object on the stack (which will get destroyed as soon as the function returns, even though you may have copied the correct address - which doesn't happen anyway.

Try this...
In DLL:

Set(CA** ppCAInDll)
{
CA * pA = new CA;
*ppCAInDll = pA;
}

In EXE:
CA* inexe = NULL;
Set(&inexe);
inexe->aa();
inexe->bb();


Make sure you delete the object pointed to by inexe, since it's been new'ed in the dll.

GeneralRe: Interesting Question on DLL...use class* as a parameter../?? Pin
Ryan Park19-Sep-00 16:16
Ryan Park19-Sep-00 16:16 
GeneralRe: Interesting Question on DLL...use class* as a parameter../?? Pin
WoR20-Sep-00 22:04
WoR20-Sep-00 22:04 
AnswerRe: Interesting Question on DLL...use class* as a parameter../?? Pin
Sam Hobbs19-Sep-00 7:34
Sam Hobbs19-Sep-00 7:34 
GeneralRe: Interesting Question on DLL...use class* as a parameter../?? Pin
Ryan Park19-Sep-00 16:59
Ryan Park19-Sep-00 16:59 
AnswerRe: Interesting Question on DLL...use class* as a parameter../?? Pin
Paolo Messina19-Sep-00 23:28
professionalPaolo Messina19-Sep-00 23:28 
GeneralRe: Interesting Question on DLL...use class* as a parameter../?? Pin
Wade Brainerd20-Sep-00 1:10
Wade Brainerd20-Sep-00 1:10 
GeneralRe: Interesting Question on DLL...use class* as a parameter../?? Pin
Sam Hobbs21-Sep-00 18:10
Sam Hobbs21-Sep-00 18:10 
GeneralSome Color issues...redirecting the registry? =) Pin
Fredrik18-Sep-00 23:16
Fredrik18-Sep-00 23:16 
GeneralRe: Some Color issues...redirecting the registry? =) Pin
#realJSOP19-Sep-00 1:20
professional#realJSOP19-Sep-00 1:20 
GeneralRe: Some Color issues...redirecting the registry? =) Pin
Fredrik19-Sep-00 2:15
Fredrik19-Sep-00 2:15 
GeneralRe: Some Color issues...redirecting the registry? =) Pin
#realJSOP21-Sep-00 1:19
professional#realJSOP21-Sep-00 1:19 
GeneralRe: Some Color issues...redirecting the registry? =) Pin
Fredrik21-Sep-00 1:38
Fredrik21-Sep-00 1:38 
GeneralConsole Output to Windows Control Pin
J. J.18-Sep-00 5:43
sussJ. J.18-Sep-00 5:43 
GeneralRe: Console Output to Windows Control Pin
Sam Hobbs18-Sep-00 11:26
Sam Hobbs18-Sep-00 11:26 
GeneralButton color Pin
Roger18-Sep-00 5:42
Roger18-Sep-00 5:42 
GeneralHere's what I did... Pin
Fredrik18-Sep-00 22:50
Fredrik18-Sep-00 22:50 
GeneralRe: Here's what I did... Pin
Roger19-Sep-00 2:17
Roger19-Sep-00 2:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.