1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once
 
#include "mil.h"
 
#pragma comment(lib, "mil.lib")
 
#define MAX_BOARD_COUNT                4
#define BUFFERING_SIZE_MAX            200
#define M_FREE_START                100    
#define MAX_DIGITIZE_COUNT            2
 
typedef struct tagDigStatus
{
    int nJobIndex;
    int nSKipFrame;
    int status;            // ÇöÀç »óÅÂ... // M_STOP , M_START , M_FREE_START
    int nCount;            // ÀÐÀº ¶óÀμö...
    int nIndex;            // À̹ÌÁö ¹öÆÛ À妽º    
    int nDisplayFrame;
    int nResetFrame;
}DIGSTATUS, *PDIGSTATUS;
 
#define DEFAULT_GRAB_FRAME_HEIGHT        1024