D | rt_linux.h | 317 #define NdisMoveMemory(Destination, Source, Length) memmove(Destination, Source, Length) argument 318 #define NdisCopyMemory(Destination, Source, Length) memcpy(Destination, Source, Length) argument 319 #define NdisZeroMemory(Destination, Length) memset(Destination, 0, Length) argument 320 #define NdisFillMemory(Destination, Length, Fill) memset(Destination, Fill, Length) argument 321 #define NdisCmpMemory(Destination, Source, Length) memcmp(Destination, Source, Length) argument
|