tabs to spaces

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4602 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2006-03-17 20:55:46 +00:00
parent 3bc88ed854
commit fb6f254183

View file

@ -11,115 +11,115 @@
#define NSISFunction(funcname) extern "C" void __declspec(dllexport) funcname(HWND hwndParent, int string_size, char *variables, stack_t **stacktop) #define NSISFunction(funcname) extern "C" void __declspec(dllexport) funcname(HWND hwndParent, int string_size, char *variables, stack_t **stacktop)
extern "C" BOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call, LPVOID lpReserved) { extern "C" BOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call, LPVOID lpReserved) {
return TRUE; return TRUE;
} }
// Functions // Functions
NSISFunction(Register) { NSISFunction(Register) {
EXDLL_INIT(); EXDLL_INIT();
char filename[1024]; char filename[1024];
popstring(filename); popstring(filename);
wchar_t ole_filename[1024]; wchar_t ole_filename[1024];
MultiByteToWideChar(CP_ACP, 0, filename, 1024, ole_filename, 1024); MultiByteToWideChar(CP_ACP, 0, filename, 1024, ole_filename, 1024);
ITypeLib* typeLib; ITypeLib* typeLib;
HRESULT hr; HRESULT hr;
hr = LoadTypeLib(ole_filename, &typeLib); hr = LoadTypeLib(ole_filename, &typeLib);
if (SUCCEEDED(hr)) { if (SUCCEEDED(hr)) {
RegisterTypeLib(typeLib, ole_filename, NULL); RegisterTypeLib(typeLib, ole_filename, NULL);
hr = typeLib->Release(); hr = typeLib->Release();
} }
} }
NSISFunction(UnRegister) { NSISFunction(UnRegister) {
EXDLL_INIT(); EXDLL_INIT();
char filename[1024]; char filename[1024];
popstring(filename); popstring(filename);
wchar_t ole_filename[1024]; wchar_t ole_filename[1024];
MultiByteToWideChar(CP_ACP, 0, filename, 1024, ole_filename, 1024); MultiByteToWideChar(CP_ACP, 0, filename, 1024, ole_filename, 1024);
ITypeLib* typeLib; ITypeLib* typeLib;
HRESULT hr; HRESULT hr;
hr = LoadTypeLibEx(ole_filename, REGKIND_NONE, &typeLib); hr = LoadTypeLibEx(ole_filename, REGKIND_NONE, &typeLib);
if (SUCCEEDED(hr)) if (SUCCEEDED(hr))
{ {
TLIBATTR* typelibAttr; TLIBATTR* typelibAttr;
hr = typeLib->GetLibAttr(&typelibAttr); hr = typeLib->GetLibAttr(&typelibAttr);
if(SUCCEEDED(hr)) if(SUCCEEDED(hr))
{ {
UnRegisterTypeLib(typelibAttr->guid, UnRegisterTypeLib(typelibAttr->guid,
typelibAttr->wMajorVerNum, typelibAttr->wMajorVerNum,
typelibAttr->wMinorVerNum, typelibAttr->wMinorVerNum,
typelibAttr->lcid, typelibAttr->lcid,
typelibAttr->syskind); typelibAttr->syskind);
typeLib->ReleaseTLibAttr(typelibAttr); typeLib->ReleaseTLibAttr(typelibAttr);
} }
typeLib->Release(); typeLib->Release();
} }
} }
NSISFunction(GetLibVersion) { NSISFunction(GetLibVersion) {
EXDLL_INIT(); EXDLL_INIT();
char filename[1024]; char filename[1024];
popstring(filename); popstring(filename);
wchar_t ole_filename[1024]; wchar_t ole_filename[1024];
MultiByteToWideChar(CP_ACP, 0, filename, 1024, ole_filename, 1024); MultiByteToWideChar(CP_ACP, 0, filename, 1024, ole_filename, 1024);
ITypeLib* typeLib; ITypeLib* typeLib;
HRESULT hr; HRESULT hr;
hr = LoadTypeLib(ole_filename, &typeLib); hr = LoadTypeLib(ole_filename, &typeLib);
if (SUCCEEDED(hr)) if (SUCCEEDED(hr))
{ {
TLIBATTR* typelibAttr; TLIBATTR* typelibAttr;
hr = typeLib->GetLibAttr(&typelibAttr); hr = typeLib->GetLibAttr(&typelibAttr);
if (SUCCEEDED(hr)) if (SUCCEEDED(hr))
{ {
char buf[33]; char buf[33];
wsprintf(buf, "%d", typelibAttr->wMajorVerNum); wsprintf(buf, "%d", typelibAttr->wMajorVerNum);
pushstring(buf); pushstring(buf);
wsprintf(buf, "%d", typelibAttr->wMinorVerNum); wsprintf(buf, "%d", typelibAttr->wMinorVerNum);
pushstring(buf); pushstring(buf);
typeLib->ReleaseTLibAttr(typelibAttr); typeLib->ReleaseTLibAttr(typelibAttr);
} }
typeLib->Release(); typeLib->Release();
} }
} }