altest.cpp
来自「Windows WDM 设备驱动程序开发指南光盘 保护随书的源代码」· C++ 代码 · 共 19 行
CPP
19 行
// altest.cpp : Defines the entry point for the application.
// Copyright (C) 1999 by Walter Oney
// All rights reserved
#include "stdafx.h"
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
MessageBox(GetDesktopWindow(), lpCmdLine, "AutoLaunch Test Applet", MB_OK);
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?