?? app.h
字號:
//-------------------------------------------------------------------------
// File: App.h
//
// Desc: Example code showing how to create a minimal Windows skeleton
//
// Last modified: 02. January 2001
//
// Copyright (c) 1999-2001 Wolfgang Engel wolf@direct3d.net
//--------------------------------------------------------------------------
#ifndef APP_H
#define APP_H
class CApp
{
protected:
TCHAR* m_strWindowTitle;
DWORD m_dwWidth;
DWORD m_dwHeight;
private:
BOOL m_bActive;
VOID Render();
public:
// used in Fake.cpp to create, run and pause fake
virtual HRESULT Create (HINSTANCE hInstance);
virtual LRESULT MsgProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
virtual WPARAM Run();
virtual VOID Pause(BOOL bPause);
// internal constructor
CApp();
};
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -