Last change
on this file since 8706 was 8006, checked in by bird, 24 years ago |
New kFile* classes; now in sync with os2tools.
|
File size:
1.1 KB
|
Line | |
---|
1 | /* $Id: StateUpd.h,v 1.8 2002-02-24 02:58:28 bird Exp $ */
|
---|
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
|
---|
12 | #define MINOR_VER 5
|
---|
13 |
|
---|
14 | #pragma pack()
|
---|
15 |
|
---|
16 | typedef struct _options
|
---|
17 | {
|
---|
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 */
|
---|
26 | char * pszDLLName; /* Name of the dll being processed */
|
---|
27 | signed long lDllRefcode; /* Database reference code of the dll */
|
---|
28 | signed long lFileRefcode; /* File reference code. */
|
---|
29 | signed long lSeqFile; /* Design note file sequence number. */
|
---|
30 | } OPTIONS, *POPTIONS;
|
---|
31 |
|
---|
32 |
|
---|
33 | #endif /*_StateUpd_h_*/
|
---|
Note:
See
TracBrowser
for help on using the repository browser.