libstl: rename foug_stl_rw_error to foug_stl_error

This commit is contained in:
Hugues Delorme 2014-03-13 14:41:05 +01:00
parent 41eec9b1b5
commit 381dd0d9b7

View File

@ -5,7 +5,7 @@
#define FOUG_STL_ERROR_TAG 0x11000000 #define FOUG_STL_ERROR_TAG 0x11000000
/*! This enum defines the various error codes reported by STL read/write functions */ /*! This enum defines the various error codes reported by STL read/write functions */
enum foug_stl_rw_error enum foug_stl_error
{ {
/*! Common STL write error indicating foug_stl_geom::get_triangle_func() pointer is NULL */ /*! Common STL write error indicating foug_stl_geom::get_triangle_func() pointer is NULL */
FOUG_STL_WRITE_NULL_GET_TRIANGLE_FUNC_ERROR = FOUG_STL_ERROR_TAG + 1, FOUG_STL_WRITE_NULL_GET_TRIANGLE_FUNC_ERROR = FOUG_STL_ERROR_TAG + 1,
@ -30,6 +30,6 @@ enum foug_stl_rw_error
FOUG_STLB_READ_FACET_COUNT_ERROR = FOUG_STL_ERROR_TAG + 302 FOUG_STLB_READ_FACET_COUNT_ERROR = FOUG_STL_ERROR_TAG + 302
}; };
typedef enum foug_stl_rw_error foug_stl_rw_error_t; typedef enum foug_stl_error foug_stl_error_t;
#endif /* FOUG_LIBSTL_STL_ERROR_H */ #endif /* FOUG_LIBSTL_STL_ERROR_H */