prevent resource byte swapping

This commit is contained in:
Kelvin Sherlock 2015-02-06 19:54:55 -05:00
parent 279c8c2300
commit f0e585aada
1 changed files with 31 additions and 1 deletions

View File

@ -28,10 +28,10 @@
//#include <unordered_map>
#include <list>
#include <map>
#include <unordered_set>
#include <CoreServices/CoreServices.h>
#include "rm.h"
#include "toolbox.h"
#include "mm.h"
@ -61,6 +61,32 @@ namespace
bool ResLoad = true;
// https://developer.apple.com/library/mac/documentation/Carbon/Reference/CoreEndianReference/
OSStatus FlipperNoFlipping(OSType dataDomain, OSType dataType, SInt16 id, void *dataPtr, ByteCount dataSize, Boolean currentlyNative, void *refCon)
{
return 0;
}
void BypassResourceFlipper(OSType dataType)
{
static std::unordered_set<OSType> Types;
if (Types.find(dataType) != Types.end()) return;
CoreEndianFlipProc proc;
void *refCon;
if (::CoreEndianGetFlipper(kCoreEndianResourceManagerDomain, dataType, &proc, &refCon) == 0)
{
::CoreEndianInstallFlipper(kCoreEndianResourceManagerDomain, dataType, FlipperNoFlipping, nullptr);
//fprintf(stderr, "Endian Flipper was installed for resource '%s'\n", TypeToString(dataType).c_str());
}
Types.insert(dataType);
}
#if 0
struct ResEntry
{
@ -143,9 +169,13 @@ namespace RM
uint32_t size;
theHandle = 0;
if (!LoadResType(type))
return SetResError(resNotFound);
BypassResourceFlipper(type);
nativeHandle = fx();
if (!nativeHandle) return SetResError(resNotFound);