SetThreadPriority函数BOOL SetThreadPriority(HANDLE hThread, // handle to the thread int nPriority // thread priority level); 功能说明 设置指定线程的优先级 参数说明 hThread 要设置的线程句柄 nPriority 优先级别参数 可设置为一下参数 THREAD_PRIORITY_ABOVE_NORMAL 为比一般优先级高一个等级 THREAD_PRIORITY_BELOW_NORMAL 比一般低一个等级 THREAD_PRIORITY_HIGHEST 比一般高2个等级 THREAD_PRIORITY_IDLE THREAD_PRIORITY_LOWEST 比一般低2个等级 THREAD_PRIORITY_NORMAL 一般等级 THREAD_PRIORITY_TIME_CRITICAL