40 lines
1010 B
C
40 lines
1010 B
C
/*************************************************************************
|
|
*
|
|
* Orca
|
|
* Copyright 2023 Martin Fouilleul and the Orca project contributors
|
|
* See LICENSE.txt for licensing information
|
|
*
|
|
**************************************************************************/
|
|
|
|
#include "orca.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
oc_init();
|
|
|
|
oc_file_dialog_desc desc = {
|
|
.kind = OC_FILE_DIALOG_OPEN,
|
|
.flags = OC_FILE_DIALOG_FILES,
|
|
.title = OC_STR8("Select Files"),
|
|
.okLabel = OC_STR8("Select")
|
|
};
|
|
|
|
oc_arena_scope* scratch = oc_scratch_begin();
|
|
|
|
oc_str8_list_push(scratch.arena, &desc.filters, OC_STR8("txt"));
|
|
|
|
oc_file file = oc_file_open_with_dialog(OC_FILE_ACCESS_READ, 0, &desc);
|
|
if(oc_file_is_nil(file))
|
|
{
|
|
oc_log_error("Couldn't open file\n");
|
|
}
|
|
else
|
|
{
|
|
char buffer[1024];
|
|
u64 len = oc_file_read(file, 1024, buffer);
|
|
oc_log_info("file contents: %.*s\n", (int)len, buffer);
|
|
}
|
|
|
|
return (0);
|
|
}
|