본문 바로가기

About Programing/04. Device Driver

OBJECT_ATTRIBUTES 구조체


typedef struct _OBJECT_ATTRIBUTES {   
    ULONG  Length; //sizeof
    HANDLE  RootDirectory;    
    PUNICODE_STRING  ObjectName; //열 핸들의 유니크 객체 이름
    ULONG  Attributes; //속성
    PVOID  SecurityDescriptor; //보안 서술자의 포인터    
    PVOID  SecurityQualityOfService;
} OBJECT_ATTRIBUTES, *POBJECT_ATTRIBUTES;
※InitializeObjectAttributes() 매크로를 통해 초기화 할수 있다.

'About Programing > 04. Device Driver' 카테고리의 다른 글

ZwCreateFile 함수  (0) 2010.07.29
SDT 수정을 이용한 Native API Hooking  (0) 2010.07.28
WinDbg 명령어 정리  (0) 2010.06.14
완전 신기!  (0) 2010.05.23
5월 22일 SOURCES 파일  (0) 2010.05.23