26 lines
383 B
C
Executable File
26 lines
383 B
C
Executable File
#ifndef _PREVIEWROTAYION_H_
|
|
#define _PREVIEWROTAYION_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
enum class PreviewRote
|
|
{
|
|
PreviewRoteROT_0 = 0,
|
|
PreviewRoteROT_90 = 90,
|
|
PreviewRoteROT_180 = 180,
|
|
PreviewRoteROT_270 = 270,
|
|
PreviewRoteROT_360 = 360,
|
|
|
|
PreviewRoteMIR_N= 0,
|
|
PreviewRoteMIR_H = 1,
|
|
PreviewRoteMIR_V = 2,
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|