Fixed a problem in mouse_load_driver: The driver was not removed from memory

when the load failed.


git-svn-id: svn://svn.cc65.org/cc65/trunk@3748 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2006-06-04 09:48:14 +00:00
parent d93f31777c
commit c1a38ce8f4
4 changed files with 34 additions and 7 deletions

View File

@@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 2003 Ullrich von Bassewitz */
/* R<>merstra<72>e 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* (C) 2003-2006, Ullrich von Bassewitz */
/* R<EFBFBD>merstra<EFBFBD>e 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@@ -49,6 +49,17 @@ extern void* mouse_drv; /* Pointer to driver */
/*****************************************************************************/
/* Code */
/*****************************************************************************/
void mouse_clear_ptr (void);
/* Clear the mouse_drv pointer */
/* End of mouse-kernel.h */
#endif