About Programing/04. Device Driver
ZwCreateFile 함수
숙신
2010. 7. 29. 00:03
ZwCreateFile( __out PHANDLE FileHandle, //파일을 가리키는 핸들 CreateFile의 리턴값 __in ACCESS_MASK DesiredAccess, //객체에 접근하기 위한 권한 __in POBJECT_ATTRIBUTES ObjectAttributes, // __out PIO_STATUS_BLOCK IoStatusBlock, //요청 처리된 결과값 __in_opt PLARGE_INTEGER AllocationSize, //초기 할당 크기를 포함하고 있는 라지 인티저의 포인터 __in ULONG FileAttributes, //dwFlagsAndAttributes __in ULONG ShareAccess, //dwShareMode __in ULONG CreateDisposition, // __in ULONG CreateOptions, __in_bcount_opt(EaLength) PVOID EaBuffer, __in ULONG EaLength );