#include "HmCppInvoke.h"
#include <thread>
using
namespace
Hidemaru;
using
namespace
std;
bool
bThreadCenceller =
false
;
const
int
sleepInterval = 1000;
HANDLE
hThread = NULL;
DWORD
WINAPI ThreadFunc(
LPVOID
pParam)
{
while
(
true
) {
Sleep(sleepInterval);
if
(bThreadCenceller) {
break
;
}
auto inMacro = Hm.Macro.isExecuting();
Hm.OutputPane.output(L
"非同期関数中でマクロ実行中?:"
+ to_wstring(inMacro) + L
"\r\n"
);
}
Hm.OutputPane.output(L
"スレッドが終了"
);
return
0;
}
extern
"C"
__declspec
(
dllexport
)
THmNumber
DllDetachFunc_After_Hm866(
THmNumber
n) {
Hm.funcDllExport();
bThreadCenceller =
true
;
WaitForSingleObject(hThread, sleepInterval * 2);
MessageBox(NULL, to_wstring(n).data(), L
"DllDetachFunc_After_Hm866"
, NULL);
if
(n == 1) {
}
else
if
(n == 2) {
}
else
if
(n == 3) {
}
else
if
(n == 4) {
}
else
{
}
return
0;
}
extern
"C"
__declspec
(
dllexport
)
THmNumber
test() {
Hm.funcDllExport();
bThreadCenceller =
false
;
hThread = CreateThread(
NULL,
0,
ThreadFunc,
NULL,
0,
NULL
);
auto inMacro = Hm.Macro.isExecuting();
Hm.OutputPane.output(L
"同期関数中でマクロ実行中?:"
+ to_wstring(inMacro) + L
"\r\n"
);
Hm.OutputPane.output(L
"test関数の終了直前\r\n"
);
return
1;
}