⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 atom.h

📁 臭氧层主动防御系统驱动源代码!臭氧层主动防御系统驱动源代码!
💻 H
字号:
/*
 * Copyright (c) 2004 Security Architects Corporation. All rights reserved.
 *
 * Module Name:
 *
 *		atom.h
 *
 * Abstract:
 *
 *		This module defines various types used by atom object hooking routines.
 *
 * Author:
 *
 *		Eugene Tsyrklevich 06-Apr-2004
 *
 * Revision History:
 *
 *		None.
 */


#ifndef __ATOM_H__
#define __ATOM_H__


#include <NTDDK.h>
#include "policy.h"
#include "pathproc.h"
#include "hookproc.h"
#include "accessmask.h"
#include "learn.h"
#include "log.h"


/*
 * ZwAddAtom adds an atom to the global atom table. [NAR]
 */

typedef NTSTATUS (*fpZwAddAtom) (
	IN PWSTR String,
	IN ULONG StringLength,
	OUT PUSHORT Atom
	);

NTSTATUS
NTAPI
HookedNtAddAtom(
	IN PWSTR String,
	IN ULONG StringLength,
	OUT PUSHORT Atom
	);



/*
 * ZwFindAtom searches for an atom in the global atom table. [NAR]
 */


typedef NTSTATUS (*fpZwFindAtom) (
	IN PWSTR String,
	IN ULONG StringLength,
	OUT PUSHORT Atom
	);

NTSTATUS
NTAPI
HookedNtFindAtom(
	IN PWSTR String,
	IN ULONG StringLength,
	OUT PUSHORT Atom
	);


BOOLEAN InitAtomHooks();


#endif	/* __ATOM_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -