00001 /* 00002 * This program is free software; you can redistribute it and/or 00003 * modify it under the terms of the GNU General Public License 00004 * as published by the Free Software Foundation; either version 00005 * 2 of the License, or (at your option) any later version. 00006 * 00007 * Copyright 2005 Tim Schürmann 00008 * Copyright 2005 Spiro Trikaliotis 00009 * 00010 */ 00011 00021 #include <windows.h> 00022 #include <windowsx.h> 00023 00024 #include <mmsystem.h> 00025 00027 #define DBG_USERMODE 00028 00030 #define DBG_PROGNAME "OPENCBM.DLL" 00031 00032 #include "debug.h" 00033 00034 #include <winioctl.h> 00035 #include "cbmioctl.h" 00036 00037 #include <stdlib.h> 00038 00040 #define DLL 00041 #include "i_opencbm.h" 00042 #include "archlib.h" 00043 00044 00060 __u_char 00061 cbmarch_parallel_burst_read(CBM_FILE HandleDevice) 00062 { 00063 FUNC_ENTER(); 00064 00065 FUNC_LEAVE_UCHAR(0); 00066 } 00067 00083 void 00084 cbmarch_parallel_burst_write(CBM_FILE HandleDevice, __u_char Value) 00085 { 00086 FUNC_ENTER(); 00087 00088 FUNC_LEAVE(); 00089 } 00090 00112 int 00113 cbmarch_parallel_burst_read_track(CBM_FILE HandleDevice, __u_char *Buffer, unsigned int Length) 00114 { 00115 FUNC_ENTER(); 00116 00117 FUNC_LEAVE_INT(0); 00118 } 00119 00141 int 00142 cbmarch_parallel_burst_write_track(CBM_FILE HandleDevice, __u_char *Buffer, unsigned int Length) 00143 { 00144 FUNC_ENTER(); 00145 00146 FUNC_LEAVE_INT(0); 00147 }
1.4.2