home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / idaenv.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  670 b   |  31 lines

  1. #ifndef CLSENV_HPP
  2. #define CLSENV_HPP
  3.  
  4. /***********************************************
  5.  
  6.     Licensed Materials - Property of IBM
  7.  
  8.     5622-880   5801-AAR
  9.  
  10.     (c) Copyright IBM Corp 1991, 1996.
  11.  
  12. ************************************************/
  13.  
  14. #include <istring.hpp>
  15.  
  16. class _Export ClsEnv {
  17. public:
  18.     // Message routine
  19.     static IString daxMsg(long msgNumber,
  20.                         long fieldCnt = 0,
  21.                         char* pField1 = 0,
  22.                         char* pField2 = 0,
  23.                         char* pField3 = 0,
  24.                         char* pField4 = 0,
  25.                         char* pField5 = 0);
  26.  
  27.  
  28. };
  29.  
  30. #endif
  31.