Source code of Windows XP (NT5)
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.

26 lines
475 B

  1. #include <ntddndis.h>
  2. //
  3. // definition of the basic spin lock structure
  4. //
  5. typedef struct _NDIS_SPIN_LOCK {
  6. KSPIN_LOCK SpinLock;
  7. KIRQL OldIrql;
  8. } NDIS_SPIN_LOCK, * PNDIS_SPIN_LOCK;
  9. typedef PVOID NDIS_HANDLE, *PNDIS_HANDLE;
  10. typedef int NDIS_STATUS, *PNDIS_STATUS; // note default size
  11. //
  12. // Physical address.
  13. //
  14. typedef LARGE_INTEGER PHYSICAL_ADDRESS, *PPHYSICAL_ADDRESS; // windbgkd
  15. typedef PHYSICAL_ADDRESS NDIS_PHYSICAL_ADDRESS, *PNDIS_PHYSICAL_ADDRESS;