void __fastcall TBJThread::GetDeviceVal1()
{
int i=0;
i=1;
}
//---------------------------------------------------------------------------
void __fastcall TBJThread::Execute()
{
//---- Place thread code here ----
while( !this->Terminated ) {
Synchronize(GetDeviceVal1);
/////////////////////////////////////////
이런식으로 되있는데요..
디버깅을 하면 GetDeviceVal1 함수자체로 타질않네요..
조언 부탁드립니다..
|