Newer
Older
UbixOS / contrib / tcc / win32 / examples / hello_dll.c
@Christopher W. Olsen Christopher W. Olsen on 29 Jan 2020 337 bytes TinyCC
//+---------------------------------------------------------------------------
//
//  HELLO_DLL.C - Windows DLL example - main application part
//

#include <windows.h>

void HelloWorld (void);

int WINAPI WinMain(
	HINSTANCE hInstance,
	HINSTANCE hPrevInstance,
	LPSTR     lpCmdLine,
	int       nCmdShow)
{
	HelloWorld();
	return 0;
}