/* XShipWars `Cap Off' Functions Functions: --- Since this program is using some XShipWars client code, these functions are to `capped off' for certain shared code to call. These functions basically do nothing. */ #include "swterm.h" void BridgeWinDrawPanel( int obj_num, int panel_detail ) { return; } void BridgeWinDrawAll(void) { return; } int EcoWinDoAddInventory( int customer_obj, int proprietor_obj, xsw_ecoproduct_struct product ) { return(0); } int EcoWinDraw(void) { return(0); } void EcoWinMap(void) { return; } int ISRefIsLoaded(int isref_num) { return(1); /* Yeah, I guess it's loaded ;) */ } int ISRefLoad(int isref_num) { return(0); /* Uuuh, yup, it loaded just fine! */ } int ISRefLoadFromFile(char *filename) { return(0); /* File loading was successful. ;) */ } void ISRefUnload(int isref_num) { return; } void ScannerUpdateLabels(int object_num) { return; } void OSWDestroyImage(image_t **image) { return; } void VSDrawUpdateWeaponLabel( image_t **image, pixmap_t pixmap ) { return; } void VSDrawUpdateNetstatsLabel( image_t **image, pixmap_t pixmap ) { return; } int VSLabelAdd( char *text, WColorStruct fg_color, WColorStruct bg_color, font_t *font, xsw_object_struct *obj_ptr ) { return(0); } void VSLabelDelete(int n) { return; } void VSLabelDeleteByObjectPtr(xsw_object_struct *obj_ptr) { return; } void VSLabelDeleteAll() { return; }