home *** CD-ROM | disk | FTP | other *** search
/ Computer Panoráma / computer_panorama_1997-12-hibas.iso / SHARE / GRAPH / PTC051.ZIP / SRC / X86_COPY.H < prev    next >
C/C++ Source or Header  |  1997-09-22  |  543b  |  39 lines

  1. //////////////////////////////////////////
  2. // copy conversion routines (intel x86) //
  3. //////////////////////////////////////////
  4.  
  5. #ifndef __X86_COPY_H
  6. #define __X86_COPY_H
  7.  
  8. #include "misc.h"
  9. #include "config.h"
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18. #ifdef __X86__
  19.  
  20. // interface to external asm converters (do not call directly)
  21. extern "C" void ConvertCopy_X86(void *src,void *dest,uint bytes,void *extra);
  22.  
  23.  
  24. // watcom c++ interface
  25. #ifdef __WATCOMC__
  26. #pragma warning 601 9
  27. #pragma aux ConvertCopy_X86 "_*"
  28. #endif
  29.  
  30. #endif
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39. #endif