mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-12 23:51:37 -07:00
15 lines
283 B
C
15 lines
283 B
C
// This is test strictly for the granular (non-generated) version of the library to make sure it operates correctly
|
|
|
|
#include "metadesk.c"
|
|
|
|
int main()
|
|
{
|
|
Context ctx = {0};
|
|
ctx.os_ctx.enable_large_pages = true;
|
|
init(& ctx);
|
|
|
|
printf("metadesk: got past init!");
|
|
|
|
deinit(& ctx);
|
|
}
|