Leaked source code of windows server 2003
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.

34 lines
530 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. HIDDLL.H
  5. Abstract:
  6. This module contains the PRIVATE definitions for the
  7. code that implements the HID dll.
  8. Environment:
  9. Kernel & user mode
  10. Revision History:
  11. Aug-96 : created by Kenneth Ray
  12. --*/
  13. #ifndef _HIDDLL_H
  14. #define _HIDDLL_H
  15. #define malloc(size) LocalAlloc (LPTR, size)
  16. #define free(ptr) LocalFree (ptr)
  17. #define ROUND_TO_PTR(_val_) (((_val_) + sizeof(PVOID) - 1) & ~(sizeof(PVOID) - 1))
  18. #endif