Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
389 B

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * pcy15Sep93: Use NT Registry for some stuff, then use our ini file
  7. *
  8. */
  9. #ifndef _INC__NTCFGMGR_H
  10. #define _INC__NTCFGMGR_H
  11. #include "cfgmgr.h"
  12. // Defines
  13. //
  14. _CLASSDEF(NTConfigManager)
  15. class NTConfigManager : public IniConfigManager {
  16. public:
  17. NTConfigManager();
  18. virtual ~NTConfigManager();
  19. virtual INT Get(INT, PCHAR);
  20. };
  21. #endif