|
COM Library
|
The COM Library namespace. More...
Classes | |
| class | ClassFactory |
| The singleton coclass factory. More... | |
| class | IDispatchImpl |
| The implementaion of IDispatch. More... | |
| class | InprocServer |
| The base class for In-prcoess (DLL based) servers. More... | |
| class | ObjectBase |
| The base class for all COM objects. More... | |
| class | Server |
| The mixin class used for the common (DLL/EXE) COM server behaviour. More... | |
| class | ServerRegInfo |
| The data class used to store the library registry details. More... | |
| struct | ClassRegInfo |
| The data class used to store the coclass registry details. More... | |
Typedefs | |
| typedef WCL::IFacePtr < IClassFactory > | IClassFactoryPtr |
| The class factory smart-pointer type. | |
| typedef WCL::IFacePtr< IUnknown > | IUnknownPtr |
| The IUnknown smart-pointer type. | |
| typedef WCL::IFacePtr< ITypeLib > | ITypeLibPtr |
| The Type Library smart-pointer type. | |
Enumerations | |
| enum | ServerType { INPROC_SERVER = 1, LOCAL_SERVER = 2 } |
| COM server type. More... | |
| enum | ThreadingModel { MAIN_THREAD_APT = 1, SINGLE_THREAD_APT = 2, FREE_THREAD_APT = 3, ANY_APARTMENT = 4, NEUTRAL_APARTMENT = 5 } |
| COM threading model. More... | |
Functions | |
| tstring | FormatGUID (const GUID &rGUID) |
| Format the GUID as a string in Registry format. | |
| tstring | LookupCLSID (const CLSID &rCLSID) |
| Find the human readable name for the class ID. | |
| tstring | LookupIID (const IID &rIID) |
| Find the human readable name for the interface ID. | |
| bool | SetComErrorInfo (const char *pszSource, const tchar *pszDescription) |
| Set the COM ErrorInfo object for the thread. | |
| static void | SetRegistryValue (const tstring &strSubKey, const tstring &strValue) |
| Creates or updates the default value for a registry key under the HKCR tree. | |
| static void | SetRegistryValue (const tstring &strSubKey, const tstring &strName, const tstring &strValue) |
| Creates or updates a named value for a registry key under the HKCR tree. | |
| static void | DeleteKey (const tstring &strSubKey) |
| Deletes the key from under the HKCR tree. | |
| static const tchar * | GetServerTypeKey (ServerType eType) |
| Get the registry key name used for configuring the server type. | |
| static const tchar * | GetThreadModelKey (ThreadingModel eModel) |
| Get the registry key name used for configuring the threading model. | |
| void | RegisterCLSID (const ServerRegInfo &rSvrInfo, const CLSID &rCLSID, const tstring &strClass, const tstring &strVersion, ThreadingModel eModel) |
| Register a CLSID. | |
| void | UnregisterCLSID (const ServerRegInfo &rSvrInfo, const CLSID &rCLSID, const tstring &strClass, const tstring &strVersion) |
| Unregister a CLSID. | |
| void | RegisterTypeLib (const tstring &strFile) |
| Register a type library. | |
| void | UnregisterTypeLib (const GUID &rLIBID, ushort nMajor, ushort nMinor) |
| Unregister a type library. | |
| void | RegisterMonikerPrefix (const tstring &strPrefix, const tstring &strClass, const CLSID &rCLSID) |
| void | UnregisterMonikerPrefix (const tstring &strPrefix) |
Variables | |
| const size_t | MAX_GUID_CHARS = 38 |
| The maximum length of a string GUID. | |
The COM Library namespace.
| typedef WCL::IFacePtr<IClassFactory> COM::IClassFactoryPtr |
The class factory smart-pointer type.
| typedef WCL::IFacePtr<IUnknown> COM::IUnknownPtr |
The IUnknown smart-pointer type.
| typedef WCL::IFacePtr<ITypeLib> COM::ITypeLibPtr |
The Type Library smart-pointer type.
| enum COM::ServerType |
COM server type.
| enum COM::ThreadingModel |
COM threading model.
| tstring COM::FormatGUID | ( | const GUID & | rGUID | ) |
Format the GUID as a string in Registry format.
| tstring COM::LookupCLSID | ( | const CLSID & | rCLSID | ) |
Find the human readable name for the class ID.
| tstring COM::LookupIID | ( | const IID & | rIID | ) |
Find the human readable name for the interface ID.
| bool COM::SetComErrorInfo | ( | const char * | pszSource, |
| const tchar * | pszDescription | ||
| ) |
Set the COM ErrorInfo object for the thread.
The return value indicates if the "throw" was succesful or not.
| static void COM::SetRegistryValue | ( | const tstring & | strSubKey, |
| const tstring & | strValue | ||
| ) | [static] |
Creates or updates the default value for a registry key under the HKCR tree.
| static void COM::SetRegistryValue | ( | const tstring & | strSubKey, |
| const tstring & | strName, | ||
| const tstring & | strValue | ||
| ) | [static] |
Creates or updates a named value for a registry key under the HKCR tree.
| static void COM::DeleteKey | ( | const tstring & | strSubKey | ) | [static] |
Deletes the key from under the HKCR tree.
| static const tchar* COM::GetServerTypeKey | ( | ServerType | eType | ) | [static] |
Get the registry key name used for configuring the server type.
| static const tchar* COM::GetThreadModelKey | ( | ThreadingModel | eModel | ) | [static] |
Get the registry key name used for configuring the threading model.
| void COM::RegisterCLSID | ( | const ServerRegInfo & | rSvrInfo, |
| const CLSID & | rCLSID, | ||
| const tstring & | strClass, | ||
| const tstring & | strVersion, | ||
| ThreadingModel | eModel | ||
| ) |
Register a CLSID.
| void COM::UnregisterCLSID | ( | const ServerRegInfo & | rSvrInfo, |
| const CLSID & | rCLSID, | ||
| const tstring & | strClass, | ||
| const tstring & | strVersion | ||
| ) |
Unregister a CLSID.
| void COM::RegisterTypeLib | ( | const tstring & | strFile | ) |
Register a type library.
| void COM::UnregisterTypeLib | ( | const GUID & | rLIBID, |
| ushort | nMajor, | ||
| ushort | nMinor | ||
| ) |
Unregister a type library.
| void COM::RegisterMonikerPrefix | ( | const tstring & | strPrefix, |
| const tstring & | strClass, | ||
| const CLSID & | rCLSID | ||
| ) |
| void COM::UnregisterMonikerPrefix | ( | const tstring & | strPrefix | ) |
| const size_t COM::MAX_GUID_CHARS = 38 |
The maximum length of a string GUID.
1.7.6.1