📄 wintest_v1.cpp
字号:
// 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;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -