comparison dmd/backend/Cstate.d @ 174:af724d3510d7

lot os toCBuffer methods implemented moved shared Type.* stuff into Global
author korDen
date Sun, 10 Oct 2010 03:47:23 +0400
parents e28b18c23469
children
comparison
equal deleted inserted replaced
173:d237b38b5858 174:af724d3510d7
18 } 18 }
19 char* modname; // module unique identifier 19 char* modname; // module unique identifier
20 } 20 }
21 21
22 version (Windows) { 22 version (Windows) {
23 extern (C++) extern __gshared Cstate cstate; 23 extern (C++) extern __gshared Cstate cstate; // compiler state
24 extern (C++) extern __gshared symtab_t globsym; /* global symbol table */
25 extern (C++) extern void symtab_free(Symbol** tab);
24 } else { 26 } else {
25 extern (C) extern __gshared Cstate cstate; 27 extern (C) extern __gshared Cstate cstate;
26 } 28 }