Blob Blame History Raw
/********************************************************/
/*  ntcon: free-standing console interface definitions  */
/*  Copyright (C) 2013--2016  SysDeer Technologies, LLC */
/*  Released under GPLv2 and GPLv3; see COPYING.NTCON.  */
/********************************************************/

#ifdef _MIDIPIX_FREESTANDING

#include <ntcon/ntcon.h>

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

int __stdcall ntcon_entry_point(
	void *		hinstance,
	uint32_t	reason,
	void *		reserved)
{
	(void)ntcon_affiliation;
	(void)hinstance;
	(void)reason;
	(void)reserved;

	return 1;
}

#endif