lowercasing filenames, part3
[picodrive.git] / Pico / patch.h
diff --git a/Pico/patch.h b/Pico/patch.h
deleted file mode 100644 (file)
index 6e9420f..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef _GENIE_DECODE_H__
-#define _GENIE_DECODE_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct patch_inst
-{
-       char code[12];
-       char name[52];
-       unsigned int active;
-       unsigned int addr;
-       unsigned short data;
-       unsigned short data_old;
-};
-
-extern struct patch_inst *PicoPatches;
-extern int PicoPatchCount;
-
-int  PicoPatchLoad(const char *fname);
-void PicoPatchUnload(void);
-void PicoPatchPrepare(void);
-void PicoPatchApply(void);
-
-
-#ifdef __cplusplus
-} // extern "C"
-#endif
-
-#endif // _GENIE_DECODE_H__