view nuklear_ui/filechooser_null.c @ 2604:c768bbd912f1

Give sega 8-bit consoles separate system_type enum values and allow selecting them from the command line
author Michael Pavone <pavone@retrodev.com>
date Thu, 13 Feb 2025 23:07:31 -0800
parents 94cf5cc89227
children
line wrap: on
line source

#include <stddef.h>
#include <stdint.h>

uint8_t native_filechooser_available(void)
{
	return 0;
}

char* native_filechooser_pick(const char *title, const char *start_directory)
{
	return NULL;
}