1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Add native file dialog library.

https://github.com/mlabbe/nativefiledialog.git
5cfe5002eb0fac1e49777a17dec70134147931e2
This commit is contained in:
Bartosz Taudul
2017-09-30 14:21:34 +02:00
parent d7bd8885fe
commit 65d6ef7ef4
8 changed files with 1698 additions and 0 deletions
Executable
+21
View File
@@ -0,0 +1,21 @@
/*
Native File Dialog
Internal, common across platforms
http://www.frogtoss.com/labs
*/
#ifndef _NFD_COMMON_H
#define _NFD_COMMON_H
#define NFD_MAX_STRLEN 256
#define _NFD_UNUSED(x) ((void)x)
void *NFDi_Malloc( size_t bytes );
void NFDi_Free( void *ptr );
void NFDi_SetError( const char *msg );
void NFDi_SafeStrncpy( char *dst, const char *src, size_t maxCopy );
#endif