Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

27 lines
381 B

// Copyright (c) 1993-1999 Microsoft Corporation
#ifdef WIN32
#include <memory.h>
void
NDRcopy (
void *pDest,
void *pSrc,
int cb
)
{
memcpy(pDest, pSrc, cb);
}
#else // WIN32
void * memcpy(void far *, void far *, int);
#pragma intrinsic(memcpy)
void pascal NDRopy(void far *pDest, void far *pSrc, int cb)
{
memcpy(pDest, pSrc, cb);
}
#endif // WIN32