Changed version macros to use Be naming scheme

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6798 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matthew Wilber 2004-02-29 16:54:11 +00:00
parent 3aed9eddce
commit ab71ec93c8
1 changed files with 4 additions and 4 deletions

View File

@ -76,10 +76,10 @@ struct translator_data {
status_t (*GetConfigMessage)(BMessage *ioExtension);
};
#define TK_MAKE_VERSION(mjr,mnr,rev) ((mjr << 8) & ((mnr << 4) & 0xf0) & (rev & 0x0f))
#define TK_MAJOR_VERSION(v) (v >> 8)
#define TK_MINOR_VERSION(v) ((v >> 4) & 0xf)
#define TK_REVISION_VERSION(v) (v & 0xf)
#define B_TRANSLATION_MAKE_VER(mjr,mnr,rev) ((mjr << 8) & ((mnr << 4) & 0xf0) & (rev & 0x0f))
#define B_TRANSLATION_MAJOR_VER(v) (v >> 8)
#define B_TRANSLATION_MINOR_VER(v) ((v >> 4) & 0xf)
#define B_TRANSLATION_REVSN_VER(v) (v & 0xf)
// END: Added by Michael Wilber