blob: bca857d892a8da949c00f19f9dfa87e641f1ee1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/********************************************************/
/* ntapi: Native API core library */
/* Copyright (C) 2013,2014,2015 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
#include <psxtypes/psxtypes.h>
int __stdcall __ntapi_entry_point(void * hinstance, uint32_t reason, void * reserved)
{
return 1;
}
|