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

📄 imgsample.h

📁 《医学图象的远程传输系统》
💻 H
字号:
/*==========================================================/
/                 Image Sample Library                      /
/===========================================================/
/	This library emulate the image sampling function,       /
/it read an .ini file to get a list of image, when you call /
/ISGetImg(), it will return an image from the list, and the /
/next time when you call this function, it return the next  /
/image in the list.                                         /
/===========================================================/
/ tony                                                      /
/ 2002.05.17                                                /
/==========================================================*/

//Init the image sample emulater.
//2002.05.25
BOOL ISInit(const int Channel);

//Get an image, just like to sample from the card,
//this function will auto select next image in the image list.
//	pBmp - an assigned memory which will hold the sample image,
//the size of it should be MAX_BMP_SIZE;
//2002.05.17
BOOL ISGetImg(const int Channel,BYTE* pBmp);

//Return the last happened error's description.
//2002.05.17
LPCTSTR ISGetLastError(const int Channel);

⌨️ 快捷键说明

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