mirror of https://github.com/tongzx/nt5src
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.
39 lines
509 B
39 lines
509 B
#include "basepch.h"
|
|
#pragma hdrstop
|
|
|
|
#include <cscapi.h>
|
|
|
|
static
|
|
BOOL
|
|
WINAPI
|
|
CSCIsCSCEnabled(
|
|
VOID
|
|
)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
static
|
|
BOOL
|
|
WINAPI
|
|
CSCQueryFileStatusW(
|
|
LPCWSTR lpszFileName,
|
|
LPDWORD lpdwStatus,
|
|
LPDWORD lpdwPinCount,
|
|
LPDWORD lpdwHintFlags
|
|
)
|
|
{
|
|
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)
|