Files
milsko/include/Mw/Constants.h
NishiOwO 0fd866977b new constant
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@252 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-10 11:45:27 +00:00

42 lines
489 B
C

/* $Id$ */
/*!
* %file Mw/Constants.h
* %brief Constants
*/
#ifndef __MW_CONSTANTS_H__
#define __MW_CONSTANTS_H__
/*!
* %brief Direction enumeration
*/
enum MwDIRECTION {
MwNORTH = 0,
MwSOUTH,
MwEAST,
MwWEST
};
/*!
* %brief Orientation
*/
enum MwORIENTATION {
MwVERTICAL = 0,
MwHORIZONTAL
};
/*!
* %brief Alignment
*/
enum MwALIGNMENT {
MwALIGNMENT_CENTER = 0,
MwALIGNMENT_BEGINNING,
MwALIGNMENT_END,
};
/*!
* %brief Default
*/
#define MwDEFAULT 0x0fffffff
#endif