Blame src/ntcon_entry_point.c

7f8a49
/********************************************************/
7f8a49
/*  ntcon: free-standing console interface definitions  */
ab355e
/*  Copyright (C) 2013--2016  SysDeer Technologies, LLC */
7f8a49
/*  Released under GPLv2 and GPLv3; see COPYING.NTCON.  */
7f8a49
/********************************************************/
7f8a49
f2b6c1
#ifdef _MIDIPIX_FREESTANDING
52d60d
52d60d
#include <ntcon/ntcon.h>
52d60d
976ebb
static const void * const ntcon_affiliation
976ebb
	__attr_section__(".freestd")
976ebb
	= 0;
976ebb
52d60d
int __stdcall ntcon_entry_point(
52d60d
	void *		hinstance,
52d60d
	uint32_t	reason,
52d60d
	void *		reserved)
52d60d
{
976ebb
	(void)ntcon_affiliation;
c15a69
	(void)hinstance;
c15a69
	(void)reason;
c15a69
	(void)reserved;
c15a69
52d60d
	return 1;
52d60d
}
52d60d
52d60d
#endif