aboutsummaryrefslogtreecommitdiffstats
path: root/bpemu.h
diff options
context:
space:
mode:
Diffstat (limited to 'bpemu.h')
-rw-r--r--bpemu.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/bpemu.h b/bpemu.h
new file mode 100644
index 0000000..11036b7
--- /dev/null
+++ b/bpemu.h
@@ -0,0 +1,33 @@
+/* bpemu.h */
+/*****************************************************************************/
+/* AS-Portierung */
+/* */
+/* Emulation einiger Borland-Pascal-Funktionen */
+/* */
+/* Historie: 20. 5.1996 Grundsteinlegung */
+/* */
+/*****************************************************************************/
+
+typedef void (*charcallback)(
+#ifdef __PROTOS__
+char *Name
+#endif
+);
+
+extern char *FExpand(char *Src);
+
+extern char *FSearch(char *File, char *Path);
+
+extern long FileSize(FILE *file);
+
+extern Byte Lo(Word inp);
+
+extern Byte Hi(Word inp);
+
+extern Boolean Odd (int inp);
+
+extern Boolean DirScan(char *Mask, charcallback callback);
+
+extern LongInt GetFileTime(char *Name);
+
+extern void bpemu_init(void);