wintest.cpp

来自「cunit」· C++ 代码 · 共 27 行

CPP
27
字号
// 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.
  CU_win_run_tests();
  return 0;
}



⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?