]> git.sur5r.net Git - cc65/commitdiff
made the input parameters of _dio_log_to_phys and _dio_phys_to_log const
authorcpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 29 Oct 2000 00:31:31 +0000 (00:31 +0000)
committercpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 29 Oct 2000 00:31:31 +0000 (00:31 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@403 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/dio.h

index 3b03981fda5fddccc136c27cd736a064e6d6f9ba..8e69dbb2a1b64d834c8b80c8095a45a2b8c4a814 100644 (file)
@@ -64,10 +64,10 @@ extern unsigned char __fastcall__ _dio_write_verify(_dhandle_t handle,
                                                     const void *buffer);
 
 extern unsigned char __fastcall__ _dio_phys_to_log(_dhandle_t handle,
-                                                   _dio_phys_pos *physpos,   /* input */
-                                                   _sectnum_t *sectnum);     /* output */
+                                                   const _dio_phys_pos *physpos, /* input */
+                                                   _sectnum_t *sectnum);         /* output */
 extern unsigned char __fastcall__ _dio_log_to_phys(_dhandle_t handle,
-                                                   _dio_phys_pos *physpos,   /* output */
-                                                   _sectnum_t *sectnum);     /* input */
+                                                   _dio_phys_pos *physpos,       /* output */
+                                                   const _sectnum_t *sectnum);   /* input */
 
 #endif /* #ifndef _DIO_H */