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.
30 lines
631 B
30 lines
631 B
#include "enduserpch.h"
|
|
#pragma hdrstop
|
|
|
|
#include <hlink.h>
|
|
|
|
static
|
|
STDMETHODIMP HlinkCreateFromMoniker(
|
|
IMoniker * pimkTrgt,
|
|
LPCWSTR pwzLocation,
|
|
LPCWSTR pwzFriendlyName,
|
|
IHlinkSite * pihlsite,
|
|
DWORD dwSiteData,
|
|
IUnknown * piunkOuter,
|
|
REFIID riid,
|
|
void ** ppvObj)
|
|
|
|
{
|
|
*ppvObj = NULL;
|
|
return E_FAIL;
|
|
}
|
|
|
|
//
|
|
// !! WARNING !! The entries below must be in order by ORDINAL
|
|
//
|
|
DEFINE_ORDINAL_ENTRIES(hlink)
|
|
{
|
|
DLOENTRY(3, HlinkCreateFromMoniker)
|
|
};
|
|
|
|
DEFINE_ORDINAL_MAP(hlink)
|