pistorm/platforms/platforms.h
Andrew Hutchings 10d5229b68 Add license information to source
MIT license was chosen
2021-04-16 09:06:27 +01:00

14 lines
265 B
C

// SPDX-License-Identifier: MIT
#include "config_file/config_file.h"
enum base_platforms {
PLATFORM_NONE,
PLATFORM_AMIGA,
PLATFORM_MAC,
PLATFORM_X68000,
PLATFORM_NUM,
};
struct platform_config *make_platform_config(char *name, char *subsys);