blob: 7d0f99f7de896b75902b445972d48e2af25e426e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/********************************************************/
/* ntapi: Native API core library */
/* Copyright (C) 2013--2016 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)
{
(void)hinstance;
(void)reason;
(void)reserved;
return 1;
}
|