Loading...
Searching...
No Matches
Go to the documentation of this file.
9#ifndef MM_COMMUNICATE_H_
10#define MM_COMMUNICATE_H_
12#define MM_MAJOR_VER_MASK 0xEFFF0000
13#define MM_MINOR_VER_MASK 0x0000FFFF
14#define MM_MAJOR_VER_SHIFT 16
16#define MM_MAJOR_VER(x) (((x) & MM_MAJOR_VER_MASK) >> MM_MAJOR_VER_SHIFT)
17#define MM_MINOR_VER(x) ((x) & MM_MINOR_VER_MASK)
19#define MM_CALLER_MAJOR_VER 0x1UL
20#define MM_CALLER_MINOR_VER 0x0