src/ucx/ucx.h

changeset 259
2f5dea574a75
parent 253
e19825a1430a
child 270
3d80d425543b
equal deleted inserted replaced
258:d9f4285c795c 259:2f5dea574a75
1 /* 1 /*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3 * 3 *
4 * Copyright 2017 Olaf Wintermann. All rights reserved. 4 * Copyright 2017 Mike Becker, Olaf Wintermann All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met: 7 * modification, are permitted provided that the following conditions are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
35 35
36 #ifndef UCX_H 36 #ifndef UCX_H
37 #define UCX_H 37 #define UCX_H
38 38
39 /** Major UCX version as integer constant. */ 39 /** Major UCX version as integer constant. */
40 #define UCX_VERSION_MAJOR 0 40 #define UCX_VERSION_MAJOR 1
41 41
42 /** Minor UCX version as integer constant. */ 42 /** Minor UCX version as integer constant. */
43 #define UCX_VERSION_MINOR 14 43 #define UCX_VERSION_MINOR 0
44
45 /** Version constant which ensures to increase monotonically. */
46 #define UCX_VERSION (((UCX_VERSION_MAJOR)<<16)|UCX_VERSION_MINOR)
44 47
45 #include <stdlib.h> 48 #include <stdlib.h>
46 #include <stdint.h> 49 #include <stdint.h>
47 50
48 #ifdef _WIN32 51 #ifdef _WIN32

mercurial