blob: 4650824ea5cfdb7d9ac944fe9bd1f4274eaf2030 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <psxtypes/psxtypes.h>
int __stdcall pe_entry_point(void * hinstance, uint32_t reason, void * reserved)
{
(void)hinstance;
(void)reason;
(void)reserved;
return 1;
}
|