mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-05 20:45:07 +01:00
10 lines
211 B
C++
10 lines
211 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#define EXPORT_MAXIMUM_NAME_LENGTH 50
|
|
typedef struct export_data_t {
|
|
uint32_t type;
|
|
char name[EXPORT_MAXIMUM_NAME_LENGTH];
|
|
uint32_t address = 0;
|
|
} export_data_t; |