⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 defines.h

📁 《医学图象的远程传输系统》
💻 H
字号:
/*==========================================================/
/	this file hold all global definitions for this project  /
/which should use in both TransServer and TransClient and   /
/also perhaps for the dynamic link library.                 /
/===========================================================/
/ tony                                                      /
/ 2002.05.27                                                /
/==========================================================*/

#include <Ijl.h>

#define MAX_BMP_SIZE 2097152/*2MB*/
#define MAX_JPEG_SIZE 204800/*200KB*/

#define PackageSize 1000

typedef struct _STREAM_DATA{
	WORD nIndex;
	BOOL bEnd;
    DWORD nSize;
    BYTE Buffer[PackageSize];
}STREAM_DATA;

#define LISTEN_PORT 5555
#define SEND_RETRY 3

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -