commit | 4a75c5c6eaa5788b9ca6d21f0aa4a47bbce333c9 | [log] [tgz] |
---|---|---|
author | Michael Stefaniuc <mstefani@redhat.de> | Wed Aug 28 00:39:39 2002 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Aug 28 00:39:39 2002 +0000 |
tree | 7ab854a86c3e6f96f3fc208e605b2f473250d101 | |
parent | d8f50798b6052ae29a084bf4685154db5cc18a47 [diff] [blame] |
Convert HACCEL to a void*.
diff --git a/include/user.h b/include/user.h index 94eb5af..eb5588f 100644 --- a/include/user.h +++ b/include/user.h
@@ -141,4 +141,8 @@ extern DWORD USER16_AlertableWait; +/* HANDLE16 <-> HANDLE conversions */ +#define HACCEL_32(h16) ((HACCEL)(ULONG_PTR)(h16)) +#define HACCEL_16(h32) (LOWORD(h32)) + #endif /* __WINE_USER_H */