HANDLE   hThread;  
void SpeakThread(LPVOID pParam);
DWORD   dwThreadId,   dwThrdParam   =   1
void CSound::Begin(void)
{
    // TODO: 在此添加实现代码

    hThread = CreateThread(NULL,                                        //   default   security   attributes   
                            0,                                            //   use   default   stack   size     
               (LPTHREAD_START_ROUTINE)SpeakThread,        //   thread   function   
                            &dwThrdParam,                                //   argument   to   thread   function   
                            0,                                            //   use   default   creation   flags   
                            &dwThreadId);
}


void SpeakThread(LPVOID pParam)
{
}

相关文章:

  • 2022-01-06
  • 2022-12-23
  • 2022-12-23
  • 2022-02-16
  • 2021-11-26
  • 2022-02-10
  • 2022-02-11
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-29
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
  • 2021-12-26
相关资源
相似解决方案