home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lpathext.zip / lpathext.h < prev    next >
C/C++ Source or Header  |  2001-12-02  |  775b  |  25 lines

  1. /* Function prototypes for LIBPATH extension functions.     */
  2.  
  3. /* Copyright (C) 2001, David W. Noon.  All rights reserved. */
  4.  
  5. #ifndef DWN_LIBPATH_EXTENSIONS_INCLUDED
  6. #define DWN_LIBPATH_EXTENSIONS_INCLUDED
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. unsigned long set_beginlibpath(void);
  12. unsigned long set_endlibpath(void);
  13. unsigned long clear_beginlibpath(void);
  14. unsigned long clear_endlibpath(void);
  15. unsigned long append_beginlibpath(const char * path);
  16. unsigned long append_endlibpath(const char * path);
  17. unsigned long prepend_beginlibpath(const char * path);
  18. unsigned long prepend_endlibpath(const char * path);
  19. unsigned long query_beginlibpath(char * path_list);
  20. unsigned long query_endlibpath(char * path_list);
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif
  25.