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.
31 lines
532 B
31 lines
532 B
#include "printscanpch.h"
|
|
#pragma hdrstop
|
|
#include <objbase.h>
|
|
#include <sti.h>
|
|
|
|
|
|
static
|
|
HRESULT
|
|
StiCreateInstanceW(
|
|
HINSTANCE hinst,
|
|
DWORD dwVer,
|
|
IStillImageW **ppSti,
|
|
LPUNKNOWN punkOuter)
|
|
{
|
|
if (ppSti)
|
|
{
|
|
*ppSti = NULL;
|
|
}
|
|
return E_FAIL;
|
|
}
|
|
|
|
|
|
//
|
|
// !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
|
|
//
|
|
DEFINE_PROCNAME_ENTRIES(sti)
|
|
{
|
|
DLPENTRY(StiCreateInstanceW)
|
|
};
|
|
|
|
DEFINE_PROCNAME_MAP(sti)
|