|
@@ -35,18 +35,18 @@ bool _DkCheckMemoryMappable (const void * addr, int size)
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
|
|
-int _DkVirtualMemoryAlloc (void ** paddr, int size, int alloc_type,
|
|
+int _DkVirtualMemoryAlloc (void ** paddr, uint64_t size, int alloc_type,
|
|
int prot)
|
|
int prot)
|
|
{
|
|
{
|
|
return -PAL_ERROR_NOTIMPLEMENTED;
|
|
return -PAL_ERROR_NOTIMPLEMENTED;
|
|
}
|
|
}
|
|
|
|
|
|
-int _DkVirtualMemoryFree (void * addr, int size)
|
|
+int _DkVirtualMemoryFree (void * addr, uint64_t size)
|
|
{
|
|
{
|
|
return -PAL_ERROR_NOTIMPLEMENTED;
|
|
return -PAL_ERROR_NOTIMPLEMENTED;
|
|
}
|
|
}
|
|
|
|
|
|
-int _DkVirtualMemoryProtect (void * addr, int size, int prot)
|
|
+int _DkVirtualMemoryProtect (void * addr, uint64_t size, int prot)
|
|
{
|
|
{
|
|
return -PAL_ERROR_NOTIMPLEMENTED;
|
|
return -PAL_ERROR_NOTIMPLEMENTED;
|
|
}
|
|
}
|