summaryrefslogtreecommitdiff
path: root/include/libx86.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libx86.h')
-rw-r--r--include/libx86.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/libx86.h b/include/libx86.h
index 4217f20..77f23b4 100644
--- a/include/libx86.h
+++ b/include/libx86.h
@@ -98,6 +98,8 @@ typedef struct _int10Mem {
void LRMI_init(xf86Int10InfoPtr pInt);
+void LRMI_setup(xf86Int10InfoPtr pInt);
+
void LRMI_fini(xf86Int10InfoPtr pInt);
/* Get the base address of the real memory address space block. */
@@ -110,7 +112,9 @@ void LRMI_int(xf86Int10InfoPtr pInt);
/* Allocate real mode memory. The returned block is paragraph (16 byte)
aligned */
-void *LRMI_alloc_real(int size);
+//void *LRMI_alloc_real(int size);
+void *LRMI_alloc_real(xf86Int10InfoPtr pInt, int num, int *off);
/* Free real mode memory */
-void LRMI_free_real(void *m);
+//void LRMI_free_real(void *m);
+void LRMI_free_real(xf86Int10InfoPtr pInt, void *pbase, int num);