?? gdi.h
字號:
#if !defined(GDI_H)
#define GDI_H
#include <windows.h>
struct GdiDS
{
char *pDIBitmap;
char *pDIB;
char *pStartDIB;
int iGridX;
int iGridY;
int iWidth1;
int iWidth2;
int iHeight1;
int iHeight2;
LPBITMAPINFOHEADER lpBitmapIH;
BOOL fDIBitmap;
};
struct GdiList
{
struct GdiDS Gdi;
struct GdiList *pNext;
};
struct GdiList *Add_Gdi(struct GdiList *pNode,struct GdiDS Gdi);
void Clear_Gdi(struct GdiList *pStart);
#endif // #define GDI_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -