Foundation > Rogue Wave Views アプリケーションのパッケージ化 > Windows DLL にリソース・ファイルを追加する
 
Windows DLL にリソース・ファイルを追加する
すべての DLL モジュールに次の行を追加します。
#include <windows.h>
#include <ilviews/macros.h>
 
extern "C" {
void _declspec(dllimport) IlvAddHandleToResPath(long, int);
void _declspec(dllimport) IlvRemoveHandleFromResPath(long);
}
 
BOOL WINAPI
DllEntryPoint(HINSTANCE instance, DWORD reason, LPVOID)
{
switch (reason) {
case DLL_PROCESS_ATTACH:
IlvAddHandleToResPath((long)instance, -1);
return 1;
case DLL_PROCESS_DETACH:
IlvRemoveHandleFromResPath((long)instance);
return 0;
}
return 0;
}
BOOL WINAPI
DllMain(HINSTANCE hinstance, DWORD reason, LPVOID reserved)
{
return DllEntryPoint(hinstance, reason, reserved);
}

Version 6.0
Copyright © 2015, Rogue Wave Software, Inc. All Rights Reserved.