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