📄 soapserdll.cpp
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license agreement,
// you are not authorized to use this source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the SOURCE.RTF on your install media or the root of your tools installation.
// THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
//+----------------------------------------------------------------------------
//
//
// File: soapserdll.cpp
//
// Contents:
//
// implementation file
//
// ISoapSerializerDll implemenation
//
//
//-----------------------------------------------------------------------------
#include "headers.h"
static const REGENTRY g_SoapSerRegistryEntries[] =
{
// SoapSerializer class and typelibs
{ "MSSOAP.SoapSerializer", 0, { REG_SZ, "Microsoft Soap SoapSerializer class", 0 },
REG_ROOT, REG_DEFAULT },
{ "Clsid", 0, { REG_SZ, REGKEY(CLSID_SOAPSERIALIZER), 0 },
REG_ROOT+1, REG_DEFAULT },
{ "CurVer", 0, { REG_SZ, "MSSOAP.SoapSerializer.1", 0 },
REG_ROOT+1, REG_DEFAULT }
,
{ "MSSOAP.SoapSerializer.1", 0, { REG_SZ, "Microsoft Soap SoapSerializer class Version 1" , 0 },
REG_ROOT, REG_DEFAULT },
{ "Clsid", 0, { REG_SZ, REGKEY(CLSID_SOAPSERIALIZER), 0 },
REG_ROOT+1, REG_DEFAULT },
{ "CLSID", 0, { 0, NULL, 0 },
REG_ROOT, REG_EXISTING | UNREG_OPEN },
{ REGKEY(CLSID_SOAPSERIALIZER), 0, { REG_SZ, "MSSOAP.DLL SoapSerializer class", 0 },
REG_ROOT+1, REG_DEFAULT },
{ "InProcServer32", 0, { REG_SZ, "%s", 0 },
REG_ROOT+2, REG_DEFAULT },
{ "InProcServer32", "ThreadingModel", { REG_SZ, "Both", 0 },
REG_ROOT+2, REG_DEFAULT },
{ "ProgID", 0, { REG_SZ, "MSSOAP.SoapSerializer.1", 0 },
REG_ROOT+2, REG_DEFAULT },
{ "VersionIndependentProgID", 0, { REG_SZ, "MSSOAP.SoapSerializer", 0 },
REG_ROOT+2, REG_DEFAULT },
{ "TypeLib", 0, { REG_SZ, REGKEY(LIBID_MSSOAP_TYPELIB), 0 },
REG_ROOT+2, REG_DEFAULT },
};
STDAPI SoapSer_UnregisterServer(void)
{
#ifndef CE_NO_EXCEPTIONS
try
#else
__try
#endif
{
UnregisterRegEntry(g_SoapSerRegistryEntries, countof(g_SoapSerRegistryEntries), HKEY_CLASSES_ROOT);
return S_OK;
}
#ifndef CE_NO_EXCEPTIONS
catch (...)
#else
__except(1)
#endif
{
return E_FAIL;
}
}
STDAPI SoapSer_RegisterServer(CHAR *pModName)
{
#ifdef CE_NO_EXCEPTIONS
__try
{
if(SUCCEEDED(RegisterRegEntry(g_SoapSerRegistryEntries, countof(g_SoapSerRegistryEntries), pModName, 0, HKEY_CLASSES_ROOT)))
return S_OK;
else
{
SoapSer_UnregisterServer();
return E_FAIL;
}
}
__except(1)
{
SoapSer_UnregisterServer();
return E_FAIL;
}
#else
try
{
// no UnregisterServer here - the caller did it already
RegisterRegEntry(g_SoapSerRegistryEntries, countof(g_SoapSerRegistryEntries), pModName, 0, HKEY_CLASSES_ROOT);
return S_OK;
}
catch(...)
{
SoapSer_UnregisterServer();
return E_FAIL;
}
#endif
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -