You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
219 B
15 lines
219 B
8 years ago
|
extern int use_cuda(void);
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#include <windows.h>
|
||
|
#endif
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
#ifdef _WIN32
|
||
|
/* Use an API that requires CMake's "standard" C libraries. */
|
||
|
GetOpenFileName(NULL);
|
||
|
#endif
|
||
|
return use_cuda();
|
||
|
}
|