1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// =================================================================================================
// ADOBE SYSTEMS INCORPORATED
// Copyright 2011 Adobe Systems Incorporated
// All Rights Reserved
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it.
// =================================================================================================
#include "ModuleUtils.h"
#include "source/UnicodeConversions.hpp"
namespace XMP_PLUGIN
{
OS_ModuleRef LoadModule( const std::string & inModulePath, bool inOnlyResourceAccess)
{
std::string wideString;
ToUTF16 ( (UTF8Unit*)inModulePath.c_str(), inModulePath.size() + 1, &wideString, false ); // need +1 character otherwise \0 won't be converted into UTF16
DWORD flags = inOnlyResourceAccess ? LOAD_LIBRARY_AS_IMAGE_RESOURCE : 0;
OS_ModuleRef result = ::LoadLibraryEx((WCHAR*) wideString.c_str(), NULL, flags);
// anything below indicates error in LoadLibrary
if((result != NULL) && (result < OS_ModuleRef(32)))
{
result = NULL;
}
return result;
}
void UnloadModule( OS_ModuleRef inModule, bool inOnlyResourceAccess )
{
::FreeLibrary(inModule);
}
void* GetFunctionPointerFromModuleImpl( OS_ModuleRef inOSModule, const char* inSymbol )
{
return reinterpret_cast<void*>( ::GetProcAddress( inOSModule, inSymbol ) );
}
bool GetResourceDataFromModule(
OS_ModuleRef inOSModule,
const std::string & inResourceName,
const std::string & inResourceType,
std::string & outBuffer)
{
HRSRC src = ::FindResourceA(inOSModule, reinterpret_cast<LPCSTR>(inResourceName.c_str()), reinterpret_cast<LPCSTR>(inResourceType.c_str()));
if( src != NULL )
{
HGLOBAL resource = (::LoadResource(inOSModule, src));
HGLOBAL data = (::LockResource(resource));
std::size_t size = (std::size_t)(::SizeofResource(inOSModule, src));
if (size)
{
outBuffer.assign((const char*)data, size);
}
UnlockResource(data);
::FreeResource(resource);
return true;
}
return false;
}
} //namespace XMP_PLUGIN
|