Add support for tab-completion when selecting by rule
[alpine.git] / pico / mswinver.c
blob57c731c20627bdb8312b633c688cef70671b4f41
1 /*
2 * ========================================================================
3 * Copyright 2006-2009 University of Washington
4 * Copyright 2013-2022 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 5
16 #define VER_MINOR 10
17 extern char datestamp[];
21 * Return major version number...
23 int
24 mswin_majorver()
26 return(VER_MAJOR);
31 * Return minor version number...
33 int
34 mswin_minorver()
36 return(VER_MINOR);
41 * Return compilation number...
43 char *
44 mswin_compilation_date()
46 return(datestamp);
51 * Return special remarks...
53 char *
54 mswin_compilation_remarks()
56 return("");
60 * Return specific windows version...
62 char *
63 mswin_specific_winver()
65 return("");