home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / dbmsg / mapi / common / wep.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-11  |  817 b   |  38 lines

  1. /*
  2.  *  WEP.C
  3.  *
  4.  *  WEP function for MAPI DLLs.  This function is placed in a separate
  5.  *  segment so marking the segment as FIXED is not hard on the system.
  6.  *
  7.  *
  8.  *  Copyright 1993-1995 Microsoft Corporation. All Rights Reserved.
  9.  */ 
  10.  
  11. #if defined ( WIN16 )
  12.  
  13. #include <windows.h>
  14. #include <mapidbg.h>
  15.  
  16. #pragma warning(disable:4100)   /* unreferenced formal parameter */
  17.  
  18. #pragma code_seg("WEP_TEXT")
  19.  
  20. /*--------------------------------------------------------------------------
  21.  * Synopsis:    WEP
  22.  *
  23.  * Description: Required DLL exit function.  Does nothing.
  24.  *
  25.  * Parameters:  
  26.  * Returns:
  27.  * Effects:
  28.  * Notes:
  29.  * Revision:
  30.  *-------------------------------------------------------------------------*/
  31. int FAR PASCAL __loadds  WEP( int nParam )
  32. {
  33.     return TRUE;
  34. }
  35.  
  36. #endif
  37.  
  38.