📄 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 + -