]> git.sur5r.net Git - cc65/commitdiff
write functions now get a const void *buffer
authorcpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 17 Oct 2000 21:47:24 +0000 (21:47 +0000)
committercpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 17 Oct 2000 21:47:24 +0000 (21:47 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@375 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/dio.h

index fde6142ec49df1559db13f32624731fb13c2d960..3153094ee5528ccd8982f0e2d1bb189444c5c20e 100644 (file)
@@ -42,15 +42,24 @@ typedef unsigned int  _sectsize_t;
 #define _dio_query_sectsize(x) ((_sectsize_t)256)
 #endif
 
-extern unsigned char __fastcall__ _dio_open        (_driveid_t drive_id);
-extern unsigned char __fastcall__ _dio_close       (_driveid_t drive_id);
-extern unsigned char __fastcall__ _dio_format      (_driveid_t drive_id, unsigned int format);
-extern unsigned char __fastcall__ _dio_read        (_driveid_t drive_id, _sectnum_t sect_num, void *buffer);
-extern unsigned char __fastcall__ _dio_write       (_driveid_t drive_id, _sectnum_t sect_num, void *buffer);
-extern unsigned char __fastcall__ _dio_write_verify(_driveid_t drive_id, _sectnum_t sect_num, void *buffer);
+extern unsigned char __fastcall__ _dio_open  (_driveid_t drive_id);
+extern unsigned char __fastcall__ _dio_close (_driveid_t drive_id);
+extern unsigned char __fastcall__ _dio_format(_driveid_t drive_id,
+                                              unsigned int format);
+extern unsigned char __fastcall__ _dio_read(_driveid_t drive_id,
+                                            _sectnum_t sect_num,
+                                            void *buffer);
+extern unsigned char __fastcall__ _dio_write(_driveid_t drive_id,
+                                             _sectnum_t sect_num,
+                                             const void *buffer);
+extern unsigned char __fastcall__ _dio_write_verify(_driveid_t drive_id,
+                                                    _sectnum_t sect_num,
+                                                    const void *buffer);
 
 
-extern _sectnum_t __fastcall__ _dio_chs_to_snum(unsigned int cyl, unsigned int head, unsigned int sector);
+extern _sectnum_t __fastcall__ _dio_chs_to_snum(unsigned int cyl,
+                                                unsigned int head,
+                                                unsigned int sector);
 extern void       __fastcall__ _dio_snum_to_chs(_sectnum_t sect_num,
                                                 unsigned int *cyl,
                                                 unsigned int *head,