source: trunk/tools/impdef/ImpDef.h@ 10367

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

New kFile* classes.

File size: 1.2 KB
Line 
1/* $Id: ImpDef.h,v 1.3 2002-02-24 02:44:40 bird Exp $ */
2/*
3 * ImpDef - Create export file which use internal names and ordinals.
4 *
5 * Copyright (c) 1999 knut st. osmundsen
6 *
7 */
8#ifndef _ImpDef_h_
9#define _ImpDef_h_
10 typedef struct _Options
11 {
12 KBOOL fSimilarToExported; /* Merges the names of the exported and *
13 * internal function when possible/needed. */
14 KBOOL ulOrdStartInternalFunctions;
15 /* Ordinal number where internal functions *
16 * starts. API functions have lower *
17 * ordinal values that this number. */
18 KBOOL fRemoveOS2APIPrefix; /* For API exports any OS2 prefix is *
19 * removed (APIs have ordinals less than *
20 * ORD_START_INTERNAL_FUNCTIONS). */
21 KBOOL fInternalFnExportStdCallsIntName;
22 /* Fix! Export internal names for internal *
23 * stdcall functions. */
24 } OPTIONS, *POPTIONS;
25#endif
26
Note: See TracBrowser for help on using the repository browser.