Emitter: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
Line 8: | Line 8: | ||
newemit -C <className> <file_stem> | newemit -C <className> <file_stem> | ||
[[Category:The OS/2 API Project]] |
Revision as of 19:40, 18 June 2012
Emitter is a subclass of SOMTEmitC class. Emitter used to produce output file using template file from object graph of Interface Definition Language file. Phisically emitter represented as DLL with name EMIT<identificator>.DLL. For C headers emith.dll emitter DLL is used. For C++ headers emitxh.dll emitter DLL is used. Emitter DLL contains only one entry with ordinal 1 and name emit.
SOMEXTERN FILE * SOMLINK emit(char *file, Entry * cls, Stab * stab);
emit function creates emitter object (from emitter class, which based on SOMTEmitC) and calls somtGenerateSections method.
Usualy emitter file can be generated using newemit.cmd script (can be found at hobbes in SOMObjects toolkit).
newemit -C <className> <file_stem>