Bypass resource flipping

This commit is contained in:
Kelvin Sherlock 2015-02-06 20:24:05 -05:00
parent ce3b1ca11d
commit 7168fe8ba3

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,32 +61,6 @@ 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
{
@ -169,13 +143,9 @@ namespace RM
uint32_t size;
theHandle = 0;
if (!LoadResType(type))
return SetResError(resNotFound);
BypassResourceFlipper(type);
nativeHandle = fx();
if (!nativeHandle) return SetResError(resNotFound);