Changeset 326 for trunk/idl-compiler/c/emitter.c
- Timestamp:
- Apr 9, 2008, 10:22:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/idl-compiler/c/emitter.c
r290 r326 32 32 * 33 33 * ***** END LICENSE BLOCK ***** */ 34 #include <os2.h> 34 #ifdef __OS2__ 35 # include <os2.h> 36 #endif /* __OS2__ */ 37 35 38 #include <stdlib.h> 36 39 #include <string.h> 37 40 38 #include <glib.h> 39 #include <glib/gprintf.h> 41 #include <glib.h> 42 #include <glib/gprintf.h> 40 43 41 44 #define INCL_FILE … … 86 89 for(b=0;b<pm->uiStar;b++) 87 90 fprintf(fh, "*"); 88 fprintf(fh, " %s,\n", pm->chrName); 91 fprintf(fh, " %s,\n", pm->chrName); 89 92 } 90 93 } … … 101 104 { 102 105 PMETHODPARAM pm=(PMETHODPARAM)g_ptr_array_index(pArray, a); 103 fprintf(fh, " %s,", pm->chrName); 106 fprintf(fh, " %s,", pm->chrName); 104 107 } 105 108 }
Note:
See TracChangeset
for help on using the changeset viewer.