Partager via


DEVICE_PSL_NOTIFY

This structure contains information about the process that is exiting.

typedef struct _DEVICE_PSL_NOTIFY {
  DWORD dwSize;
  DWORD dwFlags;
  HANDLE hProc;
  HANDLE hThread;
} DEVICE_PSL_NOTIFY, *PDEVICE_PSL_NOTIFY;

Members

  • dwSize
    Specifies the length, in bytes, of the structure.
  • dwFlags
    Set to DLL_PROCESS_EXITING. The DLL_PROCESS_EXITING flag is not associated with DLL entry points.
  • hProc
    Specifies the process identifier.
  • hThread
    Specifies the main thread identifier of a process that is exiting.

Requirements

OS Versions: Windows CE 3.1 and later.
Header: Pkfuncs.h.

See Also

IOCTL_PSL_NOTIFY

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.