source: trunk/tools/database/StateUpd.h@ 6677

Last change on this file since 6677 was 6677, checked in by bird, 24 years ago

dll to module conversion.

File size: 1.3 KB
Line 
1/* $Id: StateUpd.h,v 1.6 2001-09-07 10:24:06 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
16typedef struct _options
17{
18 BOOL fIntegrityBefore; /* ib */
19 BOOL fIntegrityAfter; /* ie */
20 BOOL fIntegrityOnly; /* io */
21 BOOL fRecursive; /* s */
22 BOOL fOld; /* Old */
23 BOOL fOS2; /* Ignore OS2 prefixes. */
24 BOOL fCOMCTL32; /* Ignore COMCTL32 prefixes. */
25 BOOL fVERSION; /* Ignore VERSION prefixes. */
26 char * pszModName; /* Name of the module being processed. */
27 char chModType; /* Type of module being processed. */
28 signed long lModRefcode; /* Database reference code of the module. */
29 signed long lFileRefcode; /* File reference code. */
30 char ** papszDirs; /* Pointer to NULL terminated array of directories*/
31 /* to be searched when .obj files are specified. */
32} OPTIONS, *POPTIONS;
33
34
35#endif /*_StateUpd_h_*/
Note: See TracBrowser for help on using the repository browser.