X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2Fpython%2Fnotmuch%2Fglobals.py;h=11e328b76c6e8fbb94997ddbf19bcb0d47b41dd2;hp=b33e10d39a8d8c30ec65124bd2a44ce60740b377;hb=HEAD;hpb=6c6b0f13ffc3988b0f31774b33b8215be02abaa9 diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py index b33e10d3..11e328b7 100644 --- a/bindings/python/notmuch/globals.py +++ b/bindings/python/notmuch/globals.py @@ -75,6 +75,11 @@ class NotmuchMessageS(Structure): NotmuchMessageP = POINTER(NotmuchMessageS) +class NotmuchMessagePropertiesS(Structure): + pass +NotmuchMessagePropertiesP = POINTER(NotmuchMessagePropertiesS) + + class NotmuchTagsS(Structure): pass NotmuchTagsP = POINTER(NotmuchTagsS) @@ -93,3 +98,8 @@ NotmuchFilenamesP = POINTER(NotmuchFilenamesS) class NotmuchConfigListS(Structure): pass NotmuchConfigListP = POINTER(NotmuchConfigListS) + + +class NotmuchIndexoptsS(Structure): + pass +NotmuchIndexoptsP = POINTER(NotmuchIndexoptsS)