brsfile.h

来自「This software performs code conversion o」· C头文件 代码 · 共 29 行

H
29
字号
// brsfile.h

#ifndef BRSFILE_H
#define BRSFILE_H

#ifdef __cplusplus
extern "C" {
#endif


int WINAPI BrowseForFileA ( HWND hWnd, char *szSelectedFile, int nMaxLen, const char *szInitialDir, const char *szTitle, const char *szFilter, int IsAllowMultiSelect ) ;
int WINAPI BrowseForFileW ( HWND hWnd, wchar_t *szSelectedFile, int nMaxLen, const wchar_t *szInitialDir, const wchar_t *szTitle, const wchar_t *szFilter, int IsAllowMultiSelect ) ;


#ifdef UNICODE
#define BrowseForFile BrowseForFileW
#else
#define BrowseForFile BrowseForFileA
#endif


#ifdef __cplusplus
}
#endif

#endif


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?