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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
|
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_msi_UuidCreate__doc__,
"UuidCreate($module, /)\n"
"--\n"
"\n"
"Return the string representation of a new unique identifier.");
#define _MSI_UUIDCREATE_METHODDEF \
{"UuidCreate", (PyCFunction)_msi_UuidCreate, METH_NOARGS, _msi_UuidCreate__doc__},
static PyObject *
_msi_UuidCreate_impl(PyObject *module);
static PyObject *
_msi_UuidCreate(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return _msi_UuidCreate_impl(module);
}
PyDoc_STRVAR(_msi_FCICreate__doc__,
"FCICreate($module, cabname, files, /)\n"
"--\n"
"\n"
"Create a new CAB file.\n"
"\n"
" cabname\n"
" the name of the CAB file\n"
" files\n"
" a list of tuples, each containing the name of the file on disk,\n"
" and the name of the file inside the CAB file");
#define _MSI_FCICREATE_METHODDEF \
{"FCICreate", (PyCFunction)(void(*)(void))_msi_FCICreate, METH_FASTCALL, _msi_FCICreate__doc__},
static PyObject *
_msi_FCICreate_impl(PyObject *module, const char *cabname, PyObject *files);
static PyObject *
_msi_FCICreate(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
const char *cabname;
PyObject *files;
if (!_PyArg_CheckPositional("FCICreate", nargs, 2, 2)) {
goto exit;
}
if (!PyUnicode_Check(args[0])) {
_PyArg_BadArgument("FCICreate", "argument 1", "str", args[0]);
goto exit;
}
Py_ssize_t cabname_length;
cabname = PyUnicode_AsUTF8AndSize(args[0], &cabname_length);
if (cabname == NULL) {
goto exit;
}
if (strlen(cabname) != (size_t)cabname_length) {
PyErr_SetString(PyExc_ValueError, "embedded null character");
goto exit;
}
files = args[1];
return_value = _msi_FCICreate_impl(module, cabname, files);
exit:
return return_value;
}
PyDoc_STRVAR(_msi_Database_Close__doc__,
"Close($self, /)\n"
"--\n"
"\n"
"Close the database object.");
#define _MSI_DATABASE_CLOSE_METHODDEF \
{"Close", (PyCFunction)_msi_Database_Close, METH_NOARGS, _msi_Database_Close__doc__},
static PyObject *
_msi_Database_Close_impl(msiobj *self);
static PyObject *
_msi_Database_Close(msiobj *self, PyObject *Py_UNUSED(ignored))
{
return _msi_Database_Close_impl(self);
}
PyDoc_STRVAR(_msi_Record_GetFieldCount__doc__,
"GetFieldCount($self, /)\n"
"--\n"
"\n"
"Return the number of fields of the record.");
#define _MSI_RECORD_GETFIELDCOUNT_METHODDEF \
{"GetFieldCount", (PyCFunction)_msi_Record_GetFieldCount, METH_NOARGS, _msi_Record_GetFieldCount__doc__},
static PyObject *
_msi_Record_GetFieldCount_impl(msiobj *self);
static PyObject *
_msi_Record_GetFieldCount(msiobj *self, PyObject *Py_UNUSED(ignored))
{
return _msi_Record_GetFieldCount_impl(self);
}
PyDoc_STRVAR(_msi_Record_GetInteger__doc__,
"GetInteger($self, field, /)\n"
"--\n"
"\n"
"Return the value of field as an integer where possible.");
#define _MSI_RECORD_GETINTEGER_METHODDEF \
{"GetInteger", (PyCFunction)_msi_Record_GetInteger, METH_O, _msi_Record_GetInteger__doc__},
static PyObject *
_msi_Record_GetInteger_impl(msiobj *self, unsigned int field);
static PyObject *
_msi_Record_GetInteger(msiobj *self, PyObject *arg)
{
PyObject *return_value = NULL;
unsigned int field;
field = (unsigned int)PyLong_AsUnsignedLongMask(arg);
if (field == (unsigned int)-1 && PyErr_Occurred()) {
goto exit;
}
return_value = _msi_Record_GetInteger_impl(self, field);
exit:
return return_value;
}
PyDoc_STRVAR(_msi_Record_GetString__doc__,
"GetString($self, field, /)\n"
"--\n"
"\n"
"Return the value of field as a string where possible.");
#define _MSI_RECORD_GETSTRING_METHODDEF \
{"GetString", (PyCFunction)_msi_Record_GetString, METH_O, _msi_Record_GetString__doc__},
static PyObject *
_msi_Record_GetString_impl(msiobj *self, unsigned int field);
static PyObject *
_msi_Record_GetString(msiobj *self, PyObject *arg)
{
PyObject *return_value = NULL;
unsigned int field;
field = (unsigned int)PyLong_AsUnsignedLongMask(arg);
if (field == (unsigned int)-1 && PyErr_Occurred()) {
goto exit;
}
return_value = _msi_Record_GetString_impl(self, field);
exit:
return return_value;
}
PyDoc_STRVAR(_msi_Record_ClearData__doc__,
"ClearData($self, /)\n"
"--\n"
"\n"
"Set all fields of the record to 0.");
#define _MSI_RECORD_CLEARDATA_METHODDEF \
{"ClearData", (PyCFunction)_msi_Record_ClearData, METH_NOARGS, _msi_Record_ClearData__doc__},
static PyObject *
_msi_Record_ClearData_impl(msiobj *self);
static PyObject *
_msi_Record_ClearData(msiobj *self, PyObject *Py_UNUSED(ignored))
{
return _msi_Record_ClearData_impl(self);
}
PyDoc_STRVAR(_msi_Record_SetString__doc__,
"SetString($self, field, value, /)\n"
"--\n"
"\n"
"Set field to a string value.");
#define _MSI_RECORD_SETSTRING_METHODDEF \
{"SetString", (PyCFunction)(void(*)(void))_msi_Record_SetString, METH_FASTCALL, _msi_Record_SetString__doc__},
static PyObject *
_msi_Record_SetString_impl(msiobj *self, int field, const Py_UNICODE *value);
static PyObject *
_msi_Record_SetString(msiobj *self, PyObject *const *args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int field;
const Py_UNICODE *value;
if (!_PyArg_CheckPositional("SetString", nargs, 2, 2)) {
goto exit;
}
field = _PyLong_AsInt(args[0]);
if (field == -1 && PyErr_Occurred()) {
goto exit;
}
if (!PyUnicode_Check(args[1])) {
_PyArg_BadArgument("SetString", "argument 2", "str", args[1]);
goto exit;
}
#if USE_UNICODE_WCHAR_CACHE
value = _PyUnicode_AsUnicode(args[1]);
#else /* USE_UNICODE_WCHAR_CACHE */
value = PyUnicode_AsWideCharString(args[1], NULL);
#endif /* USE_UNICODE_WCHAR_CACHE */
if (value == NULL) {
goto exit;
}
return_value = _msi_Record_SetString_impl(self, field, value);
exit:
/* Cleanup for value */
#if !USE_UNICODE_WCHAR_CACHE
PyMem_Free((void *)value);
#endif /* USE_UNICODE_WCHAR_CACHE */
return return_value;
}
PyDoc_STRVAR(_msi_Record_SetStream__doc__,
"SetStream($self, field, value, /)\n"
"--\n"
"\n"
"Set field to the contents of the file named value.");
#define _MSI_RECORD_SETSTREAM_METHODDEF \
{"SetStream", (PyCFunction)(void(*)(void))_msi_Record_SetStream, METH_FASTCALL, _msi_Record_SetStream__doc__},
static PyObject *
_msi_Record_SetStream_impl(msiobj *self, int field, const Py_UNICODE *value);
static PyObject *
_msi_Record_SetStream(msiobj *self, PyObject *const *args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int field;
const Py_UNICODE *value;
if (!_PyArg_CheckPositional("SetStream", nargs, 2, 2)) {
goto exit;
}
field = _PyLong_AsInt(args[0]);
if (field == -1 && PyErr_Occurred()) {
goto exit;
}
if (!PyUnicode_Check(args[1])) {
_PyArg_BadArgument("SetStream", "argument 2", "str", args[1]);
goto exit;
}
#if USE_UNICODE_WCHAR_CACHE
value = _PyUnicode_AsUnicode(args[1]);
#else /* USE_UNICODE_WCHAR_CACHE */
value = PyUnicode_AsWideCharString(args[1], NULL);
#endif /* USE_UNICODE_WCHAR_CACHE */
if (value == NULL) {
goto exit;
}
return_value = _msi_Record_SetStream_impl(self, field, value);
exit:
/* Cleanup for value */
#if !USE_UNICODE_WCHAR_CACHE
PyMem_Free((void *)value);
#endif /* USE_UNICODE_WCHAR_CACHE */
return return_value;
}
PyDoc_STRVAR(_msi_Record_SetInteger__doc__,
"SetInteger($self, field, value, /)\n"
"--\n"
"\n"
"Set field to an integer value.");
#define _MSI_RECORD_SETINTEGER_METHODDEF \
{"SetInteger", (PyCFunction)(void(*)(void))_msi_Record_SetInteger, METH_FASTCALL, _msi_Record_SetInteger__doc__},
static PyObject *
_msi_Record_SetInteger_impl(msiobj *self, int field, int value);
static PyObject *
_msi_Record_SetInteger(msiobj *self, PyObject *const *args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int field;
int value;
if (!_PyArg_CheckPositional("SetInteger", nargs, 2, 2)) {
goto exit;
}
field = _PyLong_AsInt(args[0]);
if (field == -1 && PyErr_Occurred()) {
goto exit;
}
value = _PyLong_AsInt(args[1]);
if (value == -1 && PyErr_Occurred()) {
goto exit;
}
return_value = _msi_Record_SetInteger_impl(self, field, value);
exit:
return return_value;
}
PyDoc_STRVAR(_msi_SummaryInformation_GetProperty__doc__,
"GetProperty($self, field, /)\n"
"--\n"
"\n"
"Return a property of the summary.\n"
"\n"
" field\n"
" the name of the property, one of the PID_* constants");
#define _MSI_SUMMARYINFORMATION_GETPROPERTY_METHODDEF \
{"GetProperty", (PyCFunction)_msi_SummaryInformation_GetProperty, METH_O, _msi_SummaryInformation_GetProperty__doc__},
static PyObject *
_msi_SummaryInformation_GetProperty_impl(msiobj *self, int field);
static PyObject *
_msi_SummaryInformation_GetProperty(msiobj *self, PyObject *arg)
{
PyObject *return_value = NULL;
int field;
field = _PyLong_AsInt(arg);
if (field == -1 && PyErr_Occurred()) {
goto exit;
}
return_value = _msi_SummaryInformation_GetProperty_impl(self, field);
exit:
return return_value;
}
PyDoc_STRVAR(_msi_SummaryInformation_GetPropertyCount__doc__,
"GetPropertyCount($self, /)\n"
"--\n"
"\n"
"Return the number of summary properties.");
#define _MSI_SUMMARYINFORMATION_GETPROPERTYCOUNT_METHODDEF \
{"GetPropertyCount", (PyCFunction)_msi_SummaryInformation_GetPropertyCount, METH_NOARGS, _msi_SummaryInformation_GetPropertyCount__doc__},
static PyObject *
_msi_SummaryInformation_GetPropertyCount_impl(msiobj *self);
static PyObject *
_msi_SummaryInformation_GetPropertyCount(msiobj *self, PyObject *Py_UNUSED(ignored))
{
return _msi_SummaryInformation_GetPropertyCount_impl(self);
}
PyDoc_STRVAR(_msi_SummaryInformation_SetProperty__doc__,
"SetProperty($self, field, value, /)\n"
"--\n"
"\n"
"Set a property.\n"
"\n"
" field\n"
" the name of the property, one of the PID_* constants\n"
" value\n"
" the new value of the property (integer or string)");
#define _MSI_SUMMARYINFORMATION_SETPROPERTY_METHODDEF \
{"SetProperty", (PyCFunction)(void(*)(void))_msi_SummaryInformation_SetProperty, METH_FASTCALL, _msi_SummaryInformation_SetProperty__doc__},
static PyObject *
_msi_SummaryInformation_SetProperty_impl(msiobj *self, int field,
PyObject *data);
static PyObject *
_msi_SummaryInformation_SetProperty(msiobj *self, PyObject *const *args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int field;
PyObject *data;
if (!_PyArg_CheckPositional("SetProperty", nargs, 2, 2)) {
goto exit;
}
field = _PyLong_AsInt(args[0]);
if (field == -1 && PyErr_Occurred()) {
goto exit;
}
data = args[1];
return_value = _msi_SummaryInformation_SetProperty_impl(self, field, data);
exit:
return return_value;
}
PyDoc_STRVAR(_msi_SummaryInformation_Persist__doc__,
"Persist($self, /)\n"
"--\n"
"\n"
"Write the modified properties to the summary information stream.");
#define _MSI_SUMMARYINFORMATION_PERSIST_METHODDEF \
{"Persist", (PyCFunction)_msi_SummaryInformation_Persist, METH_NOARGS, _msi_SummaryInformation_Persist__doc__},
static PyObject *
_msi_SummaryInformation_Persist_impl(msiobj *self);
static PyObject *
_msi_SummaryInformation_Persist(msiobj *self, PyObject *Py_UNUSED(ignored))
{
return _msi_SummaryInformation_Persist_impl(self);
}
PyDoc_STRVAR(_msi_View_Execute__doc__,
"Execute($self, params, /)\n"
"--\n"
"\n"
"Execute the SQL query of the view.\n"
"\n"
" params\n"
" a record describing actual values of the parameter tokens\n"
" in the query or None");
#define _MSI_VIEW_EXECUTE_METHODDEF \
{"Execute", (PyCFunction)_msi_View_Execute, METH_O, _msi_View_Execute__doc__},
PyDoc_STRVAR(_msi_View_Fetch__doc__,
"Fetch($self, /)\n"
"--\n"
"\n"
"Return a result record of the query.");
#define _MSI_VIEW_FETCH_METHODDEF \
{"Fetch", (PyCFunction)_msi_View_Fetch, METH_NOARGS, _msi_View_Fetch__doc__},
static PyObject *
_msi_View_Fetch_impl(msiobj *self);
static PyObject *
_msi_View_Fetch(msiobj *self, PyObject *Py_UNUSED(ignored))
{
return _msi_View_Fetch_impl(self);
}
PyDoc_STRVAR(_msi_View_GetColumnInfo__doc__,
"GetColumnInfo($self, kind, /)\n"
"--\n"
"\n"
"Return a record describing the columns of the view.\n"
"\n"
" kind\n"
" MSICOLINFO_NAMES or MSICOLINFO_TYPES");
#define _MSI_VIEW_GETCOLUMNINFO_METHODDEF \
{"GetColumnInfo", (PyCFunction)_msi_View_GetColumnInfo, METH_O, _msi_View_GetColumnInfo__doc__},
static PyObject *
_msi_View_GetColumnInfo_impl(msiobj *self, int kind);
static PyObject *
_msi_View_GetColumnInfo(msiobj *self, PyObject *arg)
{
PyObject *return_value = NULL;
int kind;
kind = _PyLong_AsInt(arg);
if (kind == -1 && PyErr_Occurred()) {
goto exit;
}
return_value = _msi_View_GetColumnInfo_impl(self, kind);
exit:
return return_value;
}
PyDoc_STRVAR(_msi_View_Modify__doc__,
"Modify($self, kind, data, /)\n"
"--\n"
"\n"
"Modify the view.\n"
"\n"
" kind\n"
" one of the MSIMODIFY_* constants\n"
" data\n"
" a record describing the new data");
#define _MSI_VIEW_MODIFY_METHODDEF \
{"Modify", (PyCFunction)(void(*)(void))_msi_View_Modify, METH_FASTCALL, _msi_View_Modify__doc__},
static PyObject *
_msi_View_Modify_impl(msiobj *self, int kind, PyObject *data);
static PyObject *
_msi_View_Modify(msiobj *self, PyObject *const *args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int kind;
PyObject *data;
if (!_PyArg_CheckPositional("Modify", nargs, 2, 2)) {
goto exit;
}
kind = _PyLong_AsInt(args[0]);
if (kind == -1 && PyErr_Occurred()) {
goto exit;
}
data = args[1];
return_value = _msi_View_Modify_impl(self, kind, data);
exit:
return return_value;
}
PyDoc_STRVAR(_msi_View_Close__doc__,
"Close($self, /)\n"
"--\n"
"\n"
"Close the view.");
#define _MSI_VIEW_CLOSE_METHODDEF \
{"Close", (PyCFunction)_msi_View_Close, METH_NOARGS, _msi_View_Close__doc__},
static PyObject *
_msi_View_Close_impl(msiobj *self);
static PyObject *
_msi_View_Close(msiobj *self, PyObject *Py_UNUSED(ignored))
{
return _msi_View_Close_impl(self);
}
PyDoc_STRVAR(_msi_Database_OpenView__doc__,
"OpenView($self, sql, /)\n"
"--\n"
"\n"
"Return a view object.\n"
"\n"
" sql\n"
" the SQL statement to execute");
#define _MSI_DATABASE_OPENVIEW_METHODDEF \
{"OpenView", (PyCFunction)_msi_Database_OpenView, METH_O, _msi_Database_OpenView__doc__},
static PyObject *
_msi_Database_OpenView_impl(msiobj *self, const Py_UNICODE *sql);
static PyObject *
_msi_Database_OpenView(msiobj *self, PyObject *arg)
{
PyObject *return_value = NULL;
const Py_UNICODE *sql;
if (!PyUnicode_Check(arg)) {
_PyArg_BadArgument("OpenView", "argument", "str", arg);
goto exit;
}
#if USE_UNICODE_WCHAR_CACHE
sql = _PyUnicode_AsUnicode(arg);
#else /* USE_UNICODE_WCHAR_CACHE */
sql = PyUnicode_AsWideCharString(arg, NULL);
#endif /* USE_UNICODE_WCHAR_CACHE */
if (sql == NULL) {
goto exit;
}
return_value = _msi_Database_OpenView_impl(self, sql);
exit:
/* Cleanup for sql */
#if !USE_UNICODE_WCHAR_CACHE
PyMem_Free((void *)sql);
#endif /* USE_UNICODE_WCHAR_CACHE */
return return_value;
}
PyDoc_STRVAR(_msi_Database_Commit__doc__,
"Commit($self, /)\n"
"--\n"
"\n"
"Commit the changes pending in the current transaction.");
#define _MSI_DATABASE_COMMIT_METHODDEF \
{"Commit", (PyCFunction)_msi_Database_Commit, METH_NOARGS, _msi_Database_Commit__doc__},
static PyObject *
_msi_Database_Commit_impl(msiobj *self);
static PyObject *
_msi_Database_Commit(msiobj *self, PyObject *Py_UNUSED(ignored))
{
return _msi_Database_Commit_impl(self);
}
PyDoc_STRVAR(_msi_Database_GetSummaryInformation__doc__,
"GetSummaryInformation($self, count, /)\n"
"--\n"
"\n"
"Return a new summary information object.\n"
"\n"
" count\n"
" the maximum number of updated values");
#define _MSI_DATABASE_GETSUMMARYINFORMATION_METHODDEF \
{"GetSummaryInformation", (PyCFunction)_msi_Database_GetSummaryInformation, METH_O, _msi_Database_GetSummaryInformation__doc__},
static PyObject *
_msi_Database_GetSummaryInformation_impl(msiobj *self, int count);
static PyObject *
_msi_Database_GetSummaryInformation(msiobj *self, PyObject *arg)
{
PyObject *return_value = NULL;
int count;
count = _PyLong_AsInt(arg);
if (count == -1 && PyErr_Occurred()) {
goto exit;
}
return_value = _msi_Database_GetSummaryInformation_impl(self, count);
exit:
return return_value;
}
PyDoc_STRVAR(_msi_OpenDatabase__doc__,
"OpenDatabase($module, path, persist, /)\n"
"--\n"
"\n"
"Return a new database object.\n"
"\n"
" path\n"
" the file name of the MSI file\n"
" persist\n"
" the persistence mode");
#define _MSI_OPENDATABASE_METHODDEF \
{"OpenDatabase", (PyCFunction)(void(*)(void))_msi_OpenDatabase, METH_FASTCALL, _msi_OpenDatabase__doc__},
static PyObject *
_msi_OpenDatabase_impl(PyObject *module, const Py_UNICODE *path, int persist);
static PyObject *
_msi_OpenDatabase(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
const Py_UNICODE *path;
int persist;
if (!_PyArg_CheckPositional("OpenDatabase", nargs, 2, 2)) {
goto exit;
}
if (!PyUnicode_Check(args[0])) {
_PyArg_BadArgument("OpenDatabase", "argument 1", "str", args[0]);
goto exit;
}
#if USE_UNICODE_WCHAR_CACHE
path = _PyUnicode_AsUnicode(args[0]);
#else /* USE_UNICODE_WCHAR_CACHE */
path = PyUnicode_AsWideCharString(args[0], NULL);
#endif /* USE_UNICODE_WCHAR_CACHE */
if (path == NULL) {
goto exit;
}
persist = _PyLong_AsInt(args[1]);
if (persist == -1 && PyErr_Occurred()) {
goto exit;
}
return_value = _msi_OpenDatabase_impl(module, path, persist);
exit:
/* Cleanup for path */
#if !USE_UNICODE_WCHAR_CACHE
PyMem_Free((void *)path);
#endif /* USE_UNICODE_WCHAR_CACHE */
return return_value;
}
PyDoc_STRVAR(_msi_CreateRecord__doc__,
"CreateRecord($module, count, /)\n"
"--\n"
"\n"
"Return a new record object.\n"
"\n"
" count\n"
" the number of fields of the record");
#define _MSI_CREATERECORD_METHODDEF \
{"CreateRecord", (PyCFunction)_msi_CreateRecord, METH_O, _msi_CreateRecord__doc__},
static PyObject *
_msi_CreateRecord_impl(PyObject *module, int count);
static PyObject *
_msi_CreateRecord(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int count;
count = _PyLong_AsInt(arg);
if (count == -1 && PyErr_Occurred()) {
goto exit;
}
return_value = _msi_CreateRecord_impl(module, count);
exit:
return return_value;
}
/*[clinic end generated code: output=49debf733ee5cab2 input=a9049054013a1b77]*/
|