blob: 8b857c86650e859f508a5715f77e7541a9f5d4f2 (
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(void * hinstance, uint32_t reason, void * reserved)
{
return 1;
}
|