?? entry.c
字號:
/**********************************************************************
*
* Toby Opferman
*
* Example Application which uses shared memory to display the contents
* of a virtual second monitor
*
* This example is for educational purposes only. I license this source
* out for use in learning.
*
* Copyright (c) 2005, All Rights Reserved
**********************************************************************/
#include <windows.h>
#include "appmon.h"
/*********************************************************************
* WinMain
*
* Standard Windows Application Entry
*
*********************************************************************/
int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PCHAR pCmdLine, int iShow)
{
int iRetValue = 0xFF;
HWND hWnd;
if(AppMon_RegisterClass(hInstance))
{
if(hWnd = AppMon_CreateWindow(hInstance))
{
iRetValue = AppMon_MessageLoop(hInstance, hWnd);
}
}
return iRetValue;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -