mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-02 02:52:40 +00:00
30 lines
530 B
C
30 lines
530 B
C
|
#include "nfd.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
|
||
|
/* this test should compile on all supported platforms */
|
||
|
|
||
|
int main( void )
|
||
|
{
|
||
|
nfdchar_t *outPath = NULL;
|
||
|
nfdresult_t result = NFD_OpenDialog( "png,jpg;pdf", NULL, &outPath );
|
||
|
if ( result == NFD_OKAY )
|
||
|
{
|
||
|
puts("Success!");
|
||
|
puts(outPath);
|
||
|
free(outPath);
|
||
|
}
|
||
|
else if ( result == NFD_CANCEL )
|
||
|
{
|
||
|
puts("User pressed cancel.");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
printf("Error: %s\n", NFD_GetError() );
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|