11 lines
180 B
C++
11 lines
180 B
C++
// globals.cpp
|
|
#include "globals.h"
|
|
|
|
// 图片显示0
|
|
QMutex gDispPicMutex0;
|
|
MIL_ID gDispCurrentPicId0 = 0;
|
|
|
|
// 图片显示1
|
|
QMutex gDispPicMutex1;
|
|
MIL_ID gDispCurrentPicId1 = 0;
|