?? virtualmonitor.h
字號:
/**********************************************************************
*
* 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
**********************************************************************/
#ifndef __VIRTUALMONITOR_H__
#define __VIRTUALMONITOR_H__
typedef PVOID HVMON;
HVMON VirtualMonitor_Initialize(HWND hWnd);
void VirtualMonitor_Update(HVMON hVmon);
HDC VirtualMonitor_GetVideoDC(HVMON hVmon);
void VirtualMonitor_ReleaseVideoDC(HVMON hVmon, HDC hVideoDC);
void VirtualMonitor_Free(HVMON hVmon);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -