1 /* MaxMind, Inc., licenses this file to you under the Apache License, Version
2  * 2.0 (the "License"); you may not use this file except in compliance with
3  * the License.  You may obtain a copy of the License at
4  *
5  * http://www.apache.org/licenses/LICENSE-2.0
6  *
7  * Unless required by applicable law or agreed to in writing, software
8  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
10  * License for the specific language governing permissions and limitations
11  * under the License.
12  */
13 
14 #include <zend_interfaces.h>
15 
16 #ifndef PHP_MAXMINDDB_H
17 #define PHP_MAXMINDDB_H 1
18 #define PHP_MAXMINDDB_VERSION "1.5.0"
19 #define PHP_MAXMINDDB_EXTNAME "maxminddb"
20 
21 extern zend_module_entry maxminddb_module_entry;
22 #define phpext_maxminddb_ptr &maxminddb_module_entry
23 
24 #endif
25