home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / som30tk.zip / som30os2.zip / include / somuutil.h < prev    next >
C/C++ Source or Header  |  1996-12-24  |  1KB  |  38 lines

  1. /***!Start!***
  2.  *
  3.  *   ORIGINS: 27
  4.  *
  5.  *     25H7912  (C)   COPYRIGHT International Business Machines Corp. 1992,1996
  6.  *   All Rights Reserved
  7.  *   Licensed Materials - Property of IBM
  8.  *   The source code for this program is not published or otherwise divested
  9.  *   of its trade secrets, irrespective of what has been deposited with the
  10.  *   U.S. Copyright Office.
  11.  *
  12.  ***!End!***/
  13.  
  14. /*
  15.  *    @(#) 1.13 src/somu/somuutil.h, somu.config, som3.0 5/3/96 15:41:29 [12/24/96 07:58:13]
  16.  *
  17.  *  Public header files for the SOM config file utilities.
  18.  */
  19. #ifndef SOMUUTIL_H
  20. #define SOMUUTIL_H 1
  21.  
  22. #include <som.h>
  23.  
  24.  
  25. #if defined(__IBMC__) && defined(__OS2__)
  26.  #pragma linkage(somutgetenv       , system)
  27.  #pragma linkage(somutgetshellenv  , system)
  28.  #pragma linkage(somutresetenv     , system)
  29.  #pragma linkage(somutgetpath       , system)
  30. #endif
  31.  
  32. SOMEXTERN char * SOMLINK somutgetenv(char *envvar, char *stanza);
  33. SOMEXTERN char * SOMLINK somutgetshellenv(char *envvar, char *stanza);
  34. SOMEXTERN void  SOMLINK somutresetenv(char *newenv);
  35. SOMEXTERN int   SOMLINK somutgetpath(char *path);
  36.  
  37. #endif
  38.