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

/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
HIDDLL.H
Abstract:
This module contains the PRIVATE definitions for the
code that implements the HID dll.
Environment:
Kernel & user mode
Revision History:
Aug-96 : created by Kenneth Ray
--*/
#ifndef _HIDDLL_H
#define _HIDDLL_H
#define malloc(size) LocalAlloc (LPTR, size)
#define free(ptr) LocalFree (ptr)
#define ROUND_TO_PTR(_val_) (((_val_) + sizeof(PVOID) - 1) & ~(sizeof(PVOID) - 1))
#endif