summaryrefslogtreecommitdiffstats
path: root/loader/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'loader/module.c')
-rw-r--r--loader/module.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/loader/module.c b/loader/module.c
index aa921c52d6..44769b74da 100644
--- a/loader/module.c
+++ b/loader/module.c
@@ -715,29 +715,9 @@ static int dump_component(char* name, int type, void* orig, ComponentParameters
#ifdef EMU_QTX_API
-#ifdef __OS2__
-uint32_t _System DosQueryMem(void *, uint32_t *, uint32_t *);
-#endif
-
static int is_invalid_ptr_handle(void *p)
{
-#ifdef __OS2__
- uint32_t cb = 1;
- uint32_t fl;
-
- if(DosQueryMem(p, &cb, &fl))
- return 1;
-
- // Occasionally, ptr with 'EXEC' attr is passed.
- // On OS/2, however, malloc() never sets 'EXEC' attr.
- // So ptr with 'EXEC' attr is invalid.
- if(fl & 0x04)
- return 1;
-
- return 0;
-#else
return (uint32_t)p >= 0x60000000;
-#endif
}
static uint32_t ret_array[4096];