00001 00024 #ifndef INC_MI32_TIEPOINT_H 00025 #define INC_MI32_TIEPOINT_H 00026 00027 #ifndef INC_MI32_POINT_H 00028 #include <mi32/point.h> 00029 #endif 00030 00031 struct TIEPOINT { 00032 DPOINT2D source; 00033 DPOINT2D dest; 00034 FPOINT2D sourceaccur; 00035 FPOINT2D destaccur; 00036 }; 00037 00038 inline void SwapBytes ( 00039 TIEPOINT& pt 00040 ) { 00041 SwapBytes(pt.source); 00042 SwapBytes(pt.dest); 00043 SwapBytes(pt.sourceaccur); 00044 SwapBytes(pt.destaccur); 00045 } 00046 00047 #endif // INC_MI32_TIEPOINT_H
1.6.1