mirror of
https://github.com/cc65/cc65.git
synced 2025-01-13 09:31:53 +00:00
All module functions are fastcall
git-svn-id: svn://svn.cc65.org/cc65/trunk@1760 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
5a3040dfb1
commit
29f3dcfe05
@ -72,14 +72,14 @@ struct mod_ctrl {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
unsigned char mod_load (struct mod_ctrl* ctrl);
|
unsigned char __fastcall__ mod_load (struct mod_ctrl* ctrl);
|
||||||
/* Load a module into memory and relocate it. The function will return an
|
/* Load a module into memory and relocate it. The function will return an
|
||||||
* error code (see below). If MLOAD_OK is returned, the outgoing fields in
|
* error code (see below). If MLOAD_OK is returned, the outgoing fields in
|
||||||
* the passed mod_ctrl struct contain information about the module just
|
* the passed mod_ctrl struct contain information about the module just
|
||||||
* loaded.
|
* loaded.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void mod_free (void* module);
|
void __fastcall__ mod_free (void* module);
|
||||||
/* Free a loaded module. Note: The given pointer is the pointer to the
|
/* Free a loaded module. Note: The given pointer is the pointer to the
|
||||||
* module memory, not a pointer to a control structure.
|
* module memory, not a pointer to a control structure.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user