Renamed ..._deinstall -> ..._uninstall.
Rename tgi_setup to tgi_install. Make tgi_install and tgi_deinstall user callable. More cosmetic changes. git-svn-id: svn://svn.cc65.org/cc65/trunk@1966 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -6,10 +6,10 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 2002 Ullrich von Bassewitz */
|
||||
/* Wacholderweg 14 */
|
||||
/* D-70597 Stuttgart */
|
||||
/* EMail: uz@musoftware.de */
|
||||
/* (C) 2002-2003 Ullrich von Bassewitz */
|
||||
/* R<EFBFBD>merstrasse 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
/* */
|
||||
/* */
|
||||
/* This software is provided 'as-is', without any expressed or implied */
|
||||
@@ -46,7 +46,7 @@
|
||||
|
||||
/* A structure that describes the header of a graphics driver loaded into
|
||||
* memory.
|
||||
*/
|
||||
*/
|
||||
typedef struct {
|
||||
|
||||
/* Data that describes the capabilities of the driver */
|
||||
@@ -60,7 +60,7 @@ typedef struct {
|
||||
|
||||
/* Jump vectors. Note that these are not C callable */
|
||||
void* install; /* INSTALL routine */
|
||||
void* deinstall; /* DEINSTALL routine */
|
||||
void* uninstall; /* UNINSTALL routine */
|
||||
void* init; /* INIT routine */
|
||||
void* done; /* DONE routine */
|
||||
void* geterror; /* GETERROR routine */
|
||||
@@ -106,9 +106,6 @@ extern unsigned char tgi_pagecount; /* Number of available screens */
|
||||
const char* __fastcall__ tgi_map_mode (unsigned char mode);
|
||||
/* Map a tgi mode to a driver name. Returns NULL if no driver available. */
|
||||
|
||||
void __fastcall__ tgi_setup (void);
|
||||
/* Setup the driver and graphics kernel once the driver is loaded */
|
||||
|
||||
|
||||
|
||||
/* End of tgi-kernel.h */
|
||||
|
||||
Reference in New Issue
Block a user