mirror of
https://github.com/decompals/wibo.git
synced 2025-10-15 22:55:11 +00:00
16 lines
380 B
C++
16 lines
380 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace wibo {
|
|
|
|
struct Executable;
|
|
struct ImageResourceDataEntry;
|
|
struct ResourceIdentifier;
|
|
|
|
bool resourceEntryBelongsToExecutable(const Executable &exe, const ImageResourceDataEntry *entry);
|
|
ResourceIdentifier resourceIdentifierFromAnsi(const char *id);
|
|
ResourceIdentifier resourceIdentifierFromWide(const uint16_t *id);
|
|
|
|
} // namespace wibo
|