You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
786 B
35 lines
786 B
// Copyright (c) 1998-1999 Microsoft Corporation
|
|
//
|
|
//
|
|
//
|
|
#ifndef _OLEDLL_
|
|
#define _OLEDLL_
|
|
|
|
STDAPI
|
|
RegisterServer(HMODULE hModule,
|
|
const CLSID &clsid,
|
|
const TCHAR *szFriendlyName,
|
|
const TCHAR *szVerIndProgID,
|
|
const TCHAR *szProgID);
|
|
|
|
STDAPI
|
|
UnregisterServer(const CLSID &clsid,
|
|
const TCHAR *szFriendlyName,
|
|
const TCHAR *szVerIndProgID,
|
|
const TCHAR *szProgID);
|
|
|
|
BOOL
|
|
GetCLSIDRegValue(const CLSID &clsid,
|
|
const TCHAR *szKey,
|
|
LPVOID pValue,
|
|
LPDWORD pcbValue);
|
|
|
|
HRESULT CLSIDToStr(const CLSID &clsid,
|
|
TCHAR *szStr,
|
|
int cbStr);
|
|
|
|
HRESULT StrToCLSID(TCHAR *szStr,
|
|
CLSID &clsid,
|
|
int cbStr);
|
|
|
|
#endif
|