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
441 B
31 lines
441 B
/*++
|
|
|
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
Header Name:
|
|
|
|
settings.h
|
|
|
|
Abstract:
|
|
|
|
Interfaces for enabling verifier flags.
|
|
|
|
Author:
|
|
|
|
Silviu Calinoiu (SilviuC) 17-Apr-2001
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _SETTINGS_H_
|
|
#define _SETTINGS_H_
|
|
|
|
NTSTATUS
|
|
VerifierSetFlags (
|
|
PUNICODE_STRING ApplicationName,
|
|
ULONG VerifierFlags,
|
|
PVOID Details
|
|
);
|
|
|
|
#endif // _SETTINGS_H_
|