diff options
| author | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-08 17:40:15 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-08 17:40:15 +0100 |
| commit | 0d70098dd5b704f2953c63f0c827b46b11935b81 (patch) | |
| tree | 05efcc8cfac52672b147c2a32a66f87a05f881e7 /libs/tinyfiledialogs/tinyfiledialogs.c | |
| parent | 9b87e0d3123bbc533c2e4d452b16fe82de0e5cd4 (diff) | |
setup window
Diffstat (limited to 'libs/tinyfiledialogs/tinyfiledialogs.c')
| -rw-r--r-- | libs/tinyfiledialogs/tinyfiledialogs.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libs/tinyfiledialogs/tinyfiledialogs.c b/libs/tinyfiledialogs/tinyfiledialogs.c index 1b07cf7..b99080e 100644 --- a/libs/tinyfiledialogs/tinyfiledialogs.c +++ b/libs/tinyfiledialogs/tinyfiledialogs.c @@ -1740,7 +1740,6 @@ wchar_t * tinyfd_saveFileDialogW( return lRetval; } - wchar_t * tinyfd_openFileDialogW( wchar_t const * aTitle, /* NULL or "" */ wchar_t const * aDefaultPathAndOrFile, /* NULL or "" */ @@ -3205,6 +3204,10 @@ char * tinyfd_saveFileDialog( return p ; } +int tinyfd_fileExists(char const * aFilePathAndName) +{ + return fileExists(aFilePathAndName); +} /* in case of multiple files, the separator is | */ char * tinyfd_openFileDialog( @@ -6718,6 +6721,10 @@ char * tinyfd_saveFileDialog( return lBuff ; } +int tinyfd_fileExists(char const * aFilePathAndName) +{ + return fileExists(aFilePathAndName); +} /* in case of multiple files, the separator is | */ char * tinyfd_openFileDialog( |
