Make joy_install, joy_uninstall user callable functions

git-svn-id: svn://svn.cc65.org/cc65/trunk@1950 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-02-10 22:11:12 +00:00
parent 0346cf692e
commit 3aee15b6ce
5 changed files with 41 additions and 38 deletions

View File

@@ -84,10 +84,18 @@ extern const char joy_stddrv[];
unsigned char __fastcall__ joy_load_driver (const char* driver);
/* Load a joystick driver and return an error code */
/* Load and install a joystick driver. Return an error code. */
unsigned char __fastcall__ joy_unload (void);
/* Unload the currently loaded driver. */
/* Uninstall, then unload the currently loaded driver. */
unsigned char __fastcall__ joy_install (void* driver);
/* Install an already loaded driver. */
unsigned char __fastcall__ joy_uninstall (void);
/* Uninstall the currently loaded driver. Note: This call does not free
* allocated memory.
*/
unsigned char __fastcall__ joy_count (void);
/* Return the number of joysticks supported by the driver */