mirror of https://gitlab.com/cppit/jucipp
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.
12 lines
345 B
12 lines
345 B
|
10 years ago
|
extern "C" {
|
||
|
|
#ifndef JUCI_C_DIALOGS
|
||
|
|
#define JUCI_C_DIALOGS
|
||
|
|
__declspec(dllimport) const char* c_select_folder();
|
||
|
|
__declspec(dllimport) const char* c_select_file();
|
||
|
|
__declspec(dllimport) const char* c_new_file();
|
||
|
|
__declspec(dllimport) const char* c_new_folder();
|
||
|
|
__declspec(dllimport) const char* c_save_file();
|
||
|
|
#endif // JUCI_C_DIALOGS
|
||
|
|
};
|
||
|
|
|