Changeset 77 for trunk/orca/ovalue.c

Show
Ignore:
Timestamp:
03/08/06 14:59:29 (3 years ago)
Author:
volker
Message:

remove-each added

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/ovalue.c

    r68 r77  
    2626#include <math3d.h> 
    2727#endif 
    28  
     28//: 
     29#include "encap.h"  
    2930 
    3031static const char* _datatypes[] = 
     
    108109extern void orUseNative( OValue* ); 
    109110extern void orForeachNative( OValue* ); 
     111 
     112extern void orRemoveEachNative(); 
    110113 
    111114extern void orFileNatives(); 
     
    44264429    orNative( orRepeatNative,  "repeat" ); 
    44274430    orNative( orForeachNative, "foreach" ); 
     4431 
     4432    orNative( orRemoveEachNative,  "remove-each" ); 
     4433 
    44284434    orNative( orUntilNative,   "until" ); 
    44294435    orNative( orWhileNative,   "while" ); 
     
    44504456    orNative( orDumpNative,    "dump" ); 
    44514457#endif 
     4458 
     4459 
    44524460} 
    44534461