在整个过程中出现了各种问题,我先将我调试好的真个项目打包,提供下载. /* * Copyright 1993-2010 NVIDIA Corporation. All rights reserved. * * NVIDIA Corporation and its licensors retain all intellectual property and * proprietary rights in and to this software and related documentation.
提示的问题如下: error : argument of type "void *(*)(void *)" is incompatible with parameter of type "CUT_THREADROUTINE" 解决方法是将下面的代码 void* routine(void *pvoidData) 修改为下面的代码 unsigned WINAPI routine(void *pvoidData) 原因是为什么,我也不知道,同求解.