memory_t.h
上传用户:gzdtt123
上传日期:2022-01-26
资源大小:88k
文件大小:4k
开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2001 - 2003
  3.  * NetGroup, Politecnico di Torino (Italy)
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  * notice, this list of conditions and the following disclaimer.
  12.  * 2. Redistributions in binary form must reproduce the above copyright
  13.  * notice, this list of conditions and the following disclaimer in the
  14.  * documentation and/or other materials provided with the distribution.
  15.  * 3. Neither the name of the Politecnico di Torino nor the names of its
  16.  * contributors may be used to endorse or promote products derived from
  17.  * this software without specific prior written permission.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23.  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30.  *
  31.  */
  32. #ifndef __memory_t
  33. #define __memory_t
  34. #define uint8 UCHAR
  35. #define int8 CHAR
  36. #define uint16 USHORT
  37. #define int16 SHORT
  38. #define uint32 ULONG
  39. #define int32 LONG
  40. #define uint64 ULONGLONG
  41. #define int64 LONGLONG
  42. /*memory type*/
  43. typedef struct __MEM_TYPE
  44. {
  45. uint8 *buffer;
  46. uint32 size;
  47. }  MEM_TYPE, *PMEM_TYPE;
  48. #define LONG_AT(base,offset) (*(int32*)((uint8*)base+(uint32)offset))
  49. #define ULONG_AT(base,offset) (*(uint32*)((uint8*)base+(uint32)offset))
  50. #define SHORT_AT(base,offset) (*(int16*)((uint8*)base+(uint32)offset))
  51. #define USHORT_AT(base,offset) (*(uint16*)((uint8*)base+(uint32)offset))
  52. __inline int32 SW_LONG_AT(void *b, uint32 c)
  53. {
  54. return ((int32)*((uint8 *)b+c)<<24|
  55.  (int32)*((uint8 *)b+c+1)<<16|
  56.  (int32)*((uint8 *)b+c+2)<<8|
  57.  (int32)*((uint8 *)b+c+3)<<0);
  58. }
  59. __inline uint32 SW_ULONG_AT(void *b, uint32 c)
  60. {
  61. return ((uint32)*((uint8 *)b+c)<<24|
  62.  (uint32)*((uint8 *)b+c+1)<<16|
  63.  (uint32)*((uint8 *)b+c+2)<<8|
  64.  (uint32)*((uint8 *)b+c+3)<<0);
  65. }
  66. __inline int16 SW_SHORT_AT(void *b, uint32 os)
  67. {
  68. return ((int16)
  69. ((int16)*((uint8 *)b+os+0)<<8|
  70.  (int16)*((uint8 *)b+os+1)<<0));
  71. }
  72. __inline uint16 SW_USHORT_AT(void *b, uint32 os)
  73. {
  74. return ((uint16)
  75. ((uint16)*((uint8 *)b+os+0)<<8|
  76.  (uint16)*((uint8 *)b+os+1)<<0));
  77. }
  78. __inline VOID SW_ULONG_ASSIGN(void *dst, uint32 src)
  79. {
  80. *((uint8*)dst+0)=*((uint8*)&src+3);
  81. *((uint8*)dst+1)=*((uint8*)&src+2);
  82. *((uint8*)dst+2)=*((uint8*)&src+1);
  83. *((uint8*)dst+3)=*((uint8*)&src+0);
  84. }
  85. #ifdef WIN_NT_DRIVER
  86. #define ALLOCATE_MEMORY(dest,type,amount) 
  87.   (dest)=ExAllocatePool(NonPagedPool,sizeof(type)*(amount));
  88. #define ALLOCATE_ZERO_MEMORY(dest,type,amount) 
  89. (dest)=ExAllocatePool(NonPagedPool,sizeof(type)*(amount)); 
  90. if ((dest)!=NULL) 
  91. RtlZeroMemory((dest),sizeof(type)*(amount)); 
  92. }
  93. #define FREE_MEMORY(dest) ExFreePool(dest);
  94. #define ZERO_MEMORY(dest,amount) RtlZeroMemory(dest,amount);
  95. #define COPY_MEMORY(dest,src,amount) RtlCopyMemory(dest,src,amount);
  96. #else
  97. #define ALLOCATE_MEMORY(dest,type,amount) 
  98.   (dest)=(type*)GlobalAlloc(GPTR, sizeof(type)*(amount));
  99. #define ALLOCATE_ZERO_MEMORY(dest,type,amount) 
  100.   (dest)=(type*)GlobalAlloc(GPTR, sizeof(type)*(amount));
  101. #define FREE_MEMORY(dest) GlobalFree(dest);
  102. #define ZERO_MEMORY(dest,amount) RtlZeroMemory(dest,amount);
  103. #define COPY_MEMORY(dest,src,amount) RtlCopyMemory(dest,src,amount);
  104. #endif /*WIN_NT_DRIVER*/
  105. #endif