* new version 2.25
[alpine.git] / alpine / osdep / mswinver.c
blob9a0e19d5d33a58e815ec78aa281637d4e9f65427
1 /*
2 * ========================================================================
3 * Copyright 2006-2009 University of Washington
4 * Copyright 2013-2021 Eduardo Chappa
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * ========================================================================
15 #define VER_MAJOR 2
16 #define VER_MINOR 25
18 extern char datestamp[];
22 * Return major version number...
24 int
25 mswin_majorver()
27 return(VER_MAJOR);
32 * Return minor version number...
34 int
35 mswin_minorver()
37 return(VER_MINOR);
42 * Return compilation number...
44 char *
45 mswin_compilation_date()
47 return(datestamp);
52 * Return special remarks...
54 char *
55 mswin_compilation_remarks()
57 #ifdef SPCL_REMARKS
58 return(SPCL_REMARKS);
59 #else
60 return("");
61 #endif
65 * Return specific windows version...
67 char *
68 mswin_specific_winver()
70 #ifdef SPCFC_WINVER
71 return(SPCFC_WINVER);
72 #else
73 return("");
74 #endif