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.
26 lines
463 B
26 lines
463 B
#include "shellpch.h"
|
|
#pragma hdrstop
|
|
|
|
#define _ACLUI_
|
|
#include <aclui.h>
|
|
|
|
static
|
|
HPROPSHEETPAGE
|
|
ACLUIAPI
|
|
CreateSecurityPage(
|
|
LPSECURITYINFO psi
|
|
)
|
|
{
|
|
SetLastError (ERROR_PROC_NOT_FOUND);
|
|
return NULL;
|
|
}
|
|
|
|
//
|
|
// !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
|
|
//
|
|
DEFINE_ORDINAL_ENTRIES(aclui)
|
|
{
|
|
DLOENTRY(1, CreateSecurityPage)
|
|
};
|
|
|
|
DEFINE_ORDINAL_MAP(aclui)
|