source: trunk/gsinstaller/gsProfile.h@ 1473

Last change on this file since 1473 was 1397, checked in by cs025, 24 years ago

Initial revision

  • Property svn:keywords set to Author Date Id Revision
File size: 585 bytes
Line 
1#ifndef _GSPROFILE_H_
2#define _GSPROFILE_H_
3#include <windows.h>
4class gsProfile
5{
6 private:
7 const char *fileName;
8 protected:
9 public:
10 gsProfile(const char *fileName);
11 bool ensureListMember(const char *sectionName, const char *listName, const char *listMember);
12 bool removeListMember(const char *sectionName, const char *listName, const char *listMember);
13 bool addListMember(const char *sectionName, const char *listName, const char *listMember);
14 bool writeString(const char *sectionName, const char *itemName, const char *itemValue);
15};
16#endif
Note: See TracBrowser for help on using the repository browser.