2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 15:04:56 +00:00

Try different way of specifying link ordering

This commit is contained in:
2021-05-27 15:10:21 -04:00
parent 857dc9f671
commit 2017ce90a6
2 changed files with 10 additions and 11 deletions

View File

@@ -1,11 +1,9 @@
#include <cstddef>
#include <cstdint>
extern "C" {
const uint8_t ASSET_NAME_MP32[] = {0};
const size_t ASSET_NAME_MP32_SZ = 0;
const size_t ASSET_NAME_MP32_DECOMPRESSED_SZ = 0;
const uint8_t ASSET_NAME_MP64[] = {0};
const size_t ASSET_NAME_MP64_SZ = 0;
const size_t ASSET_NAME_MP64_DECOMPRESSED_SZ = 0;
}
extern "C" const uint8_t ASSET_NAME_MP32[] = {0};
extern "C" const size_t ASSET_NAME_MP32_SZ = 0;
extern "C" const size_t ASSET_NAME_MP32_DECOMPRESSED_SZ = 0;
extern "C" const uint8_t ASSET_NAME_MP64[] = {0};
extern "C" const size_t ASSET_NAME_MP64_SZ = 0;
extern "C" const size_t ASSET_NAME_MP64_DECOMPRESSED_SZ = 0;