summaryrefslogtreecommitdiffstats
path: root/src/windows/identity/config/netidmgr_version.h.in
blob: febbeb3d75ae51f72f2978b79be5ed16b214a241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
$(VERSIONEXT): Makefile Makefile.w32
	$(CP) << $(VERSIONEXT)
/* Copyright (c) 2004 Massachusetts Institute of Technology
 *
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use, copy,
 * modify, merge, publish, distribute, sublicense, and/or sell copies
 * of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 */

#ifndef __NETIDMGR_VERSION_H
#define __NETIDMGR_VERSION_H

#include<windows.h>

/* Version number macros */
#define KH_VERSION_MAJOR 	$(NETIDMGR_VERSION_MAJOR)
#define KH_VERSION_MINOR 	$(NETIDMGR_VERSION_MINOR)
#define KH_VERSION_PATCH 	$(NETIDMGR_VERSION_PATCH)
#define KH_VERSION_AUX 		$(NETIDMGR_VERSION_AUX)

#define KH_VERSION_API          $(NETIDMGR_VERSION_API)
#define KH_VERSION_API_MINCOMPAT $(NETIDMGR_VERSION_API_MINCOMPAT)

#define KH_VERSION_LIST 	$(NETIDMGR_VERSIONC)
#define KH_VERSION_STRING 	"$(NETIDMGR_VERSION)"
#define KH_VERSION_STRINGW 	L"$(NETIDMGR_VERSION)"
#define KH_VERSION_STRINGC 	"$(NETIDMGR_VERSIONC)"
#define KH_VERSION_STRINGCW 	L"$(NETIDMGR_VERSIONC)"
#define KH_VERSION_STRINGAPI    "$(NETIDMGR_VERSION_API)"

/* Version definition macros */
#define KH_VER_FILEFLAGMASK     0x17L
#define KH_VER_FILEFLAGS 	$(kh_fileflags)
#define KH_VER_FILEOS 		$(kh_fileos)
#define KH_VER_FILETYPEDLL 	$(kh_filetype_dll)
#define KH_VER_FILETYPEAPP 	$(kh_filetype_app)

/* Special macros for NetIDMgr special string resources */
#define NIMV_MODULE             "NIDM_Module"
#define NIMV_PLUGINS            "NIDM_Plugins"
#define NIMV_APIVER             "NIDM_APIVers"
#define NIMV_SUPPORT            "NIDM_Support"

#endif
<<