Changeset 136 for trunk/orca/files.c

Show
Ignore:
Timestamp:
05/04/06 15:39:15 (3 years ago)
Author:
krobillard
Message:

Orca - Added os_call config option.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/files.c

    r94 r136  
    2828extern void orReadDir( const char* filename ); 
    2929extern void orNowNative( OValue* a1 ); 
    30 extern void orCallNative( OValue* a1 ); 
    3130extern void orChangeDirNative( OValue* a1 ); 
    3231extern void orWhatDirNative(); 
     
    3534extern void orDeleteNative( OValue* a1 ); 
    3635extern void orGetenvNative( OValue* a1 ); 
     36 
     37#ifdef OR_CONFIG_OS_CALL 
     38extern void orCallNative( OValue* a1 ); 
     39#endif 
    3740 
    3841 
     
    592595    orNative( orRenameNative,     "rename"     ); 
    593596    orNative( orDeleteNative,     "delete"     ); 
    594     orNative( orCallNative,       "call"       ); 
    595597    orNative( orChangeDirNative,  "change-dir" ); 
    596598    orNative( orWhatDirNative,    "what-dir"   ); 
     
    599601    orNative( orGetenvNative,     "getenv"     ); 
    600602    orNative( cleanPathNative,    "clean-path" ); 
     603 
     604#ifdef OR_CONFIG_OS_CALL 
     605    orNative( orCallNative,       "call"       ); 
     606#endif 
     607 
    601608#ifdef OR_CONFIG_COMPRESS 
    602609    orNative( orCompressNative,   "compress"   );