Browse Source

Add additional entry types for PCP files

entfile.pas:
  + new entries ibstartrequireds and ibendrequireds to store the list of required packages
  + new entries ibstartcontained and ibendcontained to store the list of contained units
  + new entries ibstartppus and ibendppus to store the list of contained PPU files

git-svn-id: branches/svenbarth/packages@28847 -
svenbarth 10 years ago
parent
commit
a53d17feea
1 changed files with 6 additions and 0 deletions
  1. 6 0
      compiler/entfile.pas

+ 6 - 0
compiler/entfile.pas

@@ -38,6 +38,12 @@ interface
     subentryid          = 2;
     {special}
     iberror             = 0;
+    ibstartrequireds    = 242;
+    ibendrequireds      = 243;
+    ibstartcontained    = 244;
+    ibendcontained      = 245;
+    ibstartppus         = 246;
+    ibendppus           = 247;
     ibstartdefs         = 248;
     ibenddefs           = 249;
     ibstartsyms         = 250;