From 29f3dcfe05fcde8454cd607fdfe97277fb553055 Mon Sep 17 00:00:00 2001 From: cuz Date: Fri, 13 Dec 2002 00:41:34 +0000 Subject: [PATCH] All module functions are fastcall git-svn-id: svn://svn.cc65.org/cc65/trunk@1760 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/modload.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/modload.h b/include/modload.h index 67d79ecec..04ad54d79 100644 --- a/include/modload.h +++ b/include/modload.h @@ -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 * error code (see below). If MLOAD_OK is returned, the outgoing fields in * the passed mod_ctrl struct contain information about the module just * 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 * module memory, not a pointer to a control structure. */ -- 2.39.5