blob: 3c106a673c4ee28aa1989508a8939fb2208d450c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* Copyright (c) 2004 Security Architects Corporation. All rights reserved.
*
* Module Name:
*
* boBOPROT.c
*
* Abstract:
*
* This module implements buffer overflow protection related routines.
*
* Author:
*
* Eugene Tsyrklevich 08-Jun-2004
*
* Revision History:
*
* None.
*/
#ifndef __BOPROT_H__
#define __BOPROT_H__
#include <NTDDK.h>
BOOLEAN InitBufferOverflowProtection();
VOID ShutdownBufferOverflowProtection();
#endif /* __BOPROT_H__ */
|