summaryrefslogtreecommitdiffhomepage
path: root/src/ntcon_entry_point.c
blob: bfb91b36166ab12042242f1e7a320963d8e10eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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