forked from wxWidgets/Phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
92 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* The SIP module interface. | ||
* | ||
* Copyright (c) 2015 Riverbank Computing Limited <[email protected]> | ||
* Copyright (c) 2017 Riverbank Computing Limited <[email protected]> | ||
* | ||
* This file is part of SIP. | ||
* | ||
|
@@ -54,8 +54,8 @@ extern "C" { | |
/* | ||
* Define the SIP version number. | ||
*/ | ||
#define SIP_VERSION 0x041301 | ||
#define SIP_VERSION_STR "4.19.1.dev1701292222" | ||
#define SIP_VERSION 0x04ffff | ||
#define SIP_VERSION_STR "4.255.255" | ||
|
||
|
||
/* | ||
|
@@ -68,6 +68,8 @@ extern "C" { | |
* | ||
* History: | ||
* | ||
* 12.1 Added sip_api_enable_gc() to the public API. | ||
* | ||
* 12.0 Added SIP_TYPE_LIMITED_API to the sipTypeDef flags. | ||
* Added sip_api_py_type_dict() and sip_api_py_type_name() to the public | ||
* API. | ||
|
@@ -244,7 +246,7 @@ extern "C" { | |
* 0.0 Original version. | ||
*/ | ||
#define SIP_API_MAJOR_NR 12 | ||
#define SIP_API_MINOR_NR 0 | ||
#define SIP_API_MINOR_NR 1 | ||
|
||
|
||
/* The name of the sip module. */ | ||
|
@@ -1801,6 +1803,11 @@ typedef struct _sipAPIDef { | |
const sipIntTypeClassMap *map, int maplen); | ||
sipWrapperType *(*api_map_string_to_class)(const char *typeString, | ||
const sipStringTypeClassMap *map, int maplen); | ||
|
||
/* | ||
* The following are part of the public API. | ||
*/ | ||
int (*api_enable_gc)(int enable); | ||
} sipAPIDef; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters