1 // WinTest.cpp : Defines the entry point for the application.
2 //
3 
4 #include "stdafx.h"
5 
6 extern "C" {
7   #include "Win.h"
8 }
9 
WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nCmdShow)10 int APIENTRY WinMain(HINSTANCE hInstance,
11                      HINSTANCE hPrevInstance,
12                      LPSTR     lpCmdLine,
13                      int       nCmdShow)
14 {
15   CU_UNREFERENCED_PARAMETER(hInstance);
16   CU_UNREFERENCED_PARAMETER(hPrevInstance);
17   CU_UNREFERENCED_PARAMETER(lpCmdLine);
18   CU_UNREFERENCED_PARAMETER(nCmdShow);
19 
20   // TODO: Place code here.
21   win_run_tests();
22   return 0;
23 }
24 
25 
26 
27