/***********************************************************************/ /* Open Visualization Data Explorer */ /* (C) Copyright IBM Corp. 1989,1999 */ /* ALL RIGHTS RESERVED */ /* This code licensed under the */ /* "IBM PUBLIC LICENSE - Open Visualization Data Explorer" */ /***********************************************************************/ #include /*** MODULE: Executive SHORTDESCRIPTION: Execute an executive command CATEGORY: Debugging INPUTS: input; String; (none); Command to be executed input; Object; (none); Command-dependent REPEAT: 1 OUTPUTS: END: ***/ #include #include /* prototypes for things in command.c */ extern Error _dxf_ExExecCommand(Object *in); Error m_Executive(Object *in, Object *out) { return (_dxf_ExExecCommand (in)); }