home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / monetary.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-20  |  1.7 KB  |  63 lines

  1. #if (defined(__IBMC__) || defined(__IBMCPP__))
  2. #pragma info( none )
  3. #ifndef __CHKHDR__
  4.    #pragma info( none )
  5. #endif
  6. #pragma info( restore )
  7. #endif
  8.  
  9. #ifndef __monetary_h
  10.    #define __monetary_h
  11.  
  12.    #ifdef __cplusplus
  13.       extern "C" {
  14.    #endif
  15.  
  16.    #ifndef  _LNK_CONV
  17.      #ifdef _M_I386
  18.          #define  _LNK_CONV   _Optlink
  19.      #else
  20.        #define  _LNK_CONV
  21.      #endif
  22.    #endif
  23.  
  24.    #ifndef _IMPORT
  25.       #ifdef __IMPORTLIB__
  26.          #define _IMPORT _Import
  27.       #else
  28.          #define _IMPORT
  29.       #endif
  30.    #endif
  31.  
  32.    /********************************************************************/
  33.    /*  <monetary.h> header file                                        */
  34.    /*                                                                  */
  35.    /*  VisualAge for C++ for Windows, Version 3.5                      */
  36.    /*    Licensed Material - Property of IBM                           */
  37.    /*                                                                  */
  38.    /*  5801-ARR and Other Materials                                    */
  39.    /*                                                                  */
  40.    /*  (c) Copyright IBM Corp 1991, 1996. All rights reserved.         */
  41.    /*                                                                  */
  42.    /********************************************************************/
  43.  
  44.  
  45.    #include <stddef.h>
  46.  
  47.    extern int _LNK_CONV strfmon(char *, size_t, char *, ...);
  48.  
  49.    #ifdef __cplusplus
  50.       }
  51.    #endif
  52.  
  53. #endif
  54.  
  55. #if (defined(__IBMC__) || defined(__IBMCPP__))
  56. #pragma info( none )
  57. #ifndef __CHKHDR__
  58.    #pragma info( restore )
  59. #endif
  60. #pragma info( restore )
  61. #endif
  62.  
  63.