2020-06-06 16:46:11 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-12-26 15:49:11 +01:00
|
|
|
#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];
|
|
|
|
uint32_t address = 0;
|
|
|
|
} export_data_t;
|