Blob Blame History Raw
/********************************************************/
/*  ntapi: Native API core library                      */
/*  Copyright (C) 2013--2021  Z. Gilboa                 */
/*  Released under GPLv2 and GPLv3; see COPYING.NTAPI.  */
/********************************************************/

#include <psxtypes/psxtypes.h>
#include <psxtypes/section/freestd.h>

__attr_section_decl__(".freestd")
static const void * const __ntapi_affiliation
	__attr_section__(".freestd")
	= 0;

int __stdcall __attr_protected__  __ntapi_entry_point(
	void *   hinstance,
	uint32_t reason,
	void *   reserved)
{
	(void)__ntapi_affiliation;
	(void)hinstance;
	(void)reason;
	(void)reserved;

	return 1;
}