home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / detk45he.zip / callconv.h < prev    next >
C/C++ Source or Header  |  1999-03-15  |  657b  |  34 lines

  1. /*
  2.  * COMPONENT_NAME:
  3.  *
  4.  * FUNCTIONS:  Defines items for use with UniQueryLocaleItem - public
  5.  *
  6.  * ORIGINS: 27
  7.  *
  8.  * (C) COPYRIGHT International Business Machines Corp. 1989, 1992
  9.  * All Rights Reserved
  10.  * Licensed Materials - Property of IBM
  11.  *
  12.  * US Government Users Restricted Rights - Use, duplication or
  13.  * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  14.  */
  15.  
  16. #ifndef _ULS_CALLCONV_
  17. #define _ULS_CALLCONV_
  18.  
  19. #ifdef __cplusplus
  20.    extern "C" {
  21. #endif
  22.  
  23. #if defined(__IBMCPP__) || defined(__IBMC__)
  24.    #define CALLCONV    _System
  25. #else
  26.    #define CALLCONV
  27. #endif
  28.  
  29. #ifdef __cplusplus
  30.    }
  31. #endif
  32.  
  33. #endif
  34.