?? stdafx.h
字號:
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#if !defined(AFX_STDAFX_H__66012CD2_843E_4D09_9B6F_B13E81657DDE__INCLUDED_)
#define AFX_STDAFX_H__66012CD2_843E_4D09_9B6F_B13E81657DDE__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxdisp.h> // MFC Automation classes
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
DECLARE_HANDLE(HDIB);
#define PALVERSION 0x300
#define IS_WIN30_DIB(lpbi) ((*(LPDWORD)(lpbi)) == sizeof(BITMAPINFOHEADER))
#define RECTWIDTH(lpRect) ((lpRect)->right - (lpRect)->left)
#define RECTHEIGHT(lpRect) ((lpRect)->bottom - (lpRect)->top)
#define WIDTHBYTES(bits) (((bits) + 31) / 32 * 4)
#define DIB_HEADER_MARKER ((WORD) ('M' << 8) | 'B')
extern "C" _declspec(dllimport) BOOL PaintDIB (HDC, LPRECT, HDIB, LPRECT, CPalette* pPal);
extern "C" _declspec(dllimport) BOOL CreateDIBPalette(HDIB hDIB, CPalette* cPal);
extern "C" _declspec(dllimport) LPSTR FindDIBBits (LPSTR lpbi);
extern "C" _declspec(dllimport) DWORD DIBWidth (LPSTR lpDIB);
extern "C" _declspec(dllimport) DWORD DIBHeight (LPSTR lpDIB);
extern "C" _declspec(dllimport) DWORD PaletteSize (LPSTR lpbi);
extern "C" _declspec(dllimport) DWORD DIBNumColors (LPSTR lpbi);
extern "C" _declspec(dllimport) HGLOBAL CopyHandle (HGLOBAL h);
extern "C" _declspec(dllimport) BOOL SaveDIB (HDIB hDib, CFile& file);
extern "C" _declspec(dllimport) HDIB ReadDIBFile(CFile& file);
/**********************************************************************/
extern "C" _declspec(dllimport) void InitDIBData(HDIB m_hDIB);
extern "C" _declspec(dllimport) HDIB Open(LPCTSTR lpszPathName);
extern "C" _declspec(dllimport) BOOL Save(LPCTSTR lpszPathName,HDIB m_hDIB);
extern "C" _declspec(dllimport) void Draw(CDC* pDC,HDIB hDIB);
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_STDAFX_H__66012CD2_843E_4D09_9B6F_B13E81657DDE__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -