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.
49 lines
734 B
49 lines
734 B
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
#include "basepch.h"
|
|
#include "dloadexcept.h"
|
|
#pragma hdrstop
|
|
|
|
#include <cscapi.h>
|
|
|
|
VOID
|
|
WINAPI
|
|
DelayLoad_SetLastNtStatusAndWin32Error(
|
|
);
|
|
|
|
static
|
|
BOOL
|
|
WINAPI
|
|
CSCIsCSCEnabled(
|
|
VOID
|
|
)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
static
|
|
BOOL
|
|
WINAPI
|
|
CSCQueryFileStatusW(
|
|
LPCWSTR lpszFileName,
|
|
LPDWORD lpdwStatus,
|
|
LPDWORD lpdwPinCount,
|
|
LPDWORD lpdwHintFlags
|
|
)
|
|
{
|
|
DelayLoad_SetLastNtStatusAndWin32Error();
|
|
return FALSE;
|
|
}
|
|
|
|
|
|
//
|
|
// !! WARNING !! The entries below must be in order by ORDINAL
|
|
//
|
|
DEFINE_ORDINAL_ENTRIES(cscdll)
|
|
{
|
|
DLOENTRY(9, CSCIsCSCEnabled)
|
|
DLOENTRY(42, CSCQueryFileStatusW)
|
|
};
|
|
|
|
DEFINE_ORDINAL_MAP(cscdll)
|