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

  1. // Copyright (c) 1993-1999 Microsoft Corporation
  2. #ifdef WIN32
  3. #include <memory.h>
  4. void
  5. NDRcopy (
  6. void *pDest,
  7. void *pSrc,
  8. int cb
  9. )
  10. {
  11. memcpy(pDest, pSrc, cb);
  12. }
  13. #else // WIN32
  14. void * memcpy(void far *, void far *, int);
  15. #pragma intrinsic(memcpy)
  16. void pascal NDRopy(void far *pDest, void far *pSrc, int cb)
  17. {
  18. memcpy(pDest, pSrc, cb);
  19. }
  20. #endif // WIN32