mirror of
https://github.com/wiiu-env/WiiUModuleSystem.git
synced 2024-11-16 14:59:19 +01:00
10 lines
208 B
C
10 lines
208 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#define EXPORT_MAXIMUM_NAME_LENGTH 50
|
|
typedef struct export_data_t {
|
|
uint32_t type;
|
|
char name[EXPORT_MAXIMUM_NAME_LENGTH];
|
|
uint32_t address;
|
|
} export_data_t; |