Changeset 281
- Timestamp:
- Mar 30, 2007, 10:31:57 PM (18 years ago)
- Location:
- trunk/nom
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/Makefile
r242 r281 22 22 23 23 GCLIB = ./../../../o/gc.a 24 25 # NOM IDL compiler 26 NOMIDLINC = 27 # -I$(FOUNDATIONPATH)/idl -I$(TKIDLDIR) \ 28 # -I$(GUITKPATH)/idl 29 30 NOMIDLCOMPILER = $(BINDIR)/nom-idl-compiler.exe 24 31 25 32 ADDLIBS = … … 84 91 BASE_SCCOMPILEH = sc -I $(IDLDIR) -p -r -sh -d$(CLASSINC) -maddstar -mnoint -S128000 -C128000 $< && $(FIXLINKAGEH) 85 92 86 BASE_NOMCOMPILEH = $(IDLCOMP) --showcpperrors --header --output-dir=$(CLASSINC) $<87 BASE_NOMCOMPILEIH = $(IDLCOMP) --showcpperrors --ihfile --output-dir=$(CLASSINC) $<93 #BASE_NOMCOMPILEH = $(IDLCOMP) --showcpperrors --header --output-dir=$(CLASSINC) $< 94 #BASE_NOMCOMPILEIH = $(IDLCOMP) --showcpperrors --ihfile --output-dir=$(CLASSINC) $< 88 95 BASE_NOMCOMPILEC = $(IDLCOMP) --showcpperrors --c-template --output-dir=$(CLASSTEMPLATEDIR) $< 89 96 97 BASE_NOMCOMPILEH = gcc -E -x c -D__NOM_IDL_COMPILER__ $(NOMIDLINC) $< | $(NOMIDLCOMPILER) --emit-h -d $(CLASSINC) - 98 BASE_NOMCOMPILEIH = gcc -E -x c -D__NOM_IDL_COMPILER__ $(NOMIDLINC) $< | $(NOMIDLCOMPILER) --emit-ih -d $(CLASSINC) - 99 90 100 91 101 $(OBJDIR)/%.o: $(CLASSCDIR)/%.c $(NOMINCLUDES) -
trunk/nom/idl/nomclassmanager.idl
r250 r281 40 40 #define nomcm_idl 41 41 42 #include <nomobj.idl>42 #include "nomobj.idl" 43 43 44 44 /** \interface NOMClassMgr … … 51 51 interface NOMClassMgr : NOMObject 52 52 { 53 53 #ifdef __NOM_IDL_COMPILER__ 54 filestem=nomclassmanager; 55 #endif 54 56 NOMCLASSVERSION(1, 0 ); 55 57 … … 69 71 The class with the given name or NULL if not found. 70 72 */ 71 Object nomFindClassFromId(in long classId,73 PNOMObject nomFindClassFromId(in long classId, 72 74 in long ulMajorVersion, 73 75 in long ulMinorVersion); -
trunk/nom/idl/nomcls.idl
r251 r281 50 50 interface NOMClass:NOMObject 51 51 { 52 #ifdef __NOM_IDL_COMPILER__ 53 filestem=nomcls; 54 #endif 52 55 53 56 NOMCLASSVERSION(1, 0 ); -
trunk/nom/idl/nomobj.idl
r255 r281 53 53 interface NOMObject 54 54 { 55 #ifdef __NOM_IDL_COMPILER__ 56 filestem=nomobj; 57 #endif 55 58 56 59 NOMCLASSVERSION(1, 0 ); -
trunk/nom/include/nom.h
r255 r281 98 98 typedef char* CORBA_string; 99 99 100 //typedef gboolean boolean; 101 100 102 #if 0 101 103 #if !defined(ORBIT_DECL_CORBA_Object) && !defined(_CORBA_Object_defined) … … 121 123 #ifndef NOM_BOOLEAN 122 124 #define NOM_BOOLEAN 123 typedef unsigned charboolean;125 typedef gboolean boolean; 124 126 #endif /* NOM_BOOLEAN */ 125 127 -
trunk/nom/src/nomdebug.c
r257 r281 109 109 if(!fInitialized) 110 110 return TRUE; 111 112 //if(strstr( chrMethodName, "nomIsObj"))113 //return TRUE;114 111 115 112 if(ev && (ev->fFlags & NOMENV_FLG_DONT_CHECK_OBJECT))
Note:
See TracChangeset
for help on using the changeset viewer.