copy.h
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:0k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /*
  2.  *
  3.  * Written By Linas Vepstas November 1991 
  4.  */
  5. #define COPY_THREE_WORDS(A,B) {
  6. struct three_words { long a, b, c, };
  7. *(struct three_words *) (A) = *(struct three_words *) (B);  
  8. }
  9. #define COPY_FOUR_WORDS(A,B) {
  10. struct four_words { long a, b, c, d, };
  11. *(struct four_words *) (A) = *(struct four_words *) (B);  
  12. }
  13. /* ============================================================= */