实现拖拽上传:
glutDropFileFunc(dropfile);
void dropFileCallback(int count, const char** paths) {
for (int i = 0; i < count; i++) {
std::cout << "Dropped file path: " << paths[i] << std::endl;
}
}
void dropfile(const char* file) {
printf("dropfile:'%s'\n", file);
}
报错:
“glutDropFileFunc”: 找不到标识符
可能是头文件引用不对。