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 */