Changeset 77 for trunk/orca/ovalue.c
- Timestamp:
- 03/08/06 14:59:29 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/ovalue.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/ovalue.c
r68 r77 26 26 #include <math3d.h> 27 27 #endif 28 28 //: 29 #include "encap.h" 29 30 30 31 static const char* _datatypes[] = … … 108 109 extern void orUseNative( OValue* ); 109 110 extern void orForeachNative( OValue* ); 111 112 extern void orRemoveEachNative(); 110 113 111 114 extern void orFileNatives(); … … 4426 4429 orNative( orRepeatNative, "repeat" ); 4427 4430 orNative( orForeachNative, "foreach" ); 4431 4432 orNative( orRemoveEachNative, "remove-each" ); 4433 4428 4434 orNative( orUntilNative, "until" ); 4429 4435 orNative( orWhileNative, "while" ); … … 4450 4456 orNative( orDumpNative, "dump" ); 4451 4457 #endif 4458 4459 4452 4460 } 4453 4461
