#ifndef _TUI_ROTATION_H_
#define _TUI_ROTATION_H_
#include <stdint.h>

typedef enum ROTATION {
	NONE_ROTATION_TYPE, CLOCKWISE_ROTATION_TYPE, OTHER_CLOCKWISE_ROTATION_TYPE
}RotationType;

#ifdef __cplusplus
extern "C" {
#endif
	void rotationCoordinates(uint32_t* x_out, uint32_t* y_out, uint8_t* pngData);
	void setRotationType(RotationType type);
	RotationType getRotationType();
	
#ifdef __cplusplus
}
#endif

#endif // _TUI_ROTATION_H_