h2d_showpop.def: Translation to Stony Brook Modula-2

Last updated: 2. 1.1998, 21:18

DEFINITION MODULE h2d_showpop;
(*-----------------------
   SHOWPOP.H header file
  -----------------------*)
IMPORT WIN32;
IMPORT SYSTEM;  
TYPE
  POP        = RECORD
                 szAbb    : WIN32.LPSTR;
                 szState  : WIN32.LPSTR;
                 lPop     : WIN32.LONG;
               END;
POPARR       = ARRAY[0..51] OF POP;
VAR
  pop        : POPARR;
 
CONST 
  NUM_STATES = (SIZE(pop) / SIZE(pop[0]));
END h2d_showpop.