cbm_write is not __fastcall__
git-svn-id: svn://svn.cc65.org/cc65/trunk@1525 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -153,7 +153,7 @@ int __fastcall__ cbm_read (unsigned char lfn, void* buffer, unsigned int size);
|
|||||||
* table below).
|
* table below).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int cbm_write(unsigned char lfn, void* buffer, unsigned int size);
|
int __fastcall__ cbm_write (unsigned char lfn, void* buffer, unsigned int size);
|
||||||
/* Writes up to "size" bytes from "buffer" to a file.
|
/* Writes up to "size" bytes from "buffer" to a file.
|
||||||
* Returns the number of actually written bytes or -1 in case of an error.
|
* Returns the number of actually written bytes or -1 in case of an error.
|
||||||
* _oserror contains an errorcode then (see table below).
|
* _oserror contains an errorcode then (see table below).
|
||||||
|
|||||||
@@ -3,7 +3,8 @@
|
|||||||
;
|
;
|
||||||
; Original C code by Marc 'BlackJack' Rintsch, 25.03.2001
|
; Original C code by Marc 'BlackJack' Rintsch, 25.03.2001
|
||||||
;
|
;
|
||||||
; int cbm_write(unsigned char lfn, void* buffer, unsigned int size) {
|
; int __fastcall__ cbm_write(unsigned char lfn, void* buffer, unsigned int size)
|
||||||
|
; {
|
||||||
;
|
;
|
||||||
; static unsigned int byteswritten;
|
; static unsigned int byteswritten;
|
||||||
;
|
;
|
||||||
|
|||||||
Reference in New Issue
Block a user