diff options
| author | frsyuki <frsyuki@users.sourceforge.jp> | 2010-07-06 17:00:58 +0900 |
|---|---|---|
| committer | frsyuki <frsyuki@users.sourceforge.jp> | 2010-07-06 17:00:58 +0900 |
| commit | 3af10a1d000882f338529360bf35ae0e3a21ffc4 (patch) | |
| tree | 021eee52e0a8f8649fc5e2cd880cb316eb0e41c9 /cpp/src/msgpack | |
| parent | b3987e24028f934e37b809c131d6c62b186a84ac (diff) | |
| download | msgpack-python-3af10a1d000882f338529360bf35ae0e3a21ffc4.tar.gz | |
cpp: adds MSGPACK_VERSION{,_MAJOR,_MINOR} macros and msgpack{,_major,_minor} functions
Diffstat (limited to 'cpp/src/msgpack')
| -rw-r--r-- | cpp/src/msgpack/version.h.in | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/cpp/src/msgpack/version.h.in b/cpp/src/msgpack/version.h.in new file mode 100644 index 0000000..af292d0 --- /dev/null +++ b/cpp/src/msgpack/version.h.in @@ -0,0 +1,40 @@ +/* + * MessagePack for C version information + * + * Copyright (C) 2008-2009 FURUHASHI Sadayuki + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +#ifndef MSGPACK_VERSION_H__ +#define MSGPACK_VERSION_H__ + +#ifdef __cplusplus +extern "C" { +#endif + + +const char* msgpack_version(void); +int msgpack_version_major(void); +int msgpack_version_minor(void); + +#define MSGPACK_VERSION "VERSION_UNDEFINED" +#define MSGPACK_VERSION_MAJOR VERSION_MAJOR_UNDEFINED +#define MSGPACK_VERSION_MINOR VERSION_MINOR_UNDEFINED + + +#ifdef __cplusplus +} +#endif + +#endif /* msgpack/version.h */ + |
