summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-06-14 22:59:50 +0000
committernickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-06-14 22:59:50 +0000
commit9cb5bd46a323da79290737ce5784ff42742819de (patch)
treeed6f88ff8bda06a95fdb321774471f4cda1573de
parent1b94723f08e276dc5e3df31216df6574049014ec (diff)
downloadfpc-9cb5bd46a323da79290737ce5784ff42742819de.tar.gz
+ added constants for the known CC_OmfExtension record subtypes (IMPDEF and
EXPDEF are the ones we care about - they are used in win16 dll import and export libraries) git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@42231 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--compiler/omfbase.pas6
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/omfbase.pas b/compiler/omfbase.pas
index e861baa875..5ccfc88e6e 100644
--- a/compiler/omfbase.pas
+++ b/compiler/omfbase.pas
@@ -159,6 +159,12 @@ interface
CC_DependencyFileBorland = $E9;
CC_CommandLineMicrosoft = $FF;
+ { CC_OmfExtension subtypes }
+ CC_OmfExtension_IMPDEF = $01;
+ CC_OmfExtension_EXPDEF = $02;
+ CC_OmfExtension_INCDEF = $03;
+ CC_OmfExtension_LNKDIR = $05;
+
type
TOmfSegmentAlignment = (
saAbsolute = 0,