본문 바로가기

Language & API/WINDOWS DRIVER

[함수]IoSetDeviceInterfaceState

1
2
3
4
5
NTSTATUS IoSetDeviceInterfaceState(
  _In_ PUNICODE_STRING SymbolicLinkName,
  _In_ BOOLEAN         Enable
);
 
cs


[파라미터]

SymbolicLinkName -> IoRegisterDeviceInterface or IoGetDeviceInterfaces 포함된 스트링, 디바이스 인터페이스 이름을 나타낸 스티링


Enable -> TRUE -> device interface Enable

              FALSE -> device interface Disable


[리턴값]

성공하면 STATUS_SUCCESS를 반환한다. 


'Language & API > WINDOWS DRIVER' 카테고리의 다른 글

[함수]IoGetCurrentIrpStackLocation  (0) 2016.07.25
[함수]IoCreateSymbolicLink  (0) 2016.07.25
[함수]IoRegisterDeviceInterface  (0) 2016.07.25
[자료구조]DEVICE_OBJECT  (0) 2016.07.25
[함수]IoAttachDeviceToDeviceStack  (0) 2016.07.25