summaryrefslogtreecommitdiffhomepage
path: root/src/ntcon_entry_point.c
blob: cad654be0fcf2c36f76360ad1c88715a0f986c3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef MIDIPIX_FREESTANDING

#include <ntcon/ntcon.h>

int __stdcall ntcon_entry_point(
	void *		hinstance,
	uint32_t	reason,
	void *		reserved)
{
	return 1;
}

#endif