diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-06 19:33:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-06 19:33:54 +0000 |
commit | 4e3088029101cc1e9bbc46984910a47bc0530e8f (patch) | |
tree | 1f90a0842b5cda763a34c02f0ba4c00b123ffca3 | |
parent | 665ab2181d58fa5c82f598c1188408f8711b1f0d (diff) |
fix for crash on startup
git-svn-id: http://svn.miranda-ng.org/main/trunk@3908 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/Utils.pas/mComObj.pas | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/Utils.pas/mComObj.pas b/plugins/Utils.pas/mComObj.pas index 9b435ebc5c..903451db7e 100644 --- a/plugins/Utils.pas/mComObj.pas +++ b/plugins/Utils.pas/mComObj.pas @@ -65,6 +65,18 @@ unit mcomobj; TClassInstancing = (ciInternal, ciSingleInstance, ciMultiInstance); TThreadingModel = (tmSingle, tmApartment, tmFree, tmBoth, tmNeutral); + type + EOleError = class(Exception); + + EOleSysError = class(EOleError) + private + FErrorCode: HRESULT; + public + constructor Create(const Msg: string; aErrorCode: HRESULT;aHelpContext: Integer); + property ErrorCode: HRESULT read FErrorCode write FErrorCode; + end; + + function CreateComObject(const ClassID: TGUID) : IUnknown; function CreateOleObject(const ClassName : string) : IDispatch; function GetActiveOleObject(const ClassName: string) : IDispatch; @@ -120,12 +132,38 @@ unit mcomobj; procedure CoTaskMemFree(_para1:PVOID);stdcall; external 'ole32.dll' name 'CoTaskMemFree'; function CoGetMalloc(_para1:DWORD; out _para2:IMalloc):HRESULT;stdcall; external 'ole32.dll' name 'CoGetMalloc'; procedure CoUninitialize;stdcall; external 'ole32.dll' name 'CoUninitialize'; + function CoCreateGuid(out _para1:TGUID):HRESULT;stdcall;external 'ole32.dll' name 'CoCreateGuid'; + function StringFromCLSID(const _para1:TCLSID; out _para2:POLESTR):HRESULT;stdcall; external 'ole32.dll' name 'StringFromCLSID'; implementation uses ComConst, Ole2, RtlConsts; + constructor EOleSysError.Create(const Msg: string; aErrorCode: HRESULT; aHelpContext: Integer); + var + m : string; + begin + if Msg='' then + m:=SysErrorMessage(aErrorCode) + else + m:=Msg; + inherited CreateHelp(m,HelpContext); + FErrorCode:=aErrorCode; + end; + + {$define FPC_COMOBJ_HAS_CREATE_CLASS_ID} + function CreateClassID : ansistring; + var + ClassID : TCLSID; + p : PWideChar; + begin + CoCreateGuid(ClassID); + StringFromCLSID(ClassID,p); + result:=p; + CoTaskMemFree(p); + end; + function CreateComObject(const ClassID : TGUID) : IUnknown; begin OleCheck(CoCreateInstance(ClassID,nil,CLSCTX_INPROC_SERVER or CLSCTX_LOCAL_SERVER,IUnknown,result)); @@ -157,6 +195,7 @@ implementation procedure OleError(Code: HResult); begin + raise EOleSysError.Create('',Code,0); end; procedure OleCheck(Value : HResult);inline; |