You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
240 B
15 lines
240 B
|
|
#pragma once
|
|
|
|
typedef PVOID TDI_OBJECT_HANDLE;
|
|
|
|
VOID
|
|
CloseTdiObjects(
|
|
TDI_OBJECT_HANDLE Handle
|
|
);
|
|
|
|
TDI_OBJECT_HANDLE
|
|
OpenTdiObjects(
|
|
const CHAR *ServiceName,
|
|
BOOLEAN OutGoingConnection
|
|
);
|