diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2003-04-07 01:06:23 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2003-04-07 01:06:23 +0000 |
commit | 3f26a1aeb721404df10a5d0d5b65566bcbe5bda4 (patch) | |
tree | 4fdad87ca67b4036b744a8d8b5ed0a5ec2676d50 | |
parent | 9dbe3289ee6f6bb1e2bc92c420aa949d5ea3c3c2 (diff) | |
download | cygnal-3f26a1aeb721404df10a5d0d5b65566bcbe5bda4.tar.gz cygnal-3f26a1aeb721404df10a5d0d5b65566bcbe5bda4.tar.bz2 cygnal-3f26a1aeb721404df10a5d0d5b65566bcbe5bda4.zip |
2003-04-07 Marcel Telka <telka@users.sourceforge.net>
* include/ddk/winddk.h (KIRQL): Typedef as UCHAR. not ULONG.
-rw-r--r-- | winsup/w32api/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/w32api/include/ddk/winddk.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 55d44f82a..57459b3bd 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,7 @@ +2003-04-07 Marcel Telka <telka@users.sourceforge.net> + + * include/ddk/winddk.h (KIRQL): Typedef as UCHAR. not ULONG. + 2003-03-30 Hans E. Molin <kvasi@users.sourceforge.net> * include/olectl.h (OleLoadPicturePath): Correct prototype. diff --git a/winsup/w32api/include/ddk/winddk.h b/winsup/w32api/include/ddk/winddk.h index e02c56e9a..986313369 100644 --- a/winsup/w32api/include/ddk/winddk.h +++ b/winsup/w32api/include/ddk/winddk.h @@ -127,7 +127,7 @@ static inline struct _KPCR * KeGetCurrentKPCR( */ typedef LONG KPRIORITY; -typedef ULONG KIRQL, *PKIRQL; +typedef UCHAR KIRQL, *PKIRQL; typedef ULONG_PTR KSPIN_LOCK, *PKSPIN_LOCK; typedef ULONG KAFFINITY, *PKAFFINITY; typedef CCHAR KPROCESSOR_MODE; |