diff --git a/include/tvm.h b/include/tvm.h index aab2aeb..af5c2e1 100644 --- a/include/tvm.h +++ b/include/tvm.h @@ -34,7 +34,7 @@ typedef long CREATE; //#pragma pack(4) #define TVM_VKERNEL "1.2.0.0" -#define TVM_VERSION "1.2.4.0" +#define TVM_VERSION "1.2.5.0" /************************************************************************************************* custom macro *************************************************************************************************/ @@ -609,6 +609,15 @@ typedef struct __SYS_TVM_SEQUE uint m_uIncrement; }TSeque; +typedef struct __SYS_TVM_RESLOCK +{ + char m_szResName[MAX_INDEX_LEN]; // Name of sequence + long m_lResource; + char m_szHost[20]; + long m_lPid; + bool m_bLock; +}TReslock; + /************************************************************************************************* Operating handle *************************************************************************************************/