~ubuntu-branches/ubuntu/wily/sip4/wily

« back to all changes in this revision

Viewing changes to siplib/sip.h.in

  • Committer: Package Import Robot
  • Author(s): Dmitry Shachnev
  • Date: 2014-06-01 12:38:17 UTC
  • mto: (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20140601123817-dbefxopt3wv1ocr9
Tags: upstream-4.16+dfsg
ImportĀ upstreamĀ versionĀ 4.16+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
/*
55
55
 * Define the SIP version number.
56
56
 */
57
 
#define SIP_VERSION         0x040f05
58
 
#define SIP_VERSION_STR     "4.15.5"
 
57
#define SIP_VERSION         0x041000
 
58
#define SIP_VERSION_STR     "4.16"
59
59
 
60
60
 
61
61
/*
68
68
 *
69
69
 * History:
70
70
 *
 
71
 * 11.1 Added sip_api_invoke_slot_ex().
 
72
 *
71
73
 * 11.0 Added the pyqt5QtSignal and pyqt5ClassTypeDef structures.
72
74
 *      Removed qt_interface from pyqt4ClassTypeDef.
73
75
 *      Added hack to pyqt4QtSignal.
210
212
 * 0.0  Original version.
211
213
 */
212
214
#define SIP_API_MAJOR_NR    11
213
 
#define SIP_API_MINOR_NR    0
 
215
#define SIP_API_MINOR_NR    1
214
216
 
215
217
 
216
218
/* The name of the sip module. */
1513
1515
            SIP_SSIZE_T len, int flags);
1514
1516
    int (*api_register_proxy_resolver)(const sipTypeDef *td,
1515
1517
            sipProxyResolverFunc resolver);
 
1518
 
 
1519
    /*
 
1520
     * The following may be used by Qt support code but no other handwritten
 
1521
     * code.
 
1522
     */
 
1523
    PyObject *(*api_invoke_slot_ex)(const sipSlot *slot, PyObject *sigargs,
 
1524
            int check_receiver);
1516
1525
} sipAPIDef;
1517
1526
 
1518
1527