home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / MSGTRACE.ZIP / MyProjects / MsgTrace / MsgTracerPS / dlldatax.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-30  |  1.1 KB  |  33 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // File        : dlldatax.c
  4. // Project     : MsgTrace
  5. // Component   : MsgTracerPS
  6. //---------------------------------------------------------------------------
  7. // Description : wrapper for dlldata - to override DllRegisterServer
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. //
  11. // SourceSafe Strings. Do not change.
  12. //---------------------------------------------------------------------------
  13. // $Author: jeskes $
  14. // $Date: $
  15. // $Revision: $
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18.  
  19. #define _WIN32_WINNT 0x0400    //for WinNT 4.0 or Win95 with DCOM
  20. #define USE_STUBLESS_PROXY    //defined only with MIDL switch /Oicf
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23.  
  24. #define DllMain                PrxDllMain
  25. #define DllRegisterServer    PrxDllRegisterServer
  26. #define DllUnregisterServer PrxDllUnregisterServer
  27.  
  28. #include "dlldata.c"
  29.  
  30. #undef DllMain
  31. #undef DllRegisterServer
  32. #undef DllUnregisterServer 
  33.