home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / shell / fparser / entry.h next >
Encoding:
C/C++ Source or Header  |  1995-02-14  |  491 b   |  23 lines

  1.     /*
  2.     |    These are #define that would have been put in vwdefs.h,
  3.     |    but they need to be defined before vwdefs.h is included in
  4.     |    vsctop.h so the filter writers can use them, especially
  5.     |    VWPRT, in their own include file, which is included
  6.     |    before vwdefs.h
  7.     */
  8.  
  9.  
  10. #define WINDOWS
  11.  
  12. #ifdef WIN32
  13.  
  14. #define VWPTR
  15. #define VW_ENTRYSC    __declspec(dllexport)
  16. #define VW_ENTRYMOD    __cdecl
  17. #define VW_LOCALSC
  18. #define VW_LOCALMOD    __cdecl
  19. #define VW_SEPARATE_DATA
  20.  
  21. #endif /*WIN32*/
  22.  
  23.