-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgshhg_version.h
61 lines (50 loc) · 1.6 KB
/
gshhg_version.h
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
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/*
* gshhg_version.h contains prototypes
*
* Author: Florian Wobbe
* Date: 3-APR-2012
* Version: 5
*/
/*!
* \file gshhg_version.h
* \brief
*/
#ifndef GMT_GSHHG_VERSION_H
#define GMT_GSHHG_VERSION_H
#ifdef __cplusplus /* Basic C++ support */
extern "C" {
#endif
#ifndef STANDALONE
/* CMake definitions: This must be first! */
# include "gmt_config.h"
/* Declaration modifiers for DLL support (MSC et al) */
# include "declspec.h"
#else
# define EXTERN_MSC extern
#endif /* STANDALONE */
/* Structure that holds the GSHHG version */
struct GSHHG_VERSION {
unsigned major, minor, patch;
};
/* Prototypes */
EXTERN_MSC int gshhg_require_min_version (const char* filename, const struct GSHHG_VERSION min_version);
#ifdef __cplusplus
}
#endif
#endif /* GMT_GSHHG_VERSION_H */