]>
git.saurik.com Git - apple/security.git/blob - SecuritySNACCRuntime/compiler/core/exports.h
2 * compiler/core/exports.h -
4 * ExportElmt list set up during parse.
5 * (not kept in Module data struct)
7 * SetExports runs through type, value & macro defs and sets the
8 * exports flag accordingly.
10 * the exportsParsed boolean means whether the symbol "EXPORTS"
11 * was parsed - since if EXPORTS was parsed and the export list
12 * is empty, NOTHING is exported, otherwise if the "EXPORTS"
13 * symbol was not parsed (export list is empty) then EVERYTHING
19 * Copyright (C) 1991, 1992 Michael Sample
20 * and the University of British Columbia
22 * This program is free software; you can redistribute it and/or modify
23 * it under the terms of the GNU General Public License as published by
24 * the Free Software Foundation; either version 2 of the License, or
25 * (at your option) any later version.
27 * $Header: /cvs/Darwin/Security/SecuritySNACCRuntime/compiler/core/exports.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
29 * Revision 1.1 2001/06/20 21:27:56 dmitch
30 * Adding missing snacc compiler files.
32 * Revision 1.1.1.1 1999/03/16 18:06:48 aram
33 * Originals from SMIME Free Library.
35 * Revision 1.2 1994/10/08 03:48:43 rj
36 * since i was still irritated by cpp standing for c++ and not the C preprocessor, i renamed them to cxx (which is one known suffix for C++ source files). since the standard #define is __cplusplus, cplusplus would have been the more obvious choice, but it is a little too long.
38 * Revision 1.1 1994/08/28 09:49:09 rj
39 * first check-in. for a list of changes to the snacc-1.1 distribution please refer to the ChangeLog.
44 typedef struct ExportElmt
48 struct ExportElmt
* next
;
52 void SetExports
PROTO (( Module
* m
, ExportElmt
* e
, int exportsParsed
));