11 lines
182 B
C
11 lines
182 B
C
#ifndef WINDOWS_DIALOG_H
|
|
#define WINDOWS_DIALOG_H
|
|
|
|
#include <windows.h>
|
|
#include <shobjidl.h>
|
|
|
|
// 导出函数声明
|
|
char* OpenFolderDialog(void);
|
|
void FreeMemory(char* ptr);
|
|
|
|
#endif |