home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / vxtech07.zip / RXAWAR / VARPOOL / C / VARPOOL.H < prev   
C/C++ Source or Header  |  1994-08-05  |  510b  |  16 lines

  1. /*
  2.  * varpool.h -- Definitions for varpool.c
  3.  */
  4.  
  5. #ifndef VARPOOL_H_INCLUDED
  6. #define VARPOOL_H_INCLUDED
  7.  
  8.     extern LONG VarFetchValue( PSZ name, PRXSTRING value );
  9.     extern LONG VarFetchStemValue( PSZ stem, USHORT count, PRXSTRING value );
  10.     extern LONG VarSetValue( PSZ name, PRXSTRING value );
  11.     extern LONG VarSetStemValue( PSZ name, USHORT count, PRXSTRING value );
  12.     extern LONG VarDropValue( PSZ name );
  13.     extern LONG VarGetNextValue( PRXSTRING name, PRXSTRING value );
  14.  
  15. #endif
  16.