mirror of
https://github.com/decompals/wibo.git
synced 2025-10-16 15:15:10 +00:00
15 lines
343 B
C++
15 lines
343 B
C++
#pragma once
|
|
|
|
|
|
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);
|
|
|
|
}
|