ARPDAS_QNX6 1.0
cis_stubs.c
Go to the documentation of this file.
00001 /* cis_stubs.c
00002   These are definitions to go in the shared library and resolve
00003   symbols when programs haven't supplied their own versions.
00004 */
00005 #include "cmdalgo.h"
00006 
00007 char ci_version[] = "";
00008 void cis_initialize(void) {}
00009 void cis_terminate(void) {}
00010 void cis_interfaces(void) {}
00011 void cis_interfaces_close(void) {}
00012 int  cmd_batch( char *cmd, int test ) {
00013   cmd = cmd;
00014   test = test;
00015   return 0;
00016 }
00017 void cmd_init(void) {}
00018 void cmd_report(cmd_state *s) {
00019   s = s;
00020 }
00021 int cmd_check(cmd_state *s) {
00022   s = s;
00023   return 0;
00024 }
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines