global.h
来自「电子监控的网络编程实例」· C头文件 代码 · 共 45 行
H
45 行
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#ifndef _GLOBAL_H_
#define _GLOBAL_H_
#define IMAGE_WIDTH 768
#define IMAGE_HEIGHT 576
extern CString GSMC;
extern BOOL HT;
extern BOOL bFilt;
extern BOOL bUsedVideo;
extern HANDLE g_hdib;
extern BOOL MemoryStatus[4];
typedef struct tagVIDEOEXITS {
BOOL bExit;//flase
RECT eRect[4];//检测区域
int iGray[4];
int iDif[4];
int iChanel[4];
DWORD dwMinTwoCapTime;
DWORD dwMaxCapTime;
bool bShowRect;
int iWidth;
int iHeight;
int iBits;
int iNumVE;
COLORREF clrRect;
DWORD dwDelay;
int iRoad;
}VIDEOEXITS;
extern VIDEOEXITS g_ve;
int WINAPI cb_FindCar(int iChanel);
UINT VideoExitsThread(LPVOID lpData);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?