00001 #include "dbmi.h" 00002 #include "macros.h" 00003 00004 db__send_handle (handle) 00005 dbHandle *handle; 00006 { 00007 DB_SEND_STRING (&handle->dbName); 00008 DB_SEND_STRING (&handle->dbSchema); 00009 00010 return DB_OK; 00011 } 00012 00013 db__recv_handle (handle) 00014 dbHandle *handle; 00015 { 00016 DB_RECV_STRING (&handle->dbName); 00017 DB_RECV_STRING (&handle->dbSchema); 00018 00019 return DB_OK; 00020 }