Changeset 3246 for trunk/tools
- Timestamp:
- Mar 27, 2000, 12:18:42 PM (25 years ago)
- Location:
- trunk/tools/common
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/common/kFileFormatBase.h
r824 r3246 1 /* 1 /* $Id: kFileFormatBase.h,v 1.2 2000-03-27 10:18:40 bird Exp $ 2 * 2 3 * kFileFormatBase - Base class for kFile<format> classes. 3 4 * 4 * Copyright (c) 1999 knut st. osmundsen 5 * Copyright (c) 1999-2000 knut st. osmundsen (knut.stange.osmundsen@pmsc.no) 6 * 7 * Project Odin Software License can be found in LICENSE.TXT 5 8 * 6 9 */ 10 7 11 #ifndef _kFileFormat_h_ 8 12 #define _kFileFormat_h_ … … 39 43 class kFileFormatBase 40 44 { 41 public: 42 virtual BOOL queryModuleName(char *pszBuffer) = 0; 43 virtual BOOL findFirstExport(PEXPORTENTRY pExport) = 0; 44 virtual BOOL findNextExport(PEXPORTENTRY pExport) = 0; 45 virtual BOOL isDef() const { return FALSE;} 46 virtual BOOL isPe() const { return FALSE;} 45 public: 46 virtual BOOL queryModuleName(char *pszBuffer) = 0; 47 virtual BOOL findFirstExport(PEXPORTENTRY pExport) = 0; 48 virtual BOOL findNextExport(PEXPORTENTRY pExport) = 0; 49 virtual BOOL isDef() const { return FALSE;} 50 virtual BOOL isPe() const { return FALSE;} 51 virtual BOOL isLx() const { return FALSE;} 52 53 static void * readfile(const char *pszFilename); 47 54 }; 48 55 -
trunk/tools/common/makefile.icc
r2759 r3246 1 # $Id: makefile.icc,v 1. 5 2000-02-11 18:35:53bird Exp $1 # $Id: makefile.icc,v 1.6 2000-03-27 10:18:42 bird Exp $ 2 2 3 3 # … … 23 23 24 24 25 commonicc.lib: kFilePe.obj kFileDef.obj 25 commonicc.lib: kFilePe.obj kFileDef.obj kFileLx.obj kFileFormatBase.obj 26 26 -$(RM) $@ 27 $(AR) $@ -+kFilePe.obj -+kFileDef.obj , NUL;27 $(AR) $@ -+kFilePe.obj -+kFileDef.obj -+kFileLx.obj -+kFileFormatBase.obj, NUL; 28 28 29 29
Note:
See TracChangeset
for help on using the changeset viewer.