Click here to Skip to main content
15,911,789 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionhow to create a hook to stop a certain process run by another application? Pin
auralius manurung13-Aug-08 1:09
auralius manurung13-Aug-08 1:09 
AnswerRe: how to create a hook to stop a certain process run by another application? Pin
sashoalm13-Aug-08 2:16
sashoalm13-Aug-08 2:16 
GeneralRe: how to create a hook to stop a certain process run by another application? Pin
auralius manurung15-Aug-08 0:39
auralius manurung15-Aug-08 0:39 
GeneralRe: how to create a hook to stop a certain process run by another application? Pin
sashoalm18-Aug-08 20:36
sashoalm18-Aug-08 20:36 
QuestionLinker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
sashoalm13-Aug-08 1:05
sashoalm13-Aug-08 1:05 
AnswerRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
Nibu babu thomas13-Aug-08 1:26
Nibu babu thomas13-Aug-08 1:26 
GeneralRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
sashoalm13-Aug-08 2:10
sashoalm13-Aug-08 2:10 
GeneralRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
Nibu babu thomas13-Aug-08 2:17
Nibu babu thomas13-Aug-08 2:17 
I guess this class must be imported instead of exported since IMO it's an external library which you are using. You might have defined some macros which you shouldn't.

Let me guess!

#if defined _EXPORT_FROM_DLL
  #define EXPORT_IMPORT __declspec(dllexport)
#else
  #define EXPORT_IMPORT __declspec(dllimport)
#endif

class EXPORT_IMPORT CxImage
{
   // Some code...
}


So somewhere _EXPORT_FROM_DLL is getting defined which forces an export.


Nibu babu thomas
Microsoft MVP for VC++


Code must be written to be read, not by the compiler, but by another human being.

Programming Blog: http://nibuthomas.wordpress.com

GeneralRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
sashoalm13-Aug-08 2:37
sashoalm13-Aug-08 2:37 
GeneralRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
Nibu babu thomas13-Aug-08 2:41
Nibu babu thomas13-Aug-08 2:41 
GeneralRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
sashoalm13-Aug-08 2:56
sashoalm13-Aug-08 2:56 
GeneralRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
Nibu babu thomas13-Aug-08 3:01
Nibu babu thomas13-Aug-08 3:01 
GeneralRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
sashoalm13-Aug-08 3:06
sashoalm13-Aug-08 3:06 
GeneralRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
Jörgen Sigvardsson13-Aug-08 3:35
Jörgen Sigvardsson13-Aug-08 3:35 
NewsRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
sashoalm13-Aug-08 3:48
sashoalm13-Aug-08 3:48 
AnswerRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
Jijo.Raj13-Aug-08 1:35
Jijo.Raj13-Aug-08 1:35 
GeneralRe: Linker creates *.lib and *.exp files for my EXE project, does anyone know what this means? Pin
sashoalm13-Aug-08 2:01
sashoalm13-Aug-08 2:01 
Questionusing directx in MFC Pin
koushik.net13-Aug-08 0:15
koushik.net13-Aug-08 0:15 
QuestionUsing Microsoft RTC, for video conferencing Pin
Ahmed Charfeddine12-Aug-08 23:51
Ahmed Charfeddine12-Aug-08 23:51 
AnswerRe: Using Microsoft RTC, for video conferencing Pin
Mark Salsbery13-Aug-08 6:39
Mark Salsbery13-Aug-08 6:39 
GeneralRe: Using Microsoft RTC, for video conferencing Pin
Ahmed Charfeddine13-Aug-08 7:17
Ahmed Charfeddine13-Aug-08 7:17 
GeneralRe: Using Microsoft RTC, for video conferencing Pin
Mark Salsbery13-Aug-08 7:40
Mark Salsbery13-Aug-08 7:40 
GeneralRe: Using Microsoft RTC, for video conferencing Pin
Ahmed Charfeddine17-Aug-08 22:36
Ahmed Charfeddine17-Aug-08 22:36 
GeneralRe: Using Microsoft RTC, for video conferencing Pin
Mark Salsbery18-Aug-08 5:34
Mark Salsbery18-Aug-08 5:34 
GeneralRe: Using Microsoft RTC, for video conferencing Pin
Ahmed Charfeddine18-Aug-08 5:41
Ahmed Charfeddine18-Aug-08 5:41 

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.