2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
8 #include "host_intern.h"
11 * A simple glue code. I'm too lazy to import kernel32.dll via hostlib.resource
12 * just for one function.
15 unsigned int __declspec(dllexport
) __aros
core_protect(void *addr
, unsigned int len
, unsigned int prot
)
19 return VirtualProtect(addr
, len
, prot
, &oldprot
);