File: WinTest_v1.cpp

package info (click to toggle)
cunit 2.1-3-dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 4,196 kB
  • sloc: sh: 9,860; ansic: 9,503; cpp: 1,270; makefile: 380; perl: 45
file content (26 lines) | stat: -rw-r--r-- 523 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// WinTest.cpp : Defines the entry point for the application.
//

#include "stdafx.h"

extern "C" {
  #include "Win.h"
}

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
  CU_UNREFERENCED_PARAMETER(hInstance);
  CU_UNREFERENCED_PARAMETER(hPrevInstance);
  CU_UNREFERENCED_PARAMETER(lpCmdLine);
  CU_UNREFERENCED_PARAMETER(nCmdShow);

  // TODO: Place code here.
  win_run_tests();
  return 0;
}