驱动开发中碰到的函数

1 NTKERNELAPI NTSTATUS IoCreateDevice(
2   PDRIVER_OBJECT  DriverObject,
3   ULONG           DeviceExtensionSize,
4   PUNICODE_STRING DeviceName,
5   DEVICE_TYPE     DeviceType,
6   ULONG           DeviceCharacteristics,
7   BOOLEAN         Exclusive,
8   PDEVICE_OBJECT  *DeviceObject
9 );
1 NTSTATUS DriverEntry(
2   _In_ struct _DRIVER_OBJECT *DriverObject,
3   _In_ PUNICODE_STRING       RegistryPath
4 );
void RtlInitUnicodeString(
  PUNICODE_STRING DestinationString,
  PCWSTR          SourceString
);

猜你喜欢

转载自www.cnblogs.com/poikid/p/9398742.html