00001 #ifndef _OPENRAW_POINT2F_H_ 00002 #define _OPENRAW_POINT2F_H_ 00003 00004 /* Copyright (c) Kyriacos Leptos and the President and Fellows of Harvard University 00005 Release Date: 2005-04-28 00006 Part of the MapQuant suite library "openraw.lib" 00007 */ 00008 00018 struct OpenRawPoint2f 00019 { 00020 float x_value; 00021 float y_value; 00022 }; 00023 00024 typedef struct OpenRawPoint2f OpenRawPoint2f; 00025 00026 OpenRawPoint2f* OpenRawPoint2fArray_create(int size, int array_start_type); 00027 00028 #endif