WiiUModuleSystem/include/wums/defines/export_defines.h

10 lines
208 B
C
Raw Normal View History

2020-06-06 16:46:11 +02:00
#pragma once
#include <stdint.h>
2020-06-06 16:46:11 +02:00
#define EXPORT_MAXIMUM_NAME_LENGTH 50
typedef struct export_data_t {
uint32_t type;
char name[EXPORT_MAXIMUM_NAME_LENGTH];
2021-09-17 16:17:54 +02:00
uint32_t address;
2020-06-06 16:46:11 +02:00
} export_data_t;