Fix parameters to cbm_load and cbm_save
git-svn-id: svn://svn.cc65.org/cc65/trunk@1757 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -181,8 +181,7 @@ void __fastcall__ cbm_k_clrch (void);
|
||||
|
||||
|
||||
|
||||
unsigned int cbm_load (const char* name, unsigned char device,
|
||||
const char* data);
|
||||
unsigned int cbm_load (const char* name, unsigned char device, void* data);
|
||||
/* Loads file "name" from given device to given address or to the load
|
||||
* address of the file if "data" is the null pointer (like load"name",8,1
|
||||
* in BASIC).
|
||||
@@ -191,7 +190,7 @@ unsigned int cbm_load (const char* name, unsigned char device,
|
||||
*/
|
||||
|
||||
unsigned char cbm_save (const char* name, unsigned char device,
|
||||
unsigned char* data, unsigned int size);
|
||||
const void* data, unsigned int size);
|
||||
/* Saves "size" bytes starting at "data" to a file.
|
||||
* Returns 0 if saving was successful, otherwise an errorcode (see table
|
||||
* below).
|
||||
|
||||
Reference in New Issue
Block a user