-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 284104 b: refs/heads/master c: f6baaec h: refs/heads/master v: v3
- Loading branch information
Eliot Blennerhassett
authored and
Takashi Iwai
committed
Dec 22, 2011
1 parent
5cded9e
commit de0e882
Showing
7 changed files
with
48 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 47a74a5d1ed2af23c2dc1ccfdcc0176e40404345 | ||
refs/heads/master: f6baaec2af36494469aa37558db8c79186f2fa03 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/** HPI Version Definitions | ||
Development releases have odd minor version. | ||
Production releases have even minor version. | ||
\file hpi_version.h | ||
*/ | ||
|
||
#ifndef _HPI_VERSION_H | ||
#define _HPI_VERSION_H | ||
|
||
/* Use single digits for versions less that 10 to avoid octal. */ | ||
/* *** HPI_VER is the only edit required to update version *** */ | ||
/** HPI version */ | ||
#define HPI_VER HPI_VERSION_CONSTRUCTOR(4, 10, 1) | ||
|
||
/** HPI version string in dotted decimal format */ | ||
#define HPI_VER_STRING "4.10.01" | ||
|
||
/** Library version as documented in hpi-api-versions.txt */ | ||
#define HPI_LIB_VER HPI_VERSION_CONSTRUCTOR(10, 2, 0) | ||
|
||
/** Construct hpi version number from major, minor, release numbers */ | ||
#define HPI_VERSION_CONSTRUCTOR(maj, min, r) ((maj << 16) + (min << 8) + r) | ||
|
||
/** Extract major version from hpi version number */ | ||
#define HPI_VER_MAJOR(v) ((int)(v >> 16)) | ||
/** Extract minor version from hpi version number */ | ||
#define HPI_VER_MINOR(v) ((int)((v >> 8) & 0xFF)) | ||
/** Extract release from hpi version number */ | ||
#define HPI_VER_RELEASE(v) ((int)(v & 0xFF)) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters