目录一、条件变量与互斥锁二、条件变量与互斥锁的配合使用三、条件变量的使用创建锁和条件使用四、条件变量的Wait方法做了什么一、条件变量与互斥锁
I am currently writing a program in c++ (no MFC) and want to update a label (win32 static control) using the win32 DrawText function. However when i call the function nothing is written to the label.