Changeset 8003 for trunk/tools/common/kFileDef.h
- Timestamp:
- Feb 24, 2002, 3:47:28 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/common/kFileDef.h
r5531 r8003 50 50 char *pszName; 51 51 char *pszIntName; 52 BOOLfResident;52 KBOOL fResident; 53 53 unsigned long cParam; 54 54 struct _DefExport *pNext; … … 66 66 /**@cat pointers to different sections */ 67 67 char *pszType; 68 BOOLfProgram;69 BOOLfLibrary;70 BOOLfPhysicalDevice;71 BOOLfVirtualDevice;72 BOOLfInitInstance;73 BOOLfTermInstance;74 BOOLfInitGlobal;75 BOOLfTermGlobal;68 KBOOL fProgram; 69 KBOOL fLibrary; 70 KBOOL fPhysicalDevice; 71 KBOOL fVirtualDevice; 72 KBOOL fInitInstance; 73 KBOOL fTermInstance; 74 KBOOL fInitGlobal; 75 KBOOL fTermGlobal; 76 76 char *pszModName; 77 77 char chAppType; … … 94 94 95 95 /**@cat internal functions */ 96 void read(kFile *pFile) throw ( int);97 char *readln(kFile *pFile, char *pszBuffer, int cbBuffer) throw ( int);98 BOOLisKeyword(const char *psz);99 BOOLsetModuleName(void);96 void read(kFile *pFile) throw (kError); 97 char *readln(kFile *pFile, char *pszBuffer, int cbBuffer) throw (kError); 98 KBOOL isKeyword(const char *psz); 99 KBOOL setModuleName(void); 100 100 101 101 public: 102 102 /**@cat Constructor/Destructor */ 103 kFileDef(kFile *pFile) throw( int);103 kFileDef(kFile *pFile) throw(kError); 104 104 virtual ~kFileDef(); 105 105 106 106 /** @cat Module information methods. */ 107 BOOLmoduleGetName(char *pszBuffer, int cchSize = 260);107 KBOOL moduleGetName(char *pszBuffer, int cchSize = 260); 108 108 109 109 /** @cat Export enumeration methods. */ 110 BOOLexportFindFirst(kExportEntry *pExport);111 BOOLexportFindNext(kExportEntry *pExport);110 KBOOL exportFindFirst(kExportEntry *pExport); 111 KBOOL exportFindNext(kExportEntry *pExport); 112 112 void exportFindClose(kExportEntry *pExport); 113 113 114 114 /** @cat Export Lookup methods */ 115 BOOLexportLookup(unsigned long ulOrdinal, kExportEntry *pExport);116 BOOLexportLookup(const char * pszName, kExportEntry *pExport);115 KBOOL exportLookup(unsigned long ulOrdinal, kExportEntry *pExport); 116 KBOOL exportLookup(const char * pszName, kExportEntry *pExport); 117 117 118 118 /**@cat queries... */ 119 BOOLisDef() const { return TRUE;}119 KBOOL isDef() const { return TRUE;} 120 120 char const *queryModuleName(void) const { return pszModName; } 121 121 char const *queryType(void) const { return pszType; } … … 132 132 133 133 /**@cat Operations */ 134 BOOL makeWatcomLinkFileAddtion(kFile *pFile) throw(int);134 KBOOL makeWatcomLinkFileAddtion(kFile *pFile) throw(kError); 135 135 136 136 enum {fullscreen = 0, pmvio = 2, pm = 3, unknown = 255};
Note:
See TracChangeset
for help on using the changeset viewer.