Rev | Line | |
---|
[8006] | 1 | /* $Id: StateUpd.h,v 1.8 2002-02-24 02:58:28 bird Exp $ */
|
---|
[830] | 2 | /*
|
---|
| 3 | * StateUpd - Scans source files for API functions and imports data on them.
|
---|
| 4 | *
|
---|
| 5 | * Copyright (c) 1999 knut st. osmundsen
|
---|
| 6 | *
|
---|
| 7 | */
|
---|
| 8 | #ifndef _StateUpd_h_
|
---|
| 9 | #define _StateUpd_h_
|
---|
| 10 |
|
---|
| 11 | #define MAJOR_VER 0
|
---|
[2759] | 12 | #define MINOR_VER 5
|
---|
[830] | 13 |
|
---|
| 14 | #pragma pack()
|
---|
| 15 |
|
---|
| 16 | typedef struct _options
|
---|
| 17 | {
|
---|
[8006] | 18 | KBOOL fIntegrityBefore; /* ib */
|
---|
| 19 | KBOOL fIntegrityAfter; /* ie */
|
---|
| 20 | KBOOL fIntegrityOnly; /* io */
|
---|
| 21 | KBOOL fRecursive; /* s */
|
---|
| 22 | KBOOL fOld; /* Old */
|
---|
| 23 | KBOOL fOS2; /* Ignore OS2 prefixes */
|
---|
| 24 | KBOOL fCOMCTL32; /* Ignore COMCTL32 prefixes */
|
---|
| 25 | KBOOL fVERSION; /* Ignore VERSION prefixes */
|
---|
[6678] | 26 | char * pszDLLName; /* Name of the dll being processed */
|
---|
| 27 | signed long lDllRefcode; /* Database reference code of the dll */
|
---|
[3838] | 28 | signed long lFileRefcode; /* File reference code. */
|
---|
[6678] | 29 | signed long lSeqFile; /* Design note file sequence number. */
|
---|
[830] | 30 | } OPTIONS, *POPTIONS;
|
---|
| 31 |
|
---|
| 32 |
|
---|
| 33 | #endif /*_StateUpd_h_*/
|
---|
Note:
See
TracBrowser
for help on using the repository browser.