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

Last change on this file since 2783 was 2759, checked in by bird, 26 years ago

Odin32 DB.

File size: 934 bytes
Line 
1/* $Id: StateUpd.h,v 1.2 2000-02-11 18:35:54 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 * pszDLLName; /* Name of the dll being processed */
27 signed long lDllRefcode; /* Database reference code of the dll */
28} OPTIONS, *POPTIONS;
29
30
31#endif /*_StateUpd_h_*/
Note: See TracBrowser for help on using the repository browser.