Lines Matching refs:field
452 field: unsigned_int(bitwise=True)
455 Return the value of field as an integer where possible.
459 _msi_Record_GetInteger_impl(msiobj *self, unsigned int field)
464 status = MsiRecordGetInteger(self->h, field);
466 PyErr_SetString(MSIError, "could not convert record field to integer");
474 field: unsigned_int(bitwise=True)
477 Return the value of field as a string where possible.
481 _msi_Record_GetString_impl(msiobj *self, unsigned int field)
490 status = MsiRecordGetStringW(self->h, field, res, &size);
495 status = MsiRecordGetStringW(self->h, field, res, &size);
524 field: int
528 Set field to a string value.
532 _msi_Record_SetString_impl(msiobj *self, int field, const Py_UNICODE *value)
537 if ((status = MsiRecordSetStringW(self->h, field, value)) != ERROR_SUCCESS)
545 field: int
549 Set field to the contents of the file named value.
553 _msi_Record_SetStream_impl(msiobj *self, int field, const Py_UNICODE *value)
558 if ((status = MsiRecordSetStreamW(self->h, field, value)) != ERROR_SUCCESS)
566 field: int
570 Set field to an integer value.
574 _msi_Record_SetInteger_impl(msiobj *self, int field, int value)
579 if ((status = MsiRecordSetInteger(self->h, field, value)) != ERROR_SUCCESS)
660 field: int
668 _msi_SummaryInformation_GetProperty_impl(msiobj *self, int field)
680 status = MsiSummaryInfoGetProperty(self->h, field, &type, &ival,
688 status = MsiSummaryInfoGetProperty(self->h, field, &type, &ival,
743 field: int
753 _msi_SummaryInformation_SetProperty_impl(msiobj *self, int field,
768 status = MsiSummaryInfoSetPropertyW(self->h, field, VT_LPSTR,
778 status = MsiSummaryInfoSetProperty(self->h, field, VT_I4,