slidge-whatsapp 0.2.2__cp312-cp312-manylinux_2_36_aarch64.whl → 0.2.5__cp312-cp312-manylinux_2_36_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of slidge-whatsapp might be problematic. Click here for more details.
- slidge_whatsapp/__init__.py +26 -8
- slidge_whatsapp/__main__.py +3 -0
- slidge_whatsapp/contact.py +1 -1
- slidge_whatsapp/event.go +56 -0
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +188 -151
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +157 -132
- slidge_whatsapp/generated/go.py +1 -1
- slidge_whatsapp/generated/whatsapp.c +1624 -1153
- slidge_whatsapp/generated/whatsapp.go +1095 -850
- slidge_whatsapp/generated/whatsapp.py +1148 -828
- slidge_whatsapp/generated/whatsapp_go.h +188 -151
- slidge_whatsapp/go.mod +11 -9
- slidge_whatsapp/go.sum +16 -16
- slidge_whatsapp/group.py +7 -2
- slidge_whatsapp/media/__init__.py +0 -0
- slidge_whatsapp/media/media.go +8 -3
- slidge_whatsapp/session.go +4 -5
- slidge_whatsapp/session.py +53 -31
- slidge_whatsapp/vendor/filippo.io/edwards25519/LICENSE +27 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/README.md +14 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/doc.go +20 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/edwards25519.go +427 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/extra.go +349 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe.go +420 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64.go +16 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64.s +379 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64_noasm.go +12 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64.go +16 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64.s +42 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64_noasm.go +12 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_extra.go +50 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_generic.go +266 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/scalar.go +343 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/scalar_fiat.go +1147 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/scalarmult.go +214 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/tables.go +129 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/.gitignore +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/LICENSE +201 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/README.md +97 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_amd64.h +99 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_arm64.h +39 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/cgo.go +19 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlerror.go +17 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +99 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_android.go +34 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_darwin.go +24 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_freebsd.go +14 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_linux.go +16 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_freebsd.go +11 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_linux.go +19 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_playground.go +24 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_stubs.s +26 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +436 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/go_runtime.go +13 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/dlfcn_cgo_unix.go +56 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/empty.go +6 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/syscall_cgo_unix.go +55 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_amd64.h +99 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_arm64.h +39 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_amd64.s +39 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_arm64.s +36 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/callbacks.go +93 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/doc.go +32 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/freebsd.go +27 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_darwin_amd64.go +73 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_darwin_arm64.go +88 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_freebsd_amd64.go +95 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_freebsd_arm64.go +98 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +69 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_amd64.go +95 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_arm64.go +98 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_setenv.go +18 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_util.go +37 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/iscgo.go +19 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo.go +39 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_darwin.go +22 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_freebsd.go +16 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_linux.go +16 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/setenv.go +19 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +201 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_darwin.go +29 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_freebsd.go +29 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_linux.go +29 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_amd64.s +104 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_arm64.s +72 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_stubs.s +90 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/strings/strings.go +40 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/is_ios.go +13 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/nocgo.go +25 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +260 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +274 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_other.go +16 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_amd64.s +164 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_arm64.s +92 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_arm64.s +70 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall.go +53 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_cgo_linux.go +21 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_sysv.go +223 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_windows.go +46 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_amd64.s +2014 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_arm64.s +4014 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/.gitattributes +6 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/AUTHORS +1 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/COPYING +661 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/README.md +71 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +66 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +596 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_cgo.go +18 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_extlib.go +11 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_extlib_pkgconfig.go +9 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_content_types.go +383 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +1098 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_vendor.go +9 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/archive.h +444 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/band-writer.h +117 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/bidi.h +90 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/bitmap.h +175 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/buffer.h +250 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/color.h +427 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/compress.h +88 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/compressed-buffer.h +185 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/config.h +222 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/context.h +1006 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/crypt.h +270 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/device.h +654 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/display-list.h +142 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/document.h +1108 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/export.h +52 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/filter.h +263 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/font.h +815 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/geometry.h +818 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/getopt.h +128 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/glyph-cache.h +96 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/glyph.h +81 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/hash.h +126 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/heap-imp.h +163 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/heap.h +140 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/image.h +443 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/link.h +130 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/log.h +61 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/outline.h +228 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/output-svg.h +64 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/output.h +415 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/path.h +447 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/pixmap.h +501 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/pool.h +68 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/separation.h +138 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/shade.h +233 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/store.h +456 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/story-writer.h +209 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/story.h +232 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/stream.h +646 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/string-util.h +286 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/structured-text.h +365 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/system.h +459 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/text.h +209 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/track-usage.h +57 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/transition.h +76 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/tree.h +62 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/types.h +41 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/util.h +151 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/vendor.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/version.h +31 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/write-pixmap.h +499 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/writer.h +266 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/xml.h +397 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz.h +97 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/memento.h +423 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/vendor.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/libmupdf_linux_arm64.a +0 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/libmupdfthird_linux_arm64.a +0 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/vendor.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +23 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +22 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +22 -0
- slidge_whatsapp/vendor/github.com/go-python/gopy/LICENSE +23 -0
- slidge_whatsapp/vendor/github.com/go-python/gopy/gopyh/handle.go +210 -0
- slidge_whatsapp/vendor/github.com/google/uuid/CHANGELOG.md +41 -0
- slidge_whatsapp/vendor/github.com/google/uuid/CONTRIBUTING.md +26 -0
- slidge_whatsapp/vendor/github.com/google/uuid/CONTRIBUTORS +9 -0
- slidge_whatsapp/vendor/github.com/google/uuid/LICENSE +27 -0
- slidge_whatsapp/vendor/github.com/google/uuid/README.md +21 -0
- slidge_whatsapp/vendor/github.com/google/uuid/dce.go +80 -0
- slidge_whatsapp/vendor/github.com/google/uuid/doc.go +12 -0
- slidge_whatsapp/vendor/github.com/google/uuid/hash.go +59 -0
- slidge_whatsapp/vendor/github.com/google/uuid/marshal.go +38 -0
- slidge_whatsapp/vendor/github.com/google/uuid/node.go +90 -0
- slidge_whatsapp/vendor/github.com/google/uuid/node_js.go +12 -0
- slidge_whatsapp/vendor/github.com/google/uuid/node_net.go +33 -0
- slidge_whatsapp/vendor/github.com/google/uuid/null.go +118 -0
- slidge_whatsapp/vendor/github.com/google/uuid/sql.go +59 -0
- slidge_whatsapp/vendor/github.com/google/uuid/time.go +134 -0
- slidge_whatsapp/vendor/github.com/google/uuid/util.go +43 -0
- slidge_whatsapp/vendor/github.com/google/uuid/uuid.go +365 -0
- slidge_whatsapp/vendor/github.com/google/uuid/version1.go +44 -0
- slidge_whatsapp/vendor/github.com/google/uuid/version4.go +76 -0
- slidge_whatsapp/vendor/github.com/google/uuid/version6.go +56 -0
- slidge_whatsapp/vendor/github.com/google/uuid/version7.go +104 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/.gitignore +25 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/AUTHORS +9 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/LICENSE +22 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/README.md +33 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/client.go +434 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/compression.go +148 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/conn.go +1238 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/doc.go +227 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/join.go +42 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/json.go +60 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/mask.go +55 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/mask_safe.go +16 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/prepared.go +102 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/proxy.go +77 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/server.go +365 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake.go +21 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake_116.go +21 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/util.go +298 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/x_net_proxy.go +473 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/.editorconfig +12 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/.gitignore +2 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/.travis.yml +16 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/History.md +163 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/LICENSE +24 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/README.md +294 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/filetype.go +102 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/kind.go +91 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/match.go +90 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/application.go +43 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/archive.go +211 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/audio.go +85 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/document.go +197 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/font.go +45 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/image.go +143 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/isobmff/isobmff.go +37 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/matchers.go +51 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/video.go +145 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/types/defaults.go +4 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/types/mime.go +14 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/types/split.go +11 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/types/type.go +16 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/types/types.go +23 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/version.go +4 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +21 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +56 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +147 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +162 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +7 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +7 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +272 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +46 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +55 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib.go +82 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_unix.go +63 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_windows.go +68 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_amd64.go +5 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_arm64.go +5 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_darwin_arm64.go +5 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/types.go +34 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/README.md +48 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/colorable_others.go +38 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/colorable_windows.go +1047 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/go.test.sh +12 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/noncolorable.go +57 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/LICENSE +9 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/README.md +50 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/doc.go +2 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/go.test.sh +12 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_bsd.go +20 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_others.go +17 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_plan9.go +23 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_solaris.go +21 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_tcgets.go +20 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_windows.go +125 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/.codecov.yml +4 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/.gitignore +14 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +603 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/backup.go +85 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +411 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/convert.go +299 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/doc.go +134 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/error.go +150 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +258039 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +13526 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +2281 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_context.go +103 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_func_crypt.go +120 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_go18.go +54 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go +23 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension.go +85 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension_omit.go +25 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_allow_uri_authority.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_app_armor.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_column_metadata.go +22 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_foreign_keys.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_fts5.go +15 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_icu.go +20 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_introspect.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_math_functions.go +15 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_os_trace.go +15 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate.go +21 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate_hook.go +113 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate_omit.go +22 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete_fast.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_serialize.go +83 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_serialize_omit.go +21 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_stat4.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c +85 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +93 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +295 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth_omit.go +158 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_full.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_incr.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vtable.go +721 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_other.go +18 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_solaris.go +15 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_trace.go +288 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_type.go +108 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_usleep_windows.go +42 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_windows.go +18 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +728 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/static_mock.go +38 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/.gitignore +25 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/CNAME +1 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +782 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/_config.yml +1 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/array.go +240 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +520 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/context.go +480 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/ctx.go +52 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/encoder.go +56 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/encoder_cbor.go +45 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/encoder_json.go +51 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/event.go +830 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/example.jsonl +7 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/fields.go +292 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/globals.go +190 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/go112.go +7 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/hook.go +64 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/README.md +56 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/base.go +19 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/cbor.go +102 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/decode_stream.go +654 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/string.go +117 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/time.go +93 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/types.go +486 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/base.go +19 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/bytes.go +85 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/string.go +149 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/time.go +113 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/types.go +435 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/log.go +518 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/not_go112.go +5 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/pretty.png +0 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/sampler.go +134 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/syslog.go +89 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +346 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/LICENSE +674 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/cipher/Cbc.go +101 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/cipher/Cipher.go +105 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/Curve.go +109 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/DjbECPublicKey.go +29 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/DkbECPrivateKey.go +29 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECKeyPair.go +27 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECPrivateKey.go +7 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECPublicKey.go +11 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/SignCurve25519.go +97 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupCipher.go +141 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +84 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/SenderChainKey.go +68 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/SenderMessageKey.go +89 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/Doc.go +2 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/SenderKeyRecord.go +149 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/SenderKeyState.go +186 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/SenderKeyStore.go +11 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/kdf/HKDF.go +47 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +127 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +47 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKeyPair.go +39 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/message/MessageKey.go +91 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/prekey/PreKeyBundle.go +86 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/root/RootKey.go +66 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/session/DerivedSecrets.go +29 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/session/Pair.go +43 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/DefaultLogger.go +85 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/Logger.go +89 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/CiphertextMessage.go +19 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/PreKeySignalMessage.go +152 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyDistributionMessage.go +147 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyMessage.go +168 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyName.go +25 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SignalMessage.go +226 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SignalProtocolAddress.go +38 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/Ratchet.go +197 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/ReceiverParameters.go +106 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/SenderParameters.go +106 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/SymmetricParameters.go +18 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.pb.go +245 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.proto +14 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/JSONSerializer.go +303 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.pb.go +1500 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.proto +114 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/ProtoBufferSerializer.go +262 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/Serializer.go +31 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.pb.go +640 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.proto +45 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +275 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +375 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/signalerror/errors.go +37 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/ChainState.go +157 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PendingKeyExchangeState.go +91 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PendingPreKeyState.go +62 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PreKeyRecord.go +90 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SessionRecord.go +197 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SessionState.go +531 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SignedPreKeyRecord.go +112 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/UnacknowledgedPreKey.go +69 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/IdentityKeyStore.go +29 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +17 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignalProtocolStore.go +15 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignedPreKeyStore.go +24 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/util/bytehelper/ByteHelper.go +97 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/util/errorhelper/ErrorHelper.go +40 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/util/keyhelper/KeyHelper.go +95 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/util/medium/Medium.go +4 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/util/optional/Integer.go +17 -0
- slidge_whatsapp/vendor/go.mau.fi/util/LICENSE +373 -0
- slidge_whatsapp/vendor/go.mau.fi/util/fallocate/doc.go +9 -0
- slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_darwin.go +29 -0
- slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_linux.go +24 -0
- slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_unknown.go +17 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/duration.go +155 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/helpers.go +59 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/integer.go +170 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/string.go +95 -0
- slidge_whatsapp/vendor/go.mau.fi/util/random/bytes.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/util/random/string.go +87 -0
- slidge_whatsapp/vendor/go.mau.fi/util/retryafter/retryafter.go +53 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.editorconfig +13 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.gitattributes +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +31 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/LICENSE +374 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/README.md +35 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +311 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +322 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/errors.go +19 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +97 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +137 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/lthash/lthash.go +58 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +407 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +99 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/attrs.go +218 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/decoder.go +406 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +308 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/errors.go +12 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/node.go +139 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/token/token.go +94 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/unpack.go +31 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/xml.go +108 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +142 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +112 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +851 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +196 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +201 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +370 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +260 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +930 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/handshake.go +165 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +660 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +84 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +96 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +184 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +683 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +287 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +376 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +421 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +242 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +248 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +251 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +138 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +171 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/.gitignore +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/armadilloutil/decode.go +32 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +36 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +485 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.proto +43 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +2803 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +258 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +874 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +139 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +392 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.raw +23 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.proto +34 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +134 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.raw +7 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.proto +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +456 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +41 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/legacy.go +11 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.go +892 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.proto +100 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +2653 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.proto +233 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/extra.go +82 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +185 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +13 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +22080 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +2299 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/legacy.go +31 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +2047 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +217 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/legacy.go +11 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +1977 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +190 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +249 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +20 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +1016 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +88 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/extra.go +41 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +808 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.proto +75 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +19 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +702 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.proto +57 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +805 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.proto +72 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/legacy.go +31 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +4675 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +461 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +410 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.proto +33 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +802 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.proto +72 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +2021 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +245 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +3895 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +577 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/legacy.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/push.go +110 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/qrchan.go +180 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +238 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +225 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +440 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +1128 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +646 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/constants.go +43 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/framesocket.go +235 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisehandshake.go +124 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisesocket.go +108 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +185 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +214 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +195 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +270 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +773 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrade.go +296 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +194 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/appstate.go +185 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/call.go +77 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +600 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +155 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +263 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +98 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/newsletter.go +201 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/presence.go +78 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +195 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +63 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +251 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +864 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/cbcutil/cbc.go +217 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/gcmutil/gcm.go +41 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/hkdfutil/hkdf.go +28 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/keys/keypair.go +68 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/log/log.go +83 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/log/zerolog.go +38 -0
- slidge_whatsapp/vendor/golang.org/x/crypto/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/crypto/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +90 -0
- slidge_whatsapp/vendor/golang.org/x/crypto/hkdf/hkdf.go +95 -0
- slidge_whatsapp/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go +77 -0
- slidge_whatsapp/vendor/golang.org/x/image/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/image/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/image/draw/draw.go +67 -0
- slidge_whatsapp/vendor/golang.org/x/image/draw/impl.go +8426 -0
- slidge_whatsapp/vendor/golang.org/x/image/draw/scale.go +525 -0
- slidge_whatsapp/vendor/golang.org/x/image/math/f64/f64.go +37 -0
- slidge_whatsapp/vendor/golang.org/x/image/riff/riff.go +193 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/decode.go +403 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/filter.go +273 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/idct.go +98 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/partition.go +129 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/pred.go +201 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/predfunc.go +553 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/quant.go +98 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/reconstruct.go +442 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/token.go +381 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8l/decode.go +603 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8l/huffman.go +245 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8l/transform.go +299 -0
- slidge_whatsapp/vendor/golang.org/x/image/webp/decode.go +276 -0
- slidge_whatsapp/vendor/golang.org/x/image/webp/doc.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/net/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/net/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/socks/client.go +168 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/socks/socks.go +317 -0
- slidge_whatsapp/vendor/golang.org/x/net/proxy/dial.go +54 -0
- slidge_whatsapp/vendor/golang.org/x/net/proxy/direct.go +31 -0
- slidge_whatsapp/vendor/golang.org/x/net/proxy/per_host.go +153 -0
- slidge_whatsapp/vendor/golang.org/x/net/proxy/proxy.go +149 -0
- slidge_whatsapp/vendor/golang.org/x/net/proxy/socks5.go +42 -0
- slidge_whatsapp/vendor/golang.org/x/sys/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/.gitignore +2 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/README.md +184 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +86 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/aliases.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s +17 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_386.s +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_arm.s +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s +29 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_386.s +65 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_amd64.s +57 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_arm.s +56 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_arm64.s +50 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_loong64.s +51 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s +54 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s +52 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s +42 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s +47 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_s390x.s +54 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s +29 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s +17 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_zos_s390x.s +382 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/auxv.go +36 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/auxv_unsupported.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/bluetooth_linux.go +36 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/bpxsvc_zos.go +657 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/bpxsvc_zos.s +192 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/cap_freebsd.go +195 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/constants.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_aix_ppc.go +26 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go +28 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_darwin.go +24 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_dragonfly.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_freebsd.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_linux.go +42 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_netbsd.go +29 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_openbsd.go +29 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_zos.go +28 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dirent.go +102 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/endian_big.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/endian_little.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/env_unix.go +31 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl.go +36 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl_darwin.go +24 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fdset.go +29 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo.go +59 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo_c.c +44 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ifreq_linux.go +141 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_linux.go +334 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_signed.go +69 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_unsigned.go +69 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_zos.go +71 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkall.sh +249 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +805 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mmap_nomremap.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mremap.go +57 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/pagesize_unix.go +15 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/pledge_openbsd.go +111 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ptrace_darwin.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ptrace_ios.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/race.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/race0.go +25 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/readdirent_getdents.go +12 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go +19 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_linux.go +85 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_unix.go +106 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go +46 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_zos.go +58 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s +75 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall.go +86 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix.go +582 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go +52 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go +83 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_bsd.go +609 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +707 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go +50 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go +50 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go +26 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_dragonfly.go +359 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go +56 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd.go +455 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go +64 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go +64 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go +60 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go +60 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go +60 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_hurd.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_hurd_386.go +28 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_illumos.go +78 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +2657 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_386.go +314 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_alarm.go +12 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go +145 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go +12 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_arm.go +216 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go +186 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc.go +14 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go +218 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go +188 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go +174 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go +204 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go +115 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go +191 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go +296 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go +112 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd.go +371 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go +37 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go +37 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go +37 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go +37 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd.go +342 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go +26 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go +39 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1191 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix.go +615 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix_gc.go +14 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go +22 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go +3213 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_linux.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_unix.go +51 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/timestruct.go +76 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/unveil_openbsd.go +51 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/vgetrandom_linux.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/xattr_bsd.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go +1384 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go +1385 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go +1922 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go +1922 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go +1737 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go +2042 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go +2039 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go +2033 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go +2033 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go +2147 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +3752 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +873 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +873 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +878 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +875 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +865 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +879 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +879 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +879 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +879 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +931 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +935 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +935 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +862 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +934 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +977 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go +1779 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go +1769 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go +1758 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go +1769 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go +1905 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go +1905 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go +1905 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go +1905 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go +1905 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go +1904 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go +1903 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go +1556 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go +990 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go +40 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go +17 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go +49 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go +49 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go +79 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s +364 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go +1461 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go +1420 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go +1188 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go +1069 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +2644 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +779 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +2644 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +779 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go +1666 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go +1886 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go +1886 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go +1886 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go +1886 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go +1886 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go +101 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux.go +2240 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go +486 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go +653 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go +601 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go +552 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go +486 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go +653 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go +647 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go +636 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go +653 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go +658 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go +704 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go +704 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go +548 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go +495 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go +648 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go +1848 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go +1848 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go +1848 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go +1848 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s +838 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +2217 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go +3458 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go +281 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go +439 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go +437 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go +316 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go +393 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go +393 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go +393 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go +393 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go +393 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +465 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +388 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +429 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +332 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +328 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +449 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +379 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +379 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +449 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +456 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +428 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +428 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +333 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +394 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +407 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go +274 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go +274 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go +274 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go +274 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go +219 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go +219 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go +219 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go +218 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go +221 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go +217 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go +218 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go +2852 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go +353 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go +357 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go +878 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go +878 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go +473 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go +651 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go +656 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go +642 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go +636 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go +638 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +6178 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +689 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +703 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +683 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +682 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +683 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +688 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +685 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +685 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +688 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +696 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +691 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +691 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +770 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +705 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +686 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go +585 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go +593 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go +590 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go +593 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go +568 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go +568 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go +575 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go +568 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go +568 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go +570 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go +570 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go +516 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go +552 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/aliases.go +12 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/dll_windows.go +415 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/env_windows.go +57 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/eventlog.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/exec_windows.go +248 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/memory_windows.go +48 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/mkerrors.bash +70 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/mkknownfolderids.bash +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/mksyscall.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/race.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/race0.go +25 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +1458 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/service.go +257 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/setupapi_windows.go +1425 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/str.go +22 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall.go +104 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +1932 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +3603 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_386.go +35 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_amd64.go +34 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_arm.go +35 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_arm64.go +34 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zerrors_windows.go +9468 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go +149 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +4686 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/LICENSE +27 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/PATENTS +22 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/decode.go +767 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/doc.go +7 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/encode.go +380 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +547 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go +414 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/descopts/options.go +29 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/detrand/rand.go +69 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/defaults.go +12 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go +213 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go +242 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go +201 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go +686 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go +211 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go +161 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go +373 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go +29 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/encode.go +272 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/errors/errors.go +104 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/build.go +157 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc.go +748 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go +560 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go +694 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go +457 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go +367 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +164 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go +110 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filetype/build.go +296 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/flags.go +24 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go +10 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go +10 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/any_gen.go +34 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +106 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +1270 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/doc.go +11 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/duration_gen.go +34 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/empty_gen.go +19 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go +31 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/go_features_gen.go +70 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/goname.go +20 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/map_entry.go +16 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/name.go +12 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go +31 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/struct_gen.go +121 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go +34 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/type_gen.go +228 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/wrappers.go +13 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go +175 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/api_export.go +177 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/api_export_opaque.go +128 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/bitmap.go +34 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/bitmap_race.go +126 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/checkinit.go +174 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go +228 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_field.go +788 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_field_opaque.go +264 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_gen.go +5724 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_map.go +399 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message.go +230 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +153 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go +145 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go +557 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go +15 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert.go +495 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert_list.go +141 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert_map.go +121 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/decode.go +333 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/encode.go +315 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/enum.go +21 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/equal.go +224 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/extension.go +156 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/lazy.go +433 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go +219 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go +92 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go +177 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_file.go +81 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go +569 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/merge.go +203 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/merge_gen.go +209 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message.go +283 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +627 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque_gen.go +132 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go +462 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go +423 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field_gen.go +273 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go +271 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go +220 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe_opaque.go +42 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +142 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/validate.go +570 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/order/order.go +89 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/order/range.go +115 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/pragma/pragma.go +29 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/bufferreader.go +364 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/lazy.go +359 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/pointer_unsafe.go +17 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/set/ints.go +58 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings.go +196 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go120.go +94 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go121.go +73 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +79 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/checkinit.go +71 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/decode.go +307 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/decode_gen.go +603 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/doc.go +86 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/encode.go +355 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/encode_gen.go +97 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/equal.go +66 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/extension.go +166 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +139 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/messageset.go +98 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto.go +45 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto_methods.go +20 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto_reflect.go +20 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/reset.go +43 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/size.go +111 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/size_gen.go +55 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/wrapperopaque.go +80 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/wrappers.go +29 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go +88 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go +513 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go +129 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +573 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go +666 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value.go +285 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_equal.go +168 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go +438 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go120.go +98 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go121.go +86 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go +882 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go +15 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoiface/methods.go +202 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go +48 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go +60 -0
- slidge_whatsapp/vendor/modules.txt +173 -0
- slidge_whatsapp-0.2.5.dist-info/METADATA +63 -0
- slidge_whatsapp-0.2.5.dist-info/RECORD +1140 -0
- {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.dist-info}/WHEEL +1 -1
- slidge_whatsapp-0.2.2.dist-info/METADATA +0 -744
- slidge_whatsapp-0.2.2.dist-info/RECORD +0 -31
- {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.dist-info}/LICENSE +0 -0
- {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.dist-info}/entry_points.txt +0 -0
|
@@ -2582,6 +2582,115 @@ _wrap__whatsapp_Slice_whatsapp_Message_append(PyObject * PYBINDGEN_UNUSED(dummy)
|
|
|
2582
2582
|
PyObject * _wrap__whatsapp_Slice_whatsapp_Message_append(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2583
2583
|
|
|
2584
2584
|
|
|
2585
|
+
PyObject *
|
|
2586
|
+
_wrap__whatsapp_Slice_whatsapp_PollOption_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
2587
|
+
{
|
|
2588
|
+
PyObject *py_retval;
|
|
2589
|
+
int64_t retval;
|
|
2590
|
+
|
|
2591
|
+
retval = Slice_whatsapp_PollOption_CTor();
|
|
2592
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
2593
|
+
return py_retval;
|
|
2594
|
+
}
|
|
2595
|
+
PyObject * _wrap__whatsapp_Slice_whatsapp_PollOption_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
2596
|
+
|
|
2597
|
+
|
|
2598
|
+
PyObject *
|
|
2599
|
+
_wrap__whatsapp_Slice_whatsapp_PollOption_len(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2600
|
+
{
|
|
2601
|
+
PyObject *py_retval;
|
|
2602
|
+
int retval;
|
|
2603
|
+
int64_t handle;
|
|
2604
|
+
const char *keywords[] = {"handle", NULL};
|
|
2605
|
+
|
|
2606
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
2607
|
+
return NULL;
|
|
2608
|
+
}
|
|
2609
|
+
retval = Slice_whatsapp_PollOption_len(handle);
|
|
2610
|
+
py_retval = Py_BuildValue((char *) "i", retval);
|
|
2611
|
+
return py_retval;
|
|
2612
|
+
}
|
|
2613
|
+
PyObject * _wrap__whatsapp_Slice_whatsapp_PollOption_len(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2614
|
+
|
|
2615
|
+
|
|
2616
|
+
PyObject *
|
|
2617
|
+
_wrap__whatsapp_Slice_whatsapp_PollOption_elem(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2618
|
+
{
|
|
2619
|
+
PyObject *py_retval;
|
|
2620
|
+
int64_t retval;
|
|
2621
|
+
int64_t handle;
|
|
2622
|
+
int idx;
|
|
2623
|
+
const char *keywords[] = {"handle", "idx", NULL};
|
|
2624
|
+
|
|
2625
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Li", (char **) keywords, &handle, &idx)) {
|
|
2626
|
+
return NULL;
|
|
2627
|
+
}
|
|
2628
|
+
retval = Slice_whatsapp_PollOption_elem(handle, idx);
|
|
2629
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
2630
|
+
return py_retval;
|
|
2631
|
+
}
|
|
2632
|
+
PyObject * _wrap__whatsapp_Slice_whatsapp_PollOption_elem(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2633
|
+
|
|
2634
|
+
|
|
2635
|
+
PyObject *
|
|
2636
|
+
_wrap__whatsapp_Slice_whatsapp_PollOption_subslice(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2637
|
+
{
|
|
2638
|
+
PyObject *py_retval;
|
|
2639
|
+
int64_t retval;
|
|
2640
|
+
int64_t handle;
|
|
2641
|
+
int st;
|
|
2642
|
+
int ed;
|
|
2643
|
+
const char *keywords[] = {"handle", "st", "ed", NULL};
|
|
2644
|
+
|
|
2645
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Lii", (char **) keywords, &handle, &st, &ed)) {
|
|
2646
|
+
return NULL;
|
|
2647
|
+
}
|
|
2648
|
+
retval = Slice_whatsapp_PollOption_subslice(handle, st, ed);
|
|
2649
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
2650
|
+
return py_retval;
|
|
2651
|
+
}
|
|
2652
|
+
PyObject * _wrap__whatsapp_Slice_whatsapp_PollOption_subslice(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2653
|
+
|
|
2654
|
+
|
|
2655
|
+
PyObject *
|
|
2656
|
+
_wrap__whatsapp_Slice_whatsapp_PollOption_set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2657
|
+
{
|
|
2658
|
+
PyObject *py_retval;
|
|
2659
|
+
int64_t handle;
|
|
2660
|
+
int idx;
|
|
2661
|
+
int64_t value;
|
|
2662
|
+
const char *keywords[] = {"handle", "idx", "value", NULL};
|
|
2663
|
+
|
|
2664
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LiL", (char **) keywords, &handle, &idx, &value)) {
|
|
2665
|
+
return NULL;
|
|
2666
|
+
}
|
|
2667
|
+
Slice_whatsapp_PollOption_set(handle, idx, value);
|
|
2668
|
+
Py_INCREF(Py_None);
|
|
2669
|
+
py_retval = Py_None;
|
|
2670
|
+
return py_retval;
|
|
2671
|
+
}
|
|
2672
|
+
PyObject * _wrap__whatsapp_Slice_whatsapp_PollOption_set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2673
|
+
|
|
2674
|
+
|
|
2675
|
+
PyObject *
|
|
2676
|
+
_wrap__whatsapp_Slice_whatsapp_PollOption_append(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2677
|
+
{
|
|
2678
|
+
PyObject *py_retval;
|
|
2679
|
+
int64_t handle;
|
|
2680
|
+
int64_t value;
|
|
2681
|
+
const char *keywords[] = {"handle", "value", NULL};
|
|
2682
|
+
|
|
2683
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &value)) {
|
|
2684
|
+
return NULL;
|
|
2685
|
+
}
|
|
2686
|
+
Slice_whatsapp_PollOption_append(handle, value);
|
|
2687
|
+
Py_INCREF(Py_None);
|
|
2688
|
+
py_retval = Py_None;
|
|
2689
|
+
return py_retval;
|
|
2690
|
+
}
|
|
2691
|
+
PyObject * _wrap__whatsapp_Slice_whatsapp_PollOption_append(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2692
|
+
|
|
2693
|
+
|
|
2585
2694
|
PyObject *
|
|
2586
2695
|
_wrap__whatsapp_Slice_whatsapp_Receipt_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
2587
2696
|
{
|
|
@@ -2816,128 +2925,131 @@ PyObject * _wrap__whatsapp_whatsapp_GroupSubject_SetByJID_Set(PyObject * PYBINDG
|
|
|
2816
2925
|
|
|
2817
2926
|
|
|
2818
2927
|
PyObject *
|
|
2819
|
-
|
|
2928
|
+
_wrap__whatsapp_whatsapp_Message_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
2820
2929
|
{
|
|
2821
2930
|
PyObject *py_retval;
|
|
2822
2931
|
int64_t retval;
|
|
2823
2932
|
|
|
2824
|
-
retval =
|
|
2933
|
+
retval = whatsapp_Message_CTor();
|
|
2825
2934
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
2826
2935
|
return py_retval;
|
|
2827
2936
|
}
|
|
2828
|
-
PyObject *
|
|
2937
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
2829
2938
|
|
|
2830
2939
|
|
|
2831
2940
|
PyObject *
|
|
2832
|
-
|
|
2941
|
+
_wrap__whatsapp_whatsapp_Message_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2833
2942
|
{
|
|
2834
2943
|
PyObject *py_retval;
|
|
2835
|
-
|
|
2944
|
+
int64_t retval;
|
|
2836
2945
|
int64_t handle;
|
|
2837
2946
|
const char *keywords[] = {"handle", NULL};
|
|
2838
2947
|
|
|
2839
2948
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
2840
2949
|
return NULL;
|
|
2841
2950
|
}
|
|
2842
|
-
retval =
|
|
2843
|
-
py_retval = Py_BuildValue((char *) "
|
|
2951
|
+
retval = whatsapp_Message_Kind_Get(handle);
|
|
2952
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
2844
2953
|
return py_retval;
|
|
2845
2954
|
}
|
|
2846
|
-
PyObject *
|
|
2955
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2847
2956
|
|
|
2848
2957
|
|
|
2849
2958
|
PyObject *
|
|
2850
|
-
|
|
2959
|
+
_wrap__whatsapp_whatsapp_Message_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2851
2960
|
{
|
|
2852
2961
|
PyObject *py_retval;
|
|
2853
2962
|
int64_t handle;
|
|
2854
|
-
|
|
2963
|
+
int64_t val;
|
|
2855
2964
|
const char *keywords[] = {"handle", "val", NULL};
|
|
2856
2965
|
|
|
2857
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
2966
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
2858
2967
|
return NULL;
|
|
2859
2968
|
}
|
|
2860
|
-
|
|
2969
|
+
whatsapp_Message_Kind_Set(handle, val);
|
|
2861
2970
|
Py_INCREF(Py_None);
|
|
2862
2971
|
py_retval = Py_None;
|
|
2863
2972
|
return py_retval;
|
|
2864
2973
|
}
|
|
2865
|
-
PyObject *
|
|
2974
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2866
2975
|
|
|
2867
2976
|
|
|
2868
2977
|
PyObject *
|
|
2869
|
-
|
|
2978
|
+
_wrap__whatsapp_whatsapp_Message_ID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2870
2979
|
{
|
|
2871
2980
|
PyObject *py_retval;
|
|
2872
|
-
|
|
2873
|
-
int64_t
|
|
2874
|
-
const char *keywords[] = {"
|
|
2981
|
+
char *retval;
|
|
2982
|
+
int64_t handle;
|
|
2983
|
+
const char *keywords[] = {"handle", NULL};
|
|
2875
2984
|
|
|
2876
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
|
2877
|
-
return NULL;
|
|
2878
|
-
}
|
|
2879
|
-
retval = whatsapp_LinkedDevice_JID(_handle);
|
|
2880
|
-
if (PyErr_Occurred()) {
|
|
2985
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
2881
2986
|
return NULL;
|
|
2882
2987
|
}
|
|
2883
|
-
|
|
2988
|
+
retval = whatsapp_Message_ID_Get(handle);
|
|
2989
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
2884
2990
|
return py_retval;
|
|
2885
2991
|
}
|
|
2886
|
-
PyObject *
|
|
2992
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_ID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2887
2993
|
|
|
2888
2994
|
|
|
2889
2995
|
PyObject *
|
|
2890
|
-
|
|
2996
|
+
_wrap__whatsapp_whatsapp_Message_ID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2891
2997
|
{
|
|
2892
2998
|
PyObject *py_retval;
|
|
2893
|
-
int64_t
|
|
2999
|
+
int64_t handle;
|
|
3000
|
+
char *val;
|
|
3001
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
2894
3002
|
|
|
2895
|
-
|
|
2896
|
-
|
|
3003
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3004
|
+
return NULL;
|
|
3005
|
+
}
|
|
3006
|
+
whatsapp_Message_ID_Set(handle, val);
|
|
3007
|
+
Py_INCREF(Py_None);
|
|
3008
|
+
py_retval = Py_None;
|
|
2897
3009
|
return py_retval;
|
|
2898
3010
|
}
|
|
2899
|
-
PyObject *
|
|
3011
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_ID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2900
3012
|
|
|
2901
3013
|
|
|
2902
3014
|
PyObject *
|
|
2903
|
-
|
|
3015
|
+
_wrap__whatsapp_whatsapp_Message_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2904
3016
|
{
|
|
2905
3017
|
PyObject *py_retval;
|
|
2906
|
-
|
|
3018
|
+
char *retval;
|
|
2907
3019
|
int64_t handle;
|
|
2908
3020
|
const char *keywords[] = {"handle", NULL};
|
|
2909
3021
|
|
|
2910
3022
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
2911
3023
|
return NULL;
|
|
2912
3024
|
}
|
|
2913
|
-
retval =
|
|
2914
|
-
py_retval = Py_BuildValue((char *) "
|
|
3025
|
+
retval = whatsapp_Message_JID_Get(handle);
|
|
3026
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
2915
3027
|
return py_retval;
|
|
2916
3028
|
}
|
|
2917
|
-
PyObject *
|
|
3029
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2918
3030
|
|
|
2919
3031
|
|
|
2920
3032
|
PyObject *
|
|
2921
|
-
|
|
3033
|
+
_wrap__whatsapp_whatsapp_Message_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2922
3034
|
{
|
|
2923
3035
|
PyObject *py_retval;
|
|
2924
3036
|
int64_t handle;
|
|
2925
|
-
|
|
3037
|
+
char *val;
|
|
2926
3038
|
const char *keywords[] = {"handle", "val", NULL};
|
|
2927
3039
|
|
|
2928
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3040
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
2929
3041
|
return NULL;
|
|
2930
3042
|
}
|
|
2931
|
-
|
|
3043
|
+
whatsapp_Message_JID_Set(handle, val);
|
|
2932
3044
|
Py_INCREF(Py_None);
|
|
2933
3045
|
py_retval = Py_None;
|
|
2934
3046
|
return py_retval;
|
|
2935
3047
|
}
|
|
2936
|
-
PyObject *
|
|
3048
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2937
3049
|
|
|
2938
3050
|
|
|
2939
3051
|
PyObject *
|
|
2940
|
-
|
|
3052
|
+
_wrap__whatsapp_whatsapp_Message_GroupJID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2941
3053
|
{
|
|
2942
3054
|
PyObject *py_retval;
|
|
2943
3055
|
char *retval;
|
|
@@ -2947,15 +3059,15 @@ _wrap__whatsapp_whatsapp_Preview_URL_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyO
|
|
|
2947
3059
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
2948
3060
|
return NULL;
|
|
2949
3061
|
}
|
|
2950
|
-
retval =
|
|
3062
|
+
retval = whatsapp_Message_GroupJID_Get(handle);
|
|
2951
3063
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
2952
3064
|
return py_retval;
|
|
2953
3065
|
}
|
|
2954
|
-
PyObject *
|
|
3066
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_GroupJID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2955
3067
|
|
|
2956
3068
|
|
|
2957
3069
|
PyObject *
|
|
2958
|
-
|
|
3070
|
+
_wrap__whatsapp_whatsapp_Message_GroupJID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2959
3071
|
{
|
|
2960
3072
|
PyObject *py_retval;
|
|
2961
3073
|
int64_t handle;
|
|
@@ -2965,16 +3077,16 @@ _wrap__whatsapp_whatsapp_Preview_URL_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyO
|
|
|
2965
3077
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
2966
3078
|
return NULL;
|
|
2967
3079
|
}
|
|
2968
|
-
|
|
3080
|
+
whatsapp_Message_GroupJID_Set(handle, val);
|
|
2969
3081
|
Py_INCREF(Py_None);
|
|
2970
3082
|
py_retval = Py_None;
|
|
2971
3083
|
return py_retval;
|
|
2972
3084
|
}
|
|
2973
|
-
PyObject *
|
|
3085
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_GroupJID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2974
3086
|
|
|
2975
3087
|
|
|
2976
3088
|
PyObject *
|
|
2977
|
-
|
|
3089
|
+
_wrap__whatsapp_whatsapp_Message_OriginJID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2978
3090
|
{
|
|
2979
3091
|
PyObject *py_retval;
|
|
2980
3092
|
char *retval;
|
|
@@ -2984,15 +3096,15 @@ _wrap__whatsapp_whatsapp_Preview_Title_Get(PyObject * PYBINDGEN_UNUSED(dummy), P
|
|
|
2984
3096
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
2985
3097
|
return NULL;
|
|
2986
3098
|
}
|
|
2987
|
-
retval =
|
|
3099
|
+
retval = whatsapp_Message_OriginJID_Get(handle);
|
|
2988
3100
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
2989
3101
|
return py_retval;
|
|
2990
3102
|
}
|
|
2991
|
-
PyObject *
|
|
3103
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_OriginJID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
2992
3104
|
|
|
2993
3105
|
|
|
2994
3106
|
PyObject *
|
|
2995
|
-
|
|
3107
|
+
_wrap__whatsapp_whatsapp_Message_OriginJID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
2996
3108
|
{
|
|
2997
3109
|
PyObject *py_retval;
|
|
2998
3110
|
int64_t handle;
|
|
@@ -3002,16 +3114,16 @@ _wrap__whatsapp_whatsapp_Preview_Title_Set(PyObject * PYBINDGEN_UNUSED(dummy), P
|
|
|
3002
3114
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3003
3115
|
return NULL;
|
|
3004
3116
|
}
|
|
3005
|
-
|
|
3117
|
+
whatsapp_Message_OriginJID_Set(handle, val);
|
|
3006
3118
|
Py_INCREF(Py_None);
|
|
3007
3119
|
py_retval = Py_None;
|
|
3008
3120
|
return py_retval;
|
|
3009
3121
|
}
|
|
3010
|
-
PyObject *
|
|
3122
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_OriginJID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3011
3123
|
|
|
3012
3124
|
|
|
3013
3125
|
PyObject *
|
|
3014
|
-
|
|
3126
|
+
_wrap__whatsapp_whatsapp_Message_Body_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3015
3127
|
{
|
|
3016
3128
|
PyObject *py_retval;
|
|
3017
3129
|
char *retval;
|
|
@@ -3021,15 +3133,15 @@ _wrap__whatsapp_whatsapp_Preview_Description_Get(PyObject * PYBINDGEN_UNUSED(dum
|
|
|
3021
3133
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3022
3134
|
return NULL;
|
|
3023
3135
|
}
|
|
3024
|
-
retval =
|
|
3136
|
+
retval = whatsapp_Message_Body_Get(handle);
|
|
3025
3137
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
3026
3138
|
return py_retval;
|
|
3027
3139
|
}
|
|
3028
|
-
PyObject *
|
|
3140
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Body_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3029
3141
|
|
|
3030
3142
|
|
|
3031
3143
|
PyObject *
|
|
3032
|
-
|
|
3144
|
+
_wrap__whatsapp_whatsapp_Message_Body_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3033
3145
|
{
|
|
3034
3146
|
PyObject *py_retval;
|
|
3035
3147
|
int64_t handle;
|
|
@@ -3039,16 +3151,16 @@ _wrap__whatsapp_whatsapp_Preview_Description_Set(PyObject * PYBINDGEN_UNUSED(dum
|
|
|
3039
3151
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3040
3152
|
return NULL;
|
|
3041
3153
|
}
|
|
3042
|
-
|
|
3154
|
+
whatsapp_Message_Body_Set(handle, val);
|
|
3043
3155
|
Py_INCREF(Py_None);
|
|
3044
3156
|
py_retval = Py_None;
|
|
3045
3157
|
return py_retval;
|
|
3046
3158
|
}
|
|
3047
|
-
PyObject *
|
|
3159
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Body_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3048
3160
|
|
|
3049
3161
|
|
|
3050
3162
|
PyObject *
|
|
3051
|
-
|
|
3163
|
+
_wrap__whatsapp_whatsapp_Message_Timestamp_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3052
3164
|
{
|
|
3053
3165
|
PyObject *py_retval;
|
|
3054
3166
|
int64_t retval;
|
|
@@ -3058,15 +3170,15 @@ _wrap__whatsapp_whatsapp_Preview_Thumbnail_Get(PyObject * PYBINDGEN_UNUSED(dummy
|
|
|
3058
3170
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3059
3171
|
return NULL;
|
|
3060
3172
|
}
|
|
3061
|
-
retval =
|
|
3173
|
+
retval = whatsapp_Message_Timestamp_Get(handle);
|
|
3062
3174
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3063
3175
|
return py_retval;
|
|
3064
3176
|
}
|
|
3065
|
-
PyObject *
|
|
3177
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Timestamp_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3066
3178
|
|
|
3067
3179
|
|
|
3068
3180
|
PyObject *
|
|
3069
|
-
|
|
3181
|
+
_wrap__whatsapp_whatsapp_Message_Timestamp_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3070
3182
|
{
|
|
3071
3183
|
PyObject *py_retval;
|
|
3072
3184
|
int64_t handle;
|
|
@@ -3076,592 +3188,477 @@ _wrap__whatsapp_whatsapp_Preview_Thumbnail_Set(PyObject * PYBINDGEN_UNUSED(dummy
|
|
|
3076
3188
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3077
3189
|
return NULL;
|
|
3078
3190
|
}
|
|
3079
|
-
|
|
3191
|
+
whatsapp_Message_Timestamp_Set(handle, val);
|
|
3080
3192
|
Py_INCREF(Py_None);
|
|
3081
3193
|
py_retval = Py_None;
|
|
3082
3194
|
return py_retval;
|
|
3083
3195
|
}
|
|
3084
|
-
PyObject *
|
|
3196
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Timestamp_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3085
3197
|
|
|
3086
3198
|
|
|
3087
3199
|
PyObject *
|
|
3088
|
-
|
|
3200
|
+
_wrap__whatsapp_whatsapp_Message_IsCarbon_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3089
3201
|
{
|
|
3090
3202
|
PyObject *py_retval;
|
|
3091
|
-
|
|
3203
|
+
bool retval;
|
|
3204
|
+
int64_t handle;
|
|
3205
|
+
const char *keywords[] = {"handle", NULL};
|
|
3092
3206
|
|
|
3093
|
-
|
|
3094
|
-
|
|
3207
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3208
|
+
return NULL;
|
|
3209
|
+
}
|
|
3210
|
+
retval = whatsapp_Message_IsCarbon_Get(handle);
|
|
3211
|
+
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
|
3095
3212
|
return py_retval;
|
|
3096
3213
|
}
|
|
3097
|
-
PyObject *
|
|
3214
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_IsCarbon_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3098
3215
|
|
|
3099
3216
|
|
|
3100
3217
|
PyObject *
|
|
3101
|
-
|
|
3218
|
+
_wrap__whatsapp_whatsapp_Message_IsCarbon_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3102
3219
|
{
|
|
3103
3220
|
PyObject *py_retval;
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3221
|
+
int64_t handle;
|
|
3222
|
+
bool val;
|
|
3223
|
+
PyObject *py_val;
|
|
3224
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3107
3225
|
|
|
3108
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3109
|
-
return NULL;
|
|
3110
|
-
}
|
|
3111
|
-
retval = whatsapp_Session_Login(_handle);
|
|
3112
|
-
if (PyErr_Occurred()) {
|
|
3226
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LO", (char **) keywords, &handle, &py_val)) {
|
|
3113
3227
|
return NULL;
|
|
3114
3228
|
}
|
|
3115
|
-
|
|
3229
|
+
val = (bool) PyObject_IsTrue(py_val);
|
|
3230
|
+
whatsapp_Message_IsCarbon_Set(handle, val);
|
|
3231
|
+
Py_INCREF(Py_None);
|
|
3232
|
+
py_retval = Py_None;
|
|
3116
3233
|
return py_retval;
|
|
3117
3234
|
}
|
|
3118
|
-
PyObject *
|
|
3235
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_IsCarbon_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3119
3236
|
|
|
3120
3237
|
|
|
3121
3238
|
PyObject *
|
|
3122
|
-
|
|
3239
|
+
_wrap__whatsapp_whatsapp_Message_IsForwarded_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3123
3240
|
{
|
|
3124
3241
|
PyObject *py_retval;
|
|
3125
|
-
|
|
3126
|
-
int64_t
|
|
3127
|
-
const char *keywords[] = {"
|
|
3242
|
+
bool retval;
|
|
3243
|
+
int64_t handle;
|
|
3244
|
+
const char *keywords[] = {"handle", NULL};
|
|
3128
3245
|
|
|
3129
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
|
3130
|
-
return NULL;
|
|
3131
|
-
}
|
|
3132
|
-
retval = whatsapp_Session_Logout(_handle);
|
|
3133
|
-
if (PyErr_Occurred()) {
|
|
3246
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3134
3247
|
return NULL;
|
|
3135
3248
|
}
|
|
3136
|
-
|
|
3249
|
+
retval = whatsapp_Message_IsForwarded_Get(handle);
|
|
3250
|
+
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
|
3137
3251
|
return py_retval;
|
|
3138
3252
|
}
|
|
3139
|
-
PyObject *
|
|
3253
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_IsForwarded_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3140
3254
|
|
|
3141
3255
|
|
|
3142
3256
|
PyObject *
|
|
3143
|
-
|
|
3257
|
+
_wrap__whatsapp_whatsapp_Message_IsForwarded_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3144
3258
|
{
|
|
3145
3259
|
PyObject *py_retval;
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3260
|
+
int64_t handle;
|
|
3261
|
+
bool val;
|
|
3262
|
+
PyObject *py_val;
|
|
3263
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3149
3264
|
|
|
3150
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3151
|
-
return NULL;
|
|
3152
|
-
}
|
|
3153
|
-
retval = whatsapp_Session_Disconnect(_handle);
|
|
3154
|
-
if (PyErr_Occurred()) {
|
|
3265
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LO", (char **) keywords, &handle, &py_val)) {
|
|
3155
3266
|
return NULL;
|
|
3156
3267
|
}
|
|
3157
|
-
|
|
3268
|
+
val = (bool) PyObject_IsTrue(py_val);
|
|
3269
|
+
whatsapp_Message_IsForwarded_Set(handle, val);
|
|
3270
|
+
Py_INCREF(Py_None);
|
|
3271
|
+
py_retval = Py_None;
|
|
3158
3272
|
return py_retval;
|
|
3159
3273
|
}
|
|
3160
|
-
PyObject *
|
|
3274
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_IsForwarded_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3161
3275
|
|
|
3162
3276
|
|
|
3163
3277
|
PyObject *
|
|
3164
|
-
|
|
3278
|
+
_wrap__whatsapp_whatsapp_Message_ReplyID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3165
3279
|
{
|
|
3166
3280
|
PyObject *py_retval;
|
|
3167
3281
|
char *retval;
|
|
3168
|
-
int64_t
|
|
3169
|
-
char *
|
|
3170
|
-
const char *keywords[] = {"_handle", "phone", NULL};
|
|
3282
|
+
int64_t handle;
|
|
3283
|
+
const char *keywords[] = {"handle", NULL};
|
|
3171
3284
|
|
|
3172
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3173
|
-
return NULL;
|
|
3174
|
-
}
|
|
3175
|
-
retval = whatsapp_Session_PairPhone(_handle, phone);
|
|
3176
|
-
if (PyErr_Occurred()) {
|
|
3177
|
-
if (retval != NULL) free(retval);
|
|
3285
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3178
3286
|
return NULL;
|
|
3179
3287
|
}
|
|
3288
|
+
retval = whatsapp_Message_ReplyID_Get(handle);
|
|
3180
3289
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
3181
|
-
free(retval);
|
|
3182
3290
|
return py_retval;
|
|
3183
3291
|
}
|
|
3184
|
-
PyObject *
|
|
3292
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_ReplyID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3185
3293
|
|
|
3186
3294
|
|
|
3187
3295
|
PyObject *
|
|
3188
|
-
|
|
3296
|
+
_wrap__whatsapp_whatsapp_Message_ReplyID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3189
3297
|
{
|
|
3190
3298
|
PyObject *py_retval;
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
const char *keywords[] = {"_handle", "message", NULL};
|
|
3299
|
+
int64_t handle;
|
|
3300
|
+
char *val;
|
|
3301
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3195
3302
|
|
|
3196
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3197
|
-
return NULL;
|
|
3198
|
-
}
|
|
3199
|
-
retval = whatsapp_Session_SendMessage(_handle, message);
|
|
3200
|
-
if (PyErr_Occurred()) {
|
|
3303
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3201
3304
|
return NULL;
|
|
3202
3305
|
}
|
|
3203
|
-
|
|
3306
|
+
whatsapp_Message_ReplyID_Set(handle, val);
|
|
3307
|
+
Py_INCREF(Py_None);
|
|
3308
|
+
py_retval = Py_None;
|
|
3204
3309
|
return py_retval;
|
|
3205
3310
|
}
|
|
3206
|
-
PyObject *
|
|
3311
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_ReplyID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3207
3312
|
|
|
3208
3313
|
|
|
3209
3314
|
PyObject *
|
|
3210
|
-
|
|
3315
|
+
_wrap__whatsapp_whatsapp_Message_ReplyBody_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3211
3316
|
{
|
|
3212
3317
|
PyObject *py_retval;
|
|
3213
3318
|
char *retval;
|
|
3214
|
-
int64_t
|
|
3215
|
-
const char *keywords[] = {"
|
|
3319
|
+
int64_t handle;
|
|
3320
|
+
const char *keywords[] = {"handle", NULL};
|
|
3216
3321
|
|
|
3217
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
|
3218
|
-
return NULL;
|
|
3219
|
-
}
|
|
3220
|
-
retval = whatsapp_Session_GenerateMessageID(_handle);
|
|
3221
|
-
if (PyErr_Occurred()) {
|
|
3222
|
-
if (retval != NULL) free(retval);
|
|
3322
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3223
3323
|
return NULL;
|
|
3224
3324
|
}
|
|
3325
|
+
retval = whatsapp_Message_ReplyBody_Get(handle);
|
|
3225
3326
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
3226
|
-
free(retval);
|
|
3227
3327
|
return py_retval;
|
|
3228
3328
|
}
|
|
3229
|
-
PyObject *
|
|
3329
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_ReplyBody_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3230
3330
|
|
|
3231
3331
|
|
|
3232
3332
|
PyObject *
|
|
3233
|
-
|
|
3333
|
+
_wrap__whatsapp_whatsapp_Message_ReplyBody_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3234
3334
|
{
|
|
3235
3335
|
PyObject *py_retval;
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
const char *keywords[] = {"_handle", "state", NULL};
|
|
3336
|
+
int64_t handle;
|
|
3337
|
+
char *val;
|
|
3338
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3240
3339
|
|
|
3241
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3242
|
-
return NULL;
|
|
3243
|
-
}
|
|
3244
|
-
retval = whatsapp_Session_SendChatState(_handle, state);
|
|
3245
|
-
if (PyErr_Occurred()) {
|
|
3340
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3246
3341
|
return NULL;
|
|
3247
3342
|
}
|
|
3248
|
-
|
|
3343
|
+
whatsapp_Message_ReplyBody_Set(handle, val);
|
|
3344
|
+
Py_INCREF(Py_None);
|
|
3345
|
+
py_retval = Py_None;
|
|
3249
3346
|
return py_retval;
|
|
3250
3347
|
}
|
|
3251
|
-
PyObject *
|
|
3348
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_ReplyBody_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3252
3349
|
|
|
3253
3350
|
|
|
3254
3351
|
PyObject *
|
|
3255
|
-
|
|
3352
|
+
_wrap__whatsapp_whatsapp_Message_Attachments_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3256
3353
|
{
|
|
3257
3354
|
PyObject *py_retval;
|
|
3258
|
-
|
|
3259
|
-
int64_t
|
|
3260
|
-
|
|
3261
|
-
const char *keywords[] = {"_handle", "receipt", NULL};
|
|
3355
|
+
int64_t retval;
|
|
3356
|
+
int64_t handle;
|
|
3357
|
+
const char *keywords[] = {"handle", NULL};
|
|
3262
3358
|
|
|
3263
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3264
|
-
return NULL;
|
|
3265
|
-
}
|
|
3266
|
-
retval = whatsapp_Session_SendReceipt(_handle, receipt);
|
|
3267
|
-
if (PyErr_Occurred()) {
|
|
3359
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3268
3360
|
return NULL;
|
|
3269
3361
|
}
|
|
3270
|
-
|
|
3362
|
+
retval = whatsapp_Message_Attachments_Get(handle);
|
|
3363
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3271
3364
|
return py_retval;
|
|
3272
3365
|
}
|
|
3273
|
-
PyObject *
|
|
3366
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Attachments_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3274
3367
|
|
|
3275
3368
|
|
|
3276
3369
|
PyObject *
|
|
3277
|
-
|
|
3370
|
+
_wrap__whatsapp_whatsapp_Message_Attachments_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3278
3371
|
{
|
|
3279
3372
|
PyObject *py_retval;
|
|
3280
|
-
|
|
3281
|
-
int64_t
|
|
3282
|
-
|
|
3283
|
-
char *statusMessage;
|
|
3284
|
-
const char *keywords[] = {"_handle", "presence", "statusMessage", NULL};
|
|
3373
|
+
int64_t handle;
|
|
3374
|
+
int64_t val;
|
|
3375
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3285
3376
|
|
|
3286
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3287
|
-
return NULL;
|
|
3288
|
-
}
|
|
3289
|
-
retval = whatsapp_Session_SendPresence(_handle, presence, statusMessage);
|
|
3290
|
-
if (PyErr_Occurred()) {
|
|
3377
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3291
3378
|
return NULL;
|
|
3292
3379
|
}
|
|
3293
|
-
|
|
3380
|
+
whatsapp_Message_Attachments_Set(handle, val);
|
|
3381
|
+
Py_INCREF(Py_None);
|
|
3382
|
+
py_retval = Py_None;
|
|
3294
3383
|
return py_retval;
|
|
3295
3384
|
}
|
|
3296
|
-
PyObject *
|
|
3385
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Attachments_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3297
3386
|
|
|
3298
3387
|
|
|
3299
3388
|
PyObject *
|
|
3300
|
-
|
|
3389
|
+
_wrap__whatsapp_whatsapp_Message_Preview_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3301
3390
|
{
|
|
3302
3391
|
PyObject *py_retval;
|
|
3303
3392
|
int64_t retval;
|
|
3304
|
-
int64_t
|
|
3305
|
-
|
|
3306
|
-
PyObject *py_refresh;
|
|
3307
|
-
const char *keywords[] = {"_handle", "refresh", NULL};
|
|
3393
|
+
int64_t handle;
|
|
3394
|
+
const char *keywords[] = {"handle", NULL};
|
|
3308
3395
|
|
|
3309
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3310
|
-
return NULL;
|
|
3311
|
-
}
|
|
3312
|
-
refresh = (bool) PyObject_IsTrue(py_refresh);
|
|
3313
|
-
retval = whatsapp_Session_GetContacts(_handle, refresh);
|
|
3314
|
-
if (PyErr_Occurred()) {
|
|
3396
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3315
3397
|
return NULL;
|
|
3316
3398
|
}
|
|
3399
|
+
retval = whatsapp_Message_Preview_Get(handle);
|
|
3317
3400
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3318
3401
|
return py_retval;
|
|
3319
3402
|
}
|
|
3320
|
-
PyObject *
|
|
3403
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Preview_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3321
3404
|
|
|
3322
3405
|
|
|
3323
3406
|
PyObject *
|
|
3324
|
-
|
|
3407
|
+
_wrap__whatsapp_whatsapp_Message_Preview_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3325
3408
|
{
|
|
3326
3409
|
PyObject *py_retval;
|
|
3327
|
-
int64_t
|
|
3328
|
-
int64_t
|
|
3329
|
-
const char *keywords[] = {"
|
|
3410
|
+
int64_t handle;
|
|
3411
|
+
int64_t val;
|
|
3412
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3330
3413
|
|
|
3331
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3332
|
-
return NULL;
|
|
3333
|
-
}
|
|
3334
|
-
retval = whatsapp_Session_GetGroups(_handle);
|
|
3335
|
-
if (PyErr_Occurred()) {
|
|
3414
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3336
3415
|
return NULL;
|
|
3337
3416
|
}
|
|
3338
|
-
|
|
3417
|
+
whatsapp_Message_Preview_Set(handle, val);
|
|
3418
|
+
Py_INCREF(Py_None);
|
|
3419
|
+
py_retval = Py_None;
|
|
3339
3420
|
return py_retval;
|
|
3340
3421
|
}
|
|
3341
|
-
PyObject *
|
|
3422
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Preview_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3342
3423
|
|
|
3343
3424
|
|
|
3344
3425
|
PyObject *
|
|
3345
|
-
|
|
3426
|
+
_wrap__whatsapp_whatsapp_Message_Location_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3346
3427
|
{
|
|
3347
3428
|
PyObject *py_retval;
|
|
3348
3429
|
int64_t retval;
|
|
3349
|
-
int64_t
|
|
3350
|
-
char *
|
|
3351
|
-
int64_t participants;
|
|
3352
|
-
const char *keywords[] = {"_handle", "name", "participants", NULL};
|
|
3430
|
+
int64_t handle;
|
|
3431
|
+
const char *keywords[] = {"handle", NULL};
|
|
3353
3432
|
|
|
3354
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3355
|
-
return NULL;
|
|
3356
|
-
}
|
|
3357
|
-
retval = whatsapp_Session_CreateGroup(_handle, name, participants);
|
|
3358
|
-
if (PyErr_Occurred()) {
|
|
3433
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3359
3434
|
return NULL;
|
|
3360
3435
|
}
|
|
3436
|
+
retval = whatsapp_Message_Location_Get(handle);
|
|
3361
3437
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3362
3438
|
return py_retval;
|
|
3363
3439
|
}
|
|
3364
|
-
PyObject *
|
|
3440
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Location_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3365
3441
|
|
|
3366
3442
|
|
|
3367
3443
|
PyObject *
|
|
3368
|
-
|
|
3444
|
+
_wrap__whatsapp_whatsapp_Message_Location_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3369
3445
|
{
|
|
3370
3446
|
PyObject *py_retval;
|
|
3371
|
-
|
|
3372
|
-
int64_t
|
|
3373
|
-
char *
|
|
3374
|
-
const char *keywords[] = {"_handle", "resourceID", NULL};
|
|
3447
|
+
int64_t handle;
|
|
3448
|
+
int64_t val;
|
|
3449
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3375
3450
|
|
|
3376
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3377
|
-
return NULL;
|
|
3378
|
-
}
|
|
3379
|
-
retval = whatsapp_Session_LeaveGroup(_handle, resourceID);
|
|
3380
|
-
if (PyErr_Occurred()) {
|
|
3451
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3381
3452
|
return NULL;
|
|
3382
3453
|
}
|
|
3383
|
-
|
|
3454
|
+
whatsapp_Message_Location_Set(handle, val);
|
|
3455
|
+
Py_INCREF(Py_None);
|
|
3456
|
+
py_retval = Py_None;
|
|
3384
3457
|
return py_retval;
|
|
3385
3458
|
}
|
|
3386
|
-
PyObject *
|
|
3459
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Location_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3387
3460
|
|
|
3388
3461
|
|
|
3389
3462
|
PyObject *
|
|
3390
|
-
|
|
3463
|
+
_wrap__whatsapp_whatsapp_Message_Poll_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3391
3464
|
{
|
|
3392
3465
|
PyObject *py_retval;
|
|
3393
3466
|
int64_t retval;
|
|
3394
|
-
int64_t
|
|
3395
|
-
char *
|
|
3396
|
-
char *avatarID;
|
|
3397
|
-
const char *keywords[] = {"_handle", "resourceID", "avatarID", NULL};
|
|
3467
|
+
int64_t handle;
|
|
3468
|
+
const char *keywords[] = {"handle", NULL};
|
|
3398
3469
|
|
|
3399
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3400
|
-
return NULL;
|
|
3401
|
-
}
|
|
3402
|
-
retval = whatsapp_Session_GetAvatar(_handle, resourceID, avatarID);
|
|
3403
|
-
if (PyErr_Occurred()) {
|
|
3470
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3404
3471
|
return NULL;
|
|
3405
3472
|
}
|
|
3473
|
+
retval = whatsapp_Message_Poll_Get(handle);
|
|
3406
3474
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3407
3475
|
return py_retval;
|
|
3408
3476
|
}
|
|
3409
|
-
PyObject *
|
|
3477
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Poll_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3410
3478
|
|
|
3411
3479
|
|
|
3412
3480
|
PyObject *
|
|
3413
|
-
|
|
3481
|
+
_wrap__whatsapp_whatsapp_Message_Poll_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3414
3482
|
{
|
|
3415
3483
|
PyObject *py_retval;
|
|
3416
|
-
|
|
3417
|
-
int64_t
|
|
3418
|
-
char *
|
|
3419
|
-
int64_t avatar;
|
|
3420
|
-
const char *keywords[] = {"_handle", "resourceID", "avatar", NULL};
|
|
3484
|
+
int64_t handle;
|
|
3485
|
+
int64_t val;
|
|
3486
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3421
3487
|
|
|
3422
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3423
|
-
return NULL;
|
|
3424
|
-
}
|
|
3425
|
-
retval = whatsapp_Session_SetAvatar(_handle, resourceID, avatar);
|
|
3426
|
-
if (PyErr_Occurred()) {
|
|
3427
|
-
if (retval != NULL) free(retval);
|
|
3488
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3428
3489
|
return NULL;
|
|
3429
3490
|
}
|
|
3430
|
-
|
|
3431
|
-
|
|
3491
|
+
whatsapp_Message_Poll_Set(handle, val);
|
|
3492
|
+
Py_INCREF(Py_None);
|
|
3493
|
+
py_retval = Py_None;
|
|
3432
3494
|
return py_retval;
|
|
3433
3495
|
}
|
|
3434
|
-
PyObject *
|
|
3496
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Poll_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3435
3497
|
|
|
3436
3498
|
|
|
3437
3499
|
PyObject *
|
|
3438
|
-
|
|
3500
|
+
_wrap__whatsapp_whatsapp_Message_Album_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3439
3501
|
{
|
|
3440
3502
|
PyObject *py_retval;
|
|
3441
|
-
|
|
3442
|
-
int64_t
|
|
3443
|
-
char *
|
|
3444
|
-
char *name;
|
|
3445
|
-
const char *keywords[] = {"_handle", "resourceID", "name", NULL};
|
|
3503
|
+
int64_t retval;
|
|
3504
|
+
int64_t handle;
|
|
3505
|
+
const char *keywords[] = {"handle", NULL};
|
|
3446
3506
|
|
|
3447
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3448
|
-
return NULL;
|
|
3449
|
-
}
|
|
3450
|
-
retval = whatsapp_Session_SetGroupName(_handle, resourceID, name);
|
|
3451
|
-
if (PyErr_Occurred()) {
|
|
3507
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3452
3508
|
return NULL;
|
|
3453
3509
|
}
|
|
3454
|
-
|
|
3510
|
+
retval = whatsapp_Message_Album_Get(handle);
|
|
3511
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3455
3512
|
return py_retval;
|
|
3456
3513
|
}
|
|
3457
|
-
PyObject *
|
|
3514
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Album_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3458
3515
|
|
|
3459
3516
|
|
|
3460
3517
|
PyObject *
|
|
3461
|
-
|
|
3518
|
+
_wrap__whatsapp_whatsapp_Message_Album_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3462
3519
|
{
|
|
3463
3520
|
PyObject *py_retval;
|
|
3464
|
-
|
|
3465
|
-
int64_t
|
|
3466
|
-
char *
|
|
3467
|
-
char *topic;
|
|
3468
|
-
const char *keywords[] = {"_handle", "resourceID", "topic", NULL};
|
|
3521
|
+
int64_t handle;
|
|
3522
|
+
int64_t val;
|
|
3523
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3469
3524
|
|
|
3470
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3471
|
-
return NULL;
|
|
3472
|
-
}
|
|
3473
|
-
retval = whatsapp_Session_SetGroupTopic(_handle, resourceID, topic);
|
|
3474
|
-
if (PyErr_Occurred()) {
|
|
3525
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3475
3526
|
return NULL;
|
|
3476
3527
|
}
|
|
3477
|
-
|
|
3528
|
+
whatsapp_Message_Album_Set(handle, val);
|
|
3529
|
+
Py_INCREF(Py_None);
|
|
3530
|
+
py_retval = Py_None;
|
|
3478
3531
|
return py_retval;
|
|
3479
3532
|
}
|
|
3480
|
-
PyObject *
|
|
3533
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Album_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3481
3534
|
|
|
3482
3535
|
|
|
3483
3536
|
PyObject *
|
|
3484
|
-
|
|
3537
|
+
_wrap__whatsapp_whatsapp_Message_MentionJIDs_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3485
3538
|
{
|
|
3486
3539
|
PyObject *py_retval;
|
|
3487
3540
|
int64_t retval;
|
|
3488
|
-
int64_t
|
|
3489
|
-
char *
|
|
3490
|
-
int64_t participants;
|
|
3491
|
-
const char *keywords[] = {"_handle", "resourceID", "participants", NULL};
|
|
3541
|
+
int64_t handle;
|
|
3542
|
+
const char *keywords[] = {"handle", NULL};
|
|
3492
3543
|
|
|
3493
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3494
|
-
return NULL;
|
|
3495
|
-
}
|
|
3496
|
-
retval = whatsapp_Session_UpdateGroupParticipants(_handle, resourceID, participants);
|
|
3497
|
-
if (PyErr_Occurred()) {
|
|
3544
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3498
3545
|
return NULL;
|
|
3499
3546
|
}
|
|
3547
|
+
retval = whatsapp_Message_MentionJIDs_Get(handle);
|
|
3500
3548
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3501
3549
|
return py_retval;
|
|
3502
3550
|
}
|
|
3503
|
-
PyObject *
|
|
3551
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_MentionJIDs_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3504
3552
|
|
|
3505
3553
|
|
|
3506
3554
|
PyObject *
|
|
3507
|
-
|
|
3555
|
+
_wrap__whatsapp_whatsapp_Message_MentionJIDs_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3508
3556
|
{
|
|
3509
3557
|
PyObject *py_retval;
|
|
3510
|
-
int64_t
|
|
3511
|
-
int64_t
|
|
3512
|
-
char *
|
|
3513
|
-
const char *keywords[] = {"_handle", "phone", NULL};
|
|
3558
|
+
int64_t handle;
|
|
3559
|
+
int64_t val;
|
|
3560
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3514
3561
|
|
|
3515
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3516
|
-
return NULL;
|
|
3517
|
-
}
|
|
3518
|
-
retval = whatsapp_Session_FindContact(_handle, phone);
|
|
3519
|
-
if (PyErr_Occurred()) {
|
|
3562
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3520
3563
|
return NULL;
|
|
3521
3564
|
}
|
|
3522
|
-
|
|
3565
|
+
whatsapp_Message_MentionJIDs_Set(handle, val);
|
|
3566
|
+
Py_INCREF(Py_None);
|
|
3567
|
+
py_retval = Py_None;
|
|
3523
3568
|
return py_retval;
|
|
3524
3569
|
}
|
|
3525
|
-
PyObject *
|
|
3570
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_MentionJIDs_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3526
3571
|
|
|
3527
3572
|
|
|
3528
3573
|
PyObject *
|
|
3529
|
-
|
|
3574
|
+
_wrap__whatsapp_whatsapp_Message_Receipts_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3530
3575
|
{
|
|
3531
3576
|
PyObject *py_retval;
|
|
3532
|
-
|
|
3533
|
-
int64_t
|
|
3534
|
-
char *
|
|
3535
|
-
int64_t oldestMessage;
|
|
3536
|
-
const char *keywords[] = {"_handle", "resourceID", "oldestMessage", NULL};
|
|
3577
|
+
int64_t retval;
|
|
3578
|
+
int64_t handle;
|
|
3579
|
+
const char *keywords[] = {"handle", NULL};
|
|
3537
3580
|
|
|
3538
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3539
|
-
return NULL;
|
|
3540
|
-
}
|
|
3541
|
-
retval = whatsapp_Session_RequestMessageHistory(_handle, resourceID, oldestMessage);
|
|
3542
|
-
if (PyErr_Occurred()) {
|
|
3581
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3543
3582
|
return NULL;
|
|
3544
3583
|
}
|
|
3545
|
-
|
|
3584
|
+
retval = whatsapp_Message_Receipts_Get(handle);
|
|
3585
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3546
3586
|
return py_retval;
|
|
3547
3587
|
}
|
|
3548
|
-
PyObject *
|
|
3588
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Receipts_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3549
3589
|
|
|
3550
3590
|
|
|
3551
3591
|
PyObject *
|
|
3552
|
-
|
|
3592
|
+
_wrap__whatsapp_whatsapp_Message_Receipts_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3553
3593
|
{
|
|
3554
3594
|
PyObject *py_retval;
|
|
3555
|
-
int64_t
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
PyObject *py_goRun;
|
|
3559
|
-
const char *keywords[] = {"_handle", "h", "goRun", NULL};
|
|
3595
|
+
int64_t handle;
|
|
3596
|
+
int64_t val;
|
|
3597
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3560
3598
|
|
|
3561
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3562
|
-
return NULL;
|
|
3563
|
-
}
|
|
3564
|
-
goRun = (bool) PyObject_IsTrue(py_goRun);
|
|
3565
|
-
whatsapp_Session_SetEventHandler(_handle, h, goRun);
|
|
3566
|
-
if (PyErr_Occurred()) {
|
|
3599
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3567
3600
|
return NULL;
|
|
3568
3601
|
}
|
|
3602
|
+
whatsapp_Message_Receipts_Set(handle, val);
|
|
3569
3603
|
Py_INCREF(Py_None);
|
|
3570
3604
|
py_retval = Py_None;
|
|
3571
3605
|
return py_retval;
|
|
3572
3606
|
}
|
|
3573
|
-
PyObject *
|
|
3607
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Receipts_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3574
3608
|
|
|
3575
3609
|
|
|
3576
3610
|
PyObject *
|
|
3577
|
-
|
|
3611
|
+
_wrap__whatsapp_whatsapp_Message_Reactions_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3578
3612
|
{
|
|
3579
3613
|
PyObject *py_retval;
|
|
3580
3614
|
int64_t retval;
|
|
3581
|
-
|
|
3582
|
-
retval = whatsapp_Attachment_CTor();
|
|
3583
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3584
|
-
return py_retval;
|
|
3585
|
-
}
|
|
3586
|
-
PyObject * _wrap__whatsapp_whatsapp_Attachment_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
PyObject *
|
|
3590
|
-
_wrap__whatsapp_whatsapp_Attachment_MIME_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3591
|
-
{
|
|
3592
|
-
PyObject *py_retval;
|
|
3593
|
-
char *retval;
|
|
3594
3615
|
int64_t handle;
|
|
3595
3616
|
const char *keywords[] = {"handle", NULL};
|
|
3596
3617
|
|
|
3597
3618
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3598
3619
|
return NULL;
|
|
3599
3620
|
}
|
|
3600
|
-
retval =
|
|
3601
|
-
py_retval = Py_BuildValue((char *) "
|
|
3621
|
+
retval = whatsapp_Message_Reactions_Get(handle);
|
|
3622
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3602
3623
|
return py_retval;
|
|
3603
3624
|
}
|
|
3604
|
-
PyObject *
|
|
3625
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Reactions_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3605
3626
|
|
|
3606
3627
|
|
|
3607
3628
|
PyObject *
|
|
3608
|
-
|
|
3629
|
+
_wrap__whatsapp_whatsapp_Message_Reactions_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3609
3630
|
{
|
|
3610
3631
|
PyObject *py_retval;
|
|
3611
3632
|
int64_t handle;
|
|
3612
|
-
|
|
3633
|
+
int64_t val;
|
|
3613
3634
|
const char *keywords[] = {"handle", "val", NULL};
|
|
3614
3635
|
|
|
3615
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3636
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3616
3637
|
return NULL;
|
|
3617
3638
|
}
|
|
3618
|
-
|
|
3639
|
+
whatsapp_Message_Reactions_Set(handle, val);
|
|
3619
3640
|
Py_INCREF(Py_None);
|
|
3620
3641
|
py_retval = Py_None;
|
|
3621
3642
|
return py_retval;
|
|
3622
3643
|
}
|
|
3623
|
-
PyObject *
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
PyObject *
|
|
3627
|
-
_wrap__whatsapp_whatsapp_Attachment_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3628
|
-
{
|
|
3629
|
-
PyObject *py_retval;
|
|
3630
|
-
char *retval;
|
|
3631
|
-
int64_t handle;
|
|
3632
|
-
const char *keywords[] = {"handle", NULL};
|
|
3633
|
-
|
|
3634
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3635
|
-
return NULL;
|
|
3636
|
-
}
|
|
3637
|
-
retval = whatsapp_Attachment_Filename_Get(handle);
|
|
3638
|
-
py_retval = Py_BuildValue((char *) "s", retval);
|
|
3639
|
-
return py_retval;
|
|
3640
|
-
}
|
|
3641
|
-
PyObject * _wrap__whatsapp_whatsapp_Attachment_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3644
|
+
PyObject * _wrap__whatsapp_whatsapp_Message_Reactions_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3642
3645
|
|
|
3643
3646
|
|
|
3644
3647
|
PyObject *
|
|
3645
|
-
|
|
3648
|
+
_wrap__whatsapp_whatsapp_Poll_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
3646
3649
|
{
|
|
3647
3650
|
PyObject *py_retval;
|
|
3648
|
-
int64_t
|
|
3649
|
-
char *val;
|
|
3650
|
-
const char *keywords[] = {"handle", "val", NULL};
|
|
3651
|
+
int64_t retval;
|
|
3651
3652
|
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
}
|
|
3655
|
-
whatsapp_Attachment_Filename_Set(handle, val);
|
|
3656
|
-
Py_INCREF(Py_None);
|
|
3657
|
-
py_retval = Py_None;
|
|
3653
|
+
retval = whatsapp_Poll_CTor();
|
|
3654
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3658
3655
|
return py_retval;
|
|
3659
3656
|
}
|
|
3660
|
-
PyObject *
|
|
3657
|
+
PyObject * _wrap__whatsapp_whatsapp_Poll_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
3661
3658
|
|
|
3662
3659
|
|
|
3663
3660
|
PyObject *
|
|
3664
|
-
|
|
3661
|
+
_wrap__whatsapp_whatsapp_Poll_Title_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3665
3662
|
{
|
|
3666
3663
|
PyObject *py_retval;
|
|
3667
3664
|
char *retval;
|
|
@@ -3671,15 +3668,15 @@ _wrap__whatsapp_whatsapp_Attachment_Caption_Get(PyObject * PYBINDGEN_UNUSED(dumm
|
|
|
3671
3668
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3672
3669
|
return NULL;
|
|
3673
3670
|
}
|
|
3674
|
-
retval =
|
|
3671
|
+
retval = whatsapp_Poll_Title_Get(handle);
|
|
3675
3672
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
3676
3673
|
return py_retval;
|
|
3677
3674
|
}
|
|
3678
|
-
PyObject *
|
|
3675
|
+
PyObject * _wrap__whatsapp_whatsapp_Poll_Title_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3679
3676
|
|
|
3680
3677
|
|
|
3681
3678
|
PyObject *
|
|
3682
|
-
|
|
3679
|
+
_wrap__whatsapp_whatsapp_Poll_Title_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3683
3680
|
{
|
|
3684
3681
|
PyObject *py_retval;
|
|
3685
3682
|
int64_t handle;
|
|
@@ -3689,16 +3686,16 @@ _wrap__whatsapp_whatsapp_Attachment_Caption_Set(PyObject * PYBINDGEN_UNUSED(dumm
|
|
|
3689
3686
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3690
3687
|
return NULL;
|
|
3691
3688
|
}
|
|
3692
|
-
|
|
3689
|
+
whatsapp_Poll_Title_Set(handle, val);
|
|
3693
3690
|
Py_INCREF(Py_None);
|
|
3694
3691
|
py_retval = Py_None;
|
|
3695
3692
|
return py_retval;
|
|
3696
3693
|
}
|
|
3697
|
-
PyObject *
|
|
3694
|
+
PyObject * _wrap__whatsapp_whatsapp_Poll_Title_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3698
3695
|
|
|
3699
3696
|
|
|
3700
3697
|
PyObject *
|
|
3701
|
-
|
|
3698
|
+
_wrap__whatsapp_whatsapp_Poll_Options_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3702
3699
|
{
|
|
3703
3700
|
PyObject *py_retval;
|
|
3704
3701
|
int64_t retval;
|
|
@@ -3708,15 +3705,15 @@ _wrap__whatsapp_whatsapp_Attachment_Data_Get(PyObject * PYBINDGEN_UNUSED(dummy),
|
|
|
3708
3705
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3709
3706
|
return NULL;
|
|
3710
3707
|
}
|
|
3711
|
-
retval =
|
|
3708
|
+
retval = whatsapp_Poll_Options_Get(handle);
|
|
3712
3709
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3713
3710
|
return py_retval;
|
|
3714
3711
|
}
|
|
3715
|
-
PyObject *
|
|
3712
|
+
PyObject * _wrap__whatsapp_whatsapp_Poll_Options_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3716
3713
|
|
|
3717
3714
|
|
|
3718
3715
|
PyObject *
|
|
3719
|
-
|
|
3716
|
+
_wrap__whatsapp_whatsapp_Poll_Options_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3720
3717
|
{
|
|
3721
3718
|
PyObject *py_retval;
|
|
3722
3719
|
int64_t handle;
|
|
@@ -3726,51 +3723,29 @@ _wrap__whatsapp_whatsapp_Attachment_Data_Set(PyObject * PYBINDGEN_UNUSED(dummy),
|
|
|
3726
3723
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3727
3724
|
return NULL;
|
|
3728
3725
|
}
|
|
3729
|
-
|
|
3726
|
+
whatsapp_Poll_Options_Set(handle, val);
|
|
3730
3727
|
Py_INCREF(Py_None);
|
|
3731
3728
|
py_retval = Py_None;
|
|
3732
3729
|
return py_retval;
|
|
3733
3730
|
}
|
|
3734
|
-
PyObject *
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
PyObject *
|
|
3738
|
-
_wrap__whatsapp_whatsapp_Attachment_GetSpec(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3739
|
-
{
|
|
3740
|
-
PyObject *py_retval;
|
|
3741
|
-
int64_t retval;
|
|
3742
|
-
int64_t _handle;
|
|
3743
|
-
int64_t ctx;
|
|
3744
|
-
const char *keywords[] = {"_handle", "ctx", NULL};
|
|
3745
|
-
|
|
3746
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &_handle, &ctx)) {
|
|
3747
|
-
return NULL;
|
|
3748
|
-
}
|
|
3749
|
-
retval = whatsapp_Attachment_GetSpec(_handle, ctx);
|
|
3750
|
-
if (PyErr_Occurred()) {
|
|
3751
|
-
return NULL;
|
|
3752
|
-
}
|
|
3753
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3754
|
-
return py_retval;
|
|
3755
|
-
}
|
|
3756
|
-
PyObject * _wrap__whatsapp_whatsapp_Attachment_GetSpec(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3731
|
+
PyObject * _wrap__whatsapp_whatsapp_Poll_Options_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3757
3732
|
|
|
3758
3733
|
|
|
3759
3734
|
PyObject *
|
|
3760
|
-
|
|
3735
|
+
_wrap__whatsapp_whatsapp_Group_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
3761
3736
|
{
|
|
3762
3737
|
PyObject *py_retval;
|
|
3763
3738
|
int64_t retval;
|
|
3764
3739
|
|
|
3765
|
-
retval =
|
|
3740
|
+
retval = whatsapp_Group_CTor();
|
|
3766
3741
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3767
3742
|
return py_retval;
|
|
3768
3743
|
}
|
|
3769
|
-
PyObject *
|
|
3744
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
3770
3745
|
|
|
3771
3746
|
|
|
3772
3747
|
PyObject *
|
|
3773
|
-
|
|
3748
|
+
_wrap__whatsapp_whatsapp_Group_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3774
3749
|
{
|
|
3775
3750
|
PyObject *py_retval;
|
|
3776
3751
|
char *retval;
|
|
@@ -3780,15 +3755,15 @@ _wrap__whatsapp_whatsapp_Connect_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyO
|
|
|
3780
3755
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3781
3756
|
return NULL;
|
|
3782
3757
|
}
|
|
3783
|
-
retval =
|
|
3758
|
+
retval = whatsapp_Group_JID_Get(handle);
|
|
3784
3759
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
3785
3760
|
return py_retval;
|
|
3786
3761
|
}
|
|
3787
|
-
PyObject *
|
|
3762
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3788
3763
|
|
|
3789
3764
|
|
|
3790
3765
|
PyObject *
|
|
3791
|
-
|
|
3766
|
+
_wrap__whatsapp_whatsapp_Group_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3792
3767
|
{
|
|
3793
3768
|
PyObject *py_retval;
|
|
3794
3769
|
int64_t handle;
|
|
@@ -3798,16 +3773,16 @@ _wrap__whatsapp_whatsapp_Connect_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyO
|
|
|
3798
3773
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3799
3774
|
return NULL;
|
|
3800
3775
|
}
|
|
3801
|
-
|
|
3776
|
+
whatsapp_Group_JID_Set(handle, val);
|
|
3802
3777
|
Py_INCREF(Py_None);
|
|
3803
3778
|
py_retval = Py_None;
|
|
3804
3779
|
return py_retval;
|
|
3805
3780
|
}
|
|
3806
|
-
PyObject *
|
|
3781
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3807
3782
|
|
|
3808
3783
|
|
|
3809
3784
|
PyObject *
|
|
3810
|
-
|
|
3785
|
+
_wrap__whatsapp_whatsapp_Group_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3811
3786
|
{
|
|
3812
3787
|
PyObject *py_retval;
|
|
3813
3788
|
char *retval;
|
|
@@ -3817,15 +3792,15 @@ _wrap__whatsapp_whatsapp_Connect_Error_Get(PyObject * PYBINDGEN_UNUSED(dummy), P
|
|
|
3817
3792
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3818
3793
|
return NULL;
|
|
3819
3794
|
}
|
|
3820
|
-
retval =
|
|
3795
|
+
retval = whatsapp_Group_Name_Get(handle);
|
|
3821
3796
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
3822
3797
|
return py_retval;
|
|
3823
3798
|
}
|
|
3824
|
-
PyObject *
|
|
3799
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3825
3800
|
|
|
3826
3801
|
|
|
3827
3802
|
PyObject *
|
|
3828
|
-
|
|
3803
|
+
_wrap__whatsapp_whatsapp_Group_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3829
3804
|
{
|
|
3830
3805
|
PyObject *py_retval;
|
|
3831
3806
|
int64_t handle;
|
|
@@ -3835,66 +3810,90 @@ _wrap__whatsapp_whatsapp_Connect_Error_Set(PyObject * PYBINDGEN_UNUSED(dummy), P
|
|
|
3835
3810
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3836
3811
|
return NULL;
|
|
3837
3812
|
}
|
|
3838
|
-
|
|
3813
|
+
whatsapp_Group_Name_Set(handle, val);
|
|
3839
3814
|
Py_INCREF(Py_None);
|
|
3840
3815
|
py_retval = Py_None;
|
|
3841
3816
|
return py_retval;
|
|
3842
3817
|
}
|
|
3843
|
-
PyObject *
|
|
3818
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3844
3819
|
|
|
3845
3820
|
|
|
3846
3821
|
PyObject *
|
|
3847
|
-
|
|
3822
|
+
_wrap__whatsapp_whatsapp_Group_Subject_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3848
3823
|
{
|
|
3849
3824
|
PyObject *py_retval;
|
|
3850
3825
|
int64_t retval;
|
|
3826
|
+
int64_t handle;
|
|
3827
|
+
const char *keywords[] = {"handle", NULL};
|
|
3851
3828
|
|
|
3852
|
-
|
|
3829
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3830
|
+
return NULL;
|
|
3831
|
+
}
|
|
3832
|
+
retval = whatsapp_Group_Subject_Get(handle);
|
|
3853
3833
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3854
3834
|
return py_retval;
|
|
3855
3835
|
}
|
|
3856
|
-
PyObject *
|
|
3836
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_Subject_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3857
3837
|
|
|
3858
3838
|
|
|
3859
3839
|
PyObject *
|
|
3860
|
-
|
|
3840
|
+
_wrap__whatsapp_whatsapp_Group_Subject_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3861
3841
|
{
|
|
3862
3842
|
PyObject *py_retval;
|
|
3863
|
-
int64_t
|
|
3843
|
+
int64_t handle;
|
|
3844
|
+
int64_t val;
|
|
3845
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
3846
|
+
|
|
3847
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3848
|
+
return NULL;
|
|
3849
|
+
}
|
|
3850
|
+
whatsapp_Group_Subject_Set(handle, val);
|
|
3851
|
+
Py_INCREF(Py_None);
|
|
3852
|
+
py_retval = Py_None;
|
|
3853
|
+
return py_retval;
|
|
3854
|
+
}
|
|
3855
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_Subject_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3856
|
+
|
|
3857
|
+
|
|
3858
|
+
PyObject *
|
|
3859
|
+
_wrap__whatsapp_whatsapp_Group_Nickname_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3860
|
+
{
|
|
3861
|
+
PyObject *py_retval;
|
|
3862
|
+
char *retval;
|
|
3864
3863
|
int64_t handle;
|
|
3865
3864
|
const char *keywords[] = {"handle", NULL};
|
|
3866
3865
|
|
|
3867
3866
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3868
3867
|
return NULL;
|
|
3869
3868
|
}
|
|
3870
|
-
retval =
|
|
3871
|
-
py_retval = Py_BuildValue((char *) "
|
|
3869
|
+
retval = whatsapp_Group_Nickname_Get(handle);
|
|
3870
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
3872
3871
|
return py_retval;
|
|
3873
3872
|
}
|
|
3874
|
-
PyObject *
|
|
3873
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_Nickname_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3875
3874
|
|
|
3876
3875
|
|
|
3877
3876
|
PyObject *
|
|
3878
|
-
|
|
3877
|
+
_wrap__whatsapp_whatsapp_Group_Nickname_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3879
3878
|
{
|
|
3880
3879
|
PyObject *py_retval;
|
|
3881
3880
|
int64_t handle;
|
|
3882
|
-
|
|
3881
|
+
char *val;
|
|
3883
3882
|
const char *keywords[] = {"handle", "val", NULL};
|
|
3884
3883
|
|
|
3885
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
3884
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3886
3885
|
return NULL;
|
|
3887
3886
|
}
|
|
3888
|
-
|
|
3887
|
+
whatsapp_Group_Nickname_Set(handle, val);
|
|
3889
3888
|
Py_INCREF(Py_None);
|
|
3890
3889
|
py_retval = Py_None;
|
|
3891
3890
|
return py_retval;
|
|
3892
3891
|
}
|
|
3893
|
-
PyObject *
|
|
3892
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_Nickname_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3894
3893
|
|
|
3895
3894
|
|
|
3896
3895
|
PyObject *
|
|
3897
|
-
|
|
3896
|
+
_wrap__whatsapp_whatsapp_Group_Participants_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3898
3897
|
{
|
|
3899
3898
|
PyObject *py_retval;
|
|
3900
3899
|
int64_t retval;
|
|
@@ -3904,15 +3903,15 @@ _wrap__whatsapp_whatsapp_Receipt_MessageIDs_Get(PyObject * PYBINDGEN_UNUSED(dumm
|
|
|
3904
3903
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3905
3904
|
return NULL;
|
|
3906
3905
|
}
|
|
3907
|
-
retval =
|
|
3906
|
+
retval = whatsapp_Group_Participants_Get(handle);
|
|
3908
3907
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3909
3908
|
return py_retval;
|
|
3910
3909
|
}
|
|
3911
|
-
PyObject *
|
|
3910
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_Participants_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3912
3911
|
|
|
3913
3912
|
|
|
3914
3913
|
PyObject *
|
|
3915
|
-
|
|
3914
|
+
_wrap__whatsapp_whatsapp_Group_Participants_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3916
3915
|
{
|
|
3917
3916
|
PyObject *py_retval;
|
|
3918
3917
|
int64_t handle;
|
|
@@ -3922,16 +3921,29 @@ _wrap__whatsapp_whatsapp_Receipt_MessageIDs_Set(PyObject * PYBINDGEN_UNUSED(dumm
|
|
|
3922
3921
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
3923
3922
|
return NULL;
|
|
3924
3923
|
}
|
|
3925
|
-
|
|
3924
|
+
whatsapp_Group_Participants_Set(handle, val);
|
|
3926
3925
|
Py_INCREF(Py_None);
|
|
3927
3926
|
py_retval = Py_None;
|
|
3928
3927
|
return py_retval;
|
|
3929
3928
|
}
|
|
3930
|
-
PyObject *
|
|
3929
|
+
PyObject * _wrap__whatsapp_whatsapp_Group_Participants_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3931
3930
|
|
|
3932
3931
|
|
|
3933
3932
|
PyObject *
|
|
3934
|
-
|
|
3933
|
+
_wrap__whatsapp_whatsapp_LinkedDevice_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
3934
|
+
{
|
|
3935
|
+
PyObject *py_retval;
|
|
3936
|
+
int64_t retval;
|
|
3937
|
+
|
|
3938
|
+
retval = whatsapp_LinkedDevice_CTor();
|
|
3939
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3940
|
+
return py_retval;
|
|
3941
|
+
}
|
|
3942
|
+
PyObject * _wrap__whatsapp_whatsapp_LinkedDevice_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
3943
|
+
|
|
3944
|
+
|
|
3945
|
+
PyObject *
|
|
3946
|
+
_wrap__whatsapp_whatsapp_LinkedDevice_ID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3935
3947
|
{
|
|
3936
3948
|
PyObject *py_retval;
|
|
3937
3949
|
char *retval;
|
|
@@ -3941,15 +3953,15 @@ _wrap__whatsapp_whatsapp_Receipt_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyO
|
|
|
3941
3953
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3942
3954
|
return NULL;
|
|
3943
3955
|
}
|
|
3944
|
-
retval =
|
|
3956
|
+
retval = whatsapp_LinkedDevice_ID_Get(handle);
|
|
3945
3957
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
3946
3958
|
return py_retval;
|
|
3947
3959
|
}
|
|
3948
|
-
PyObject *
|
|
3960
|
+
PyObject * _wrap__whatsapp_whatsapp_LinkedDevice_ID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3949
3961
|
|
|
3950
3962
|
|
|
3951
3963
|
PyObject *
|
|
3952
|
-
|
|
3964
|
+
_wrap__whatsapp_whatsapp_LinkedDevice_ID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3953
3965
|
{
|
|
3954
3966
|
PyObject *py_retval;
|
|
3955
3967
|
int64_t handle;
|
|
@@ -3959,16 +3971,50 @@ _wrap__whatsapp_whatsapp_Receipt_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyO
|
|
|
3959
3971
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3960
3972
|
return NULL;
|
|
3961
3973
|
}
|
|
3962
|
-
|
|
3974
|
+
whatsapp_LinkedDevice_ID_Set(handle, val);
|
|
3963
3975
|
Py_INCREF(Py_None);
|
|
3964
3976
|
py_retval = Py_None;
|
|
3965
3977
|
return py_retval;
|
|
3966
3978
|
}
|
|
3967
|
-
PyObject *
|
|
3979
|
+
PyObject * _wrap__whatsapp_whatsapp_LinkedDevice_ID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3968
3980
|
|
|
3969
3981
|
|
|
3970
3982
|
PyObject *
|
|
3971
|
-
|
|
3983
|
+
_wrap__whatsapp_whatsapp_LinkedDevice_JID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3984
|
+
{
|
|
3985
|
+
PyObject *py_retval;
|
|
3986
|
+
int64_t retval;
|
|
3987
|
+
int64_t _handle;
|
|
3988
|
+
const char *keywords[] = {"_handle", NULL};
|
|
3989
|
+
|
|
3990
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
|
3991
|
+
return NULL;
|
|
3992
|
+
}
|
|
3993
|
+
retval = whatsapp_LinkedDevice_JID(_handle);
|
|
3994
|
+
if (PyErr_Occurred()) {
|
|
3995
|
+
return NULL;
|
|
3996
|
+
}
|
|
3997
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
3998
|
+
return py_retval;
|
|
3999
|
+
}
|
|
4000
|
+
PyObject * _wrap__whatsapp_whatsapp_LinkedDevice_JID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4001
|
+
|
|
4002
|
+
|
|
4003
|
+
PyObject *
|
|
4004
|
+
_wrap__whatsapp_whatsapp_Presence_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
4005
|
+
{
|
|
4006
|
+
PyObject *py_retval;
|
|
4007
|
+
int64_t retval;
|
|
4008
|
+
|
|
4009
|
+
retval = whatsapp_Presence_CTor();
|
|
4010
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4011
|
+
return py_retval;
|
|
4012
|
+
}
|
|
4013
|
+
PyObject * _wrap__whatsapp_whatsapp_Presence_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
4014
|
+
|
|
4015
|
+
|
|
4016
|
+
PyObject *
|
|
4017
|
+
_wrap__whatsapp_whatsapp_Presence_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3972
4018
|
{
|
|
3973
4019
|
PyObject *py_retval;
|
|
3974
4020
|
char *retval;
|
|
@@ -3978,15 +4024,15 @@ _wrap__whatsapp_whatsapp_Receipt_GroupJID_Get(PyObject * PYBINDGEN_UNUSED(dummy)
|
|
|
3978
4024
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
3979
4025
|
return NULL;
|
|
3980
4026
|
}
|
|
3981
|
-
retval =
|
|
4027
|
+
retval = whatsapp_Presence_JID_Get(handle);
|
|
3982
4028
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
3983
4029
|
return py_retval;
|
|
3984
4030
|
}
|
|
3985
|
-
PyObject *
|
|
4031
|
+
PyObject * _wrap__whatsapp_whatsapp_Presence_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
3986
4032
|
|
|
3987
4033
|
|
|
3988
4034
|
PyObject *
|
|
3989
|
-
|
|
4035
|
+
_wrap__whatsapp_whatsapp_Presence_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
3990
4036
|
{
|
|
3991
4037
|
PyObject *py_retval;
|
|
3992
4038
|
int64_t handle;
|
|
@@ -3996,16 +4042,16 @@ _wrap__whatsapp_whatsapp_Receipt_GroupJID_Set(PyObject * PYBINDGEN_UNUSED(dummy)
|
|
|
3996
4042
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
3997
4043
|
return NULL;
|
|
3998
4044
|
}
|
|
3999
|
-
|
|
4045
|
+
whatsapp_Presence_JID_Set(handle, val);
|
|
4000
4046
|
Py_INCREF(Py_None);
|
|
4001
4047
|
py_retval = Py_None;
|
|
4002
4048
|
return py_retval;
|
|
4003
4049
|
}
|
|
4004
|
-
PyObject *
|
|
4050
|
+
PyObject * _wrap__whatsapp_whatsapp_Presence_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4005
4051
|
|
|
4006
4052
|
|
|
4007
4053
|
PyObject *
|
|
4008
|
-
|
|
4054
|
+
_wrap__whatsapp_whatsapp_Presence_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4009
4055
|
{
|
|
4010
4056
|
PyObject *py_retval;
|
|
4011
4057
|
int64_t retval;
|
|
@@ -4015,15 +4061,15 @@ _wrap__whatsapp_whatsapp_Receipt_Timestamp_Get(PyObject * PYBINDGEN_UNUSED(dummy
|
|
|
4015
4061
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4016
4062
|
return NULL;
|
|
4017
4063
|
}
|
|
4018
|
-
retval =
|
|
4064
|
+
retval = whatsapp_Presence_Kind_Get(handle);
|
|
4019
4065
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4020
4066
|
return py_retval;
|
|
4021
4067
|
}
|
|
4022
|
-
PyObject *
|
|
4068
|
+
PyObject * _wrap__whatsapp_whatsapp_Presence_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4023
4069
|
|
|
4024
4070
|
|
|
4025
4071
|
PyObject *
|
|
4026
|
-
|
|
4072
|
+
_wrap__whatsapp_whatsapp_Presence_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4027
4073
|
{
|
|
4028
4074
|
PyObject *py_retval;
|
|
4029
4075
|
int64_t handle;
|
|
@@ -4033,179 +4079,177 @@ _wrap__whatsapp_whatsapp_Receipt_Timestamp_Set(PyObject * PYBINDGEN_UNUSED(dummy
|
|
|
4033
4079
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
4034
4080
|
return NULL;
|
|
4035
4081
|
}
|
|
4036
|
-
|
|
4082
|
+
whatsapp_Presence_Kind_Set(handle, val);
|
|
4037
4083
|
Py_INCREF(Py_None);
|
|
4038
4084
|
py_retval = Py_None;
|
|
4039
4085
|
return py_retval;
|
|
4040
4086
|
}
|
|
4041
|
-
PyObject *
|
|
4087
|
+
PyObject * _wrap__whatsapp_whatsapp_Presence_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4042
4088
|
|
|
4043
4089
|
|
|
4044
4090
|
PyObject *
|
|
4045
|
-
|
|
4091
|
+
_wrap__whatsapp_whatsapp_Presence_LastSeen_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4046
4092
|
{
|
|
4047
4093
|
PyObject *py_retval;
|
|
4048
|
-
|
|
4094
|
+
int64_t retval;
|
|
4049
4095
|
int64_t handle;
|
|
4050
4096
|
const char *keywords[] = {"handle", NULL};
|
|
4051
4097
|
|
|
4052
4098
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4053
4099
|
return NULL;
|
|
4054
4100
|
}
|
|
4055
|
-
retval =
|
|
4056
|
-
py_retval = Py_BuildValue((char *) "
|
|
4101
|
+
retval = whatsapp_Presence_LastSeen_Get(handle);
|
|
4102
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4057
4103
|
return py_retval;
|
|
4058
4104
|
}
|
|
4059
|
-
PyObject *
|
|
4105
|
+
PyObject * _wrap__whatsapp_whatsapp_Presence_LastSeen_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4060
4106
|
|
|
4061
4107
|
|
|
4062
4108
|
PyObject *
|
|
4063
|
-
|
|
4109
|
+
_wrap__whatsapp_whatsapp_Presence_LastSeen_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4064
4110
|
{
|
|
4065
4111
|
PyObject *py_retval;
|
|
4066
4112
|
int64_t handle;
|
|
4067
|
-
|
|
4068
|
-
PyObject *py_val;
|
|
4113
|
+
int64_t val;
|
|
4069
4114
|
const char *keywords[] = {"handle", "val", NULL};
|
|
4070
4115
|
|
|
4071
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
4116
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
4072
4117
|
return NULL;
|
|
4073
4118
|
}
|
|
4074
|
-
|
|
4075
|
-
whatsapp_Receipt_IsCarbon_Set(handle, val);
|
|
4119
|
+
whatsapp_Presence_LastSeen_Set(handle, val);
|
|
4076
4120
|
Py_INCREF(Py_None);
|
|
4077
4121
|
py_retval = Py_None;
|
|
4078
4122
|
return py_retval;
|
|
4079
4123
|
}
|
|
4080
|
-
PyObject *
|
|
4124
|
+
PyObject * _wrap__whatsapp_whatsapp_Presence_LastSeen_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4081
4125
|
|
|
4082
4126
|
|
|
4083
4127
|
PyObject *
|
|
4084
|
-
|
|
4128
|
+
_wrap__whatsapp_whatsapp_Receipt_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
4085
4129
|
{
|
|
4086
4130
|
PyObject *py_retval;
|
|
4087
4131
|
int64_t retval;
|
|
4088
4132
|
|
|
4089
|
-
retval =
|
|
4133
|
+
retval = whatsapp_Receipt_CTor();
|
|
4090
4134
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4091
4135
|
return py_retval;
|
|
4092
4136
|
}
|
|
4093
|
-
PyObject *
|
|
4137
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
4094
4138
|
|
|
4095
4139
|
|
|
4096
4140
|
PyObject *
|
|
4097
|
-
|
|
4141
|
+
_wrap__whatsapp_whatsapp_Receipt_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4098
4142
|
{
|
|
4099
4143
|
PyObject *py_retval;
|
|
4100
|
-
|
|
4144
|
+
int64_t retval;
|
|
4101
4145
|
int64_t handle;
|
|
4102
4146
|
const char *keywords[] = {"handle", NULL};
|
|
4103
4147
|
|
|
4104
4148
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4105
4149
|
return NULL;
|
|
4106
4150
|
}
|
|
4107
|
-
retval =
|
|
4108
|
-
py_retval = Py_BuildValue((char *) "
|
|
4151
|
+
retval = whatsapp_Receipt_Kind_Get(handle);
|
|
4152
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4109
4153
|
return py_retval;
|
|
4110
4154
|
}
|
|
4111
|
-
PyObject *
|
|
4155
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4112
4156
|
|
|
4113
4157
|
|
|
4114
4158
|
PyObject *
|
|
4115
|
-
|
|
4159
|
+
_wrap__whatsapp_whatsapp_Receipt_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4116
4160
|
{
|
|
4117
4161
|
PyObject *py_retval;
|
|
4118
4162
|
int64_t handle;
|
|
4119
|
-
|
|
4163
|
+
int64_t val;
|
|
4120
4164
|
const char *keywords[] = {"handle", "val", NULL};
|
|
4121
4165
|
|
|
4122
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
4166
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
4123
4167
|
return NULL;
|
|
4124
4168
|
}
|
|
4125
|
-
|
|
4169
|
+
whatsapp_Receipt_Kind_Set(handle, val);
|
|
4126
4170
|
Py_INCREF(Py_None);
|
|
4127
4171
|
py_retval = Py_None;
|
|
4128
4172
|
return py_retval;
|
|
4129
4173
|
}
|
|
4130
|
-
PyObject *
|
|
4174
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4131
4175
|
|
|
4132
4176
|
|
|
4133
4177
|
PyObject *
|
|
4134
|
-
|
|
4178
|
+
_wrap__whatsapp_whatsapp_Receipt_MessageIDs_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4135
4179
|
{
|
|
4136
4180
|
PyObject *py_retval;
|
|
4137
|
-
|
|
4181
|
+
int64_t retval;
|
|
4138
4182
|
int64_t handle;
|
|
4139
4183
|
const char *keywords[] = {"handle", NULL};
|
|
4140
4184
|
|
|
4141
4185
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4142
4186
|
return NULL;
|
|
4143
4187
|
}
|
|
4144
|
-
retval =
|
|
4145
|
-
py_retval = Py_BuildValue((char *) "
|
|
4188
|
+
retval = whatsapp_Receipt_MessageIDs_Get(handle);
|
|
4189
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4146
4190
|
return py_retval;
|
|
4147
4191
|
}
|
|
4148
|
-
PyObject *
|
|
4192
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_MessageIDs_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4149
4193
|
|
|
4150
4194
|
|
|
4151
4195
|
PyObject *
|
|
4152
|
-
|
|
4196
|
+
_wrap__whatsapp_whatsapp_Receipt_MessageIDs_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4153
4197
|
{
|
|
4154
4198
|
PyObject *py_retval;
|
|
4155
4199
|
int64_t handle;
|
|
4156
|
-
|
|
4200
|
+
int64_t val;
|
|
4157
4201
|
const char *keywords[] = {"handle", "val", NULL};
|
|
4158
4202
|
|
|
4159
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
4203
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
4160
4204
|
return NULL;
|
|
4161
4205
|
}
|
|
4162
|
-
|
|
4206
|
+
whatsapp_Receipt_MessageIDs_Set(handle, val);
|
|
4163
4207
|
Py_INCREF(Py_None);
|
|
4164
4208
|
py_retval = Py_None;
|
|
4165
4209
|
return py_retval;
|
|
4166
4210
|
}
|
|
4167
|
-
PyObject *
|
|
4211
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_MessageIDs_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4168
4212
|
|
|
4169
4213
|
|
|
4170
4214
|
PyObject *
|
|
4171
|
-
|
|
4215
|
+
_wrap__whatsapp_whatsapp_Receipt_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4172
4216
|
{
|
|
4173
4217
|
PyObject *py_retval;
|
|
4174
|
-
|
|
4218
|
+
char *retval;
|
|
4175
4219
|
int64_t handle;
|
|
4176
4220
|
const char *keywords[] = {"handle", NULL};
|
|
4177
4221
|
|
|
4178
4222
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4179
4223
|
return NULL;
|
|
4180
4224
|
}
|
|
4181
|
-
retval =
|
|
4182
|
-
py_retval = Py_BuildValue((char *) "
|
|
4225
|
+
retval = whatsapp_Receipt_JID_Get(handle);
|
|
4226
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
4183
4227
|
return py_retval;
|
|
4184
4228
|
}
|
|
4185
|
-
PyObject *
|
|
4229
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4186
4230
|
|
|
4187
4231
|
|
|
4188
4232
|
PyObject *
|
|
4189
|
-
|
|
4233
|
+
_wrap__whatsapp_whatsapp_Receipt_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4190
4234
|
{
|
|
4191
4235
|
PyObject *py_retval;
|
|
4192
4236
|
int64_t handle;
|
|
4193
|
-
|
|
4237
|
+
char *val;
|
|
4194
4238
|
const char *keywords[] = {"handle", "val", NULL};
|
|
4195
4239
|
|
|
4196
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
4240
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
4197
4241
|
return NULL;
|
|
4198
4242
|
}
|
|
4199
|
-
|
|
4243
|
+
whatsapp_Receipt_JID_Set(handle, val);
|
|
4200
4244
|
Py_INCREF(Py_None);
|
|
4201
4245
|
py_retval = Py_None;
|
|
4202
4246
|
return py_retval;
|
|
4203
4247
|
}
|
|
4204
|
-
PyObject *
|
|
4248
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4205
4249
|
|
|
4206
4250
|
|
|
4207
4251
|
PyObject *
|
|
4208
|
-
|
|
4252
|
+
_wrap__whatsapp_whatsapp_Receipt_GroupJID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4209
4253
|
{
|
|
4210
4254
|
PyObject *py_retval;
|
|
4211
4255
|
char *retval;
|
|
@@ -4215,15 +4259,15 @@ _wrap__whatsapp_whatsapp_Group_Nickname_Get(PyObject * PYBINDGEN_UNUSED(dummy),
|
|
|
4215
4259
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4216
4260
|
return NULL;
|
|
4217
4261
|
}
|
|
4218
|
-
retval =
|
|
4262
|
+
retval = whatsapp_Receipt_GroupJID_Get(handle);
|
|
4219
4263
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
4220
4264
|
return py_retval;
|
|
4221
4265
|
}
|
|
4222
|
-
PyObject *
|
|
4266
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_GroupJID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4223
4267
|
|
|
4224
4268
|
|
|
4225
4269
|
PyObject *
|
|
4226
|
-
|
|
4270
|
+
_wrap__whatsapp_whatsapp_Receipt_GroupJID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4227
4271
|
{
|
|
4228
4272
|
PyObject *py_retval;
|
|
4229
4273
|
int64_t handle;
|
|
@@ -4233,16 +4277,16 @@ _wrap__whatsapp_whatsapp_Group_Nickname_Set(PyObject * PYBINDGEN_UNUSED(dummy),
|
|
|
4233
4277
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
4234
4278
|
return NULL;
|
|
4235
4279
|
}
|
|
4236
|
-
|
|
4280
|
+
whatsapp_Receipt_GroupJID_Set(handle, val);
|
|
4237
4281
|
Py_INCREF(Py_None);
|
|
4238
4282
|
py_retval = Py_None;
|
|
4239
4283
|
return py_retval;
|
|
4240
4284
|
}
|
|
4241
|
-
PyObject *
|
|
4285
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_GroupJID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4242
4286
|
|
|
4243
4287
|
|
|
4244
4288
|
PyObject *
|
|
4245
|
-
|
|
4289
|
+
_wrap__whatsapp_whatsapp_Receipt_Timestamp_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4246
4290
|
{
|
|
4247
4291
|
PyObject *py_retval;
|
|
4248
4292
|
int64_t retval;
|
|
@@ -4252,15 +4296,15 @@ _wrap__whatsapp_whatsapp_Group_Participants_Get(PyObject * PYBINDGEN_UNUSED(dumm
|
|
|
4252
4296
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4253
4297
|
return NULL;
|
|
4254
4298
|
}
|
|
4255
|
-
retval =
|
|
4299
|
+
retval = whatsapp_Receipt_Timestamp_Get(handle);
|
|
4256
4300
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4257
4301
|
return py_retval;
|
|
4258
4302
|
}
|
|
4259
|
-
PyObject *
|
|
4303
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_Timestamp_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4260
4304
|
|
|
4261
4305
|
|
|
4262
4306
|
PyObject *
|
|
4263
|
-
|
|
4307
|
+
_wrap__whatsapp_whatsapp_Receipt_Timestamp_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4264
4308
|
{
|
|
4265
4309
|
PyObject *py_retval;
|
|
4266
4310
|
int64_t handle;
|
|
@@ -4270,29 +4314,68 @@ _wrap__whatsapp_whatsapp_Group_Participants_Set(PyObject * PYBINDGEN_UNUSED(dumm
|
|
|
4270
4314
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
4271
4315
|
return NULL;
|
|
4272
4316
|
}
|
|
4273
|
-
|
|
4317
|
+
whatsapp_Receipt_Timestamp_Set(handle, val);
|
|
4274
4318
|
Py_INCREF(Py_None);
|
|
4275
4319
|
py_retval = Py_None;
|
|
4276
4320
|
return py_retval;
|
|
4277
4321
|
}
|
|
4278
|
-
PyObject *
|
|
4322
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_Timestamp_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4279
4323
|
|
|
4280
4324
|
|
|
4281
4325
|
PyObject *
|
|
4282
|
-
|
|
4326
|
+
_wrap__whatsapp_whatsapp_Receipt_IsCarbon_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4327
|
+
{
|
|
4328
|
+
PyObject *py_retval;
|
|
4329
|
+
bool retval;
|
|
4330
|
+
int64_t handle;
|
|
4331
|
+
const char *keywords[] = {"handle", NULL};
|
|
4332
|
+
|
|
4333
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4334
|
+
return NULL;
|
|
4335
|
+
}
|
|
4336
|
+
retval = whatsapp_Receipt_IsCarbon_Get(handle);
|
|
4337
|
+
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
|
4338
|
+
return py_retval;
|
|
4339
|
+
}
|
|
4340
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_IsCarbon_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4341
|
+
|
|
4342
|
+
|
|
4343
|
+
PyObject *
|
|
4344
|
+
_wrap__whatsapp_whatsapp_Receipt_IsCarbon_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4345
|
+
{
|
|
4346
|
+
PyObject *py_retval;
|
|
4347
|
+
int64_t handle;
|
|
4348
|
+
bool val;
|
|
4349
|
+
PyObject *py_val;
|
|
4350
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
4351
|
+
|
|
4352
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LO", (char **) keywords, &handle, &py_val)) {
|
|
4353
|
+
return NULL;
|
|
4354
|
+
}
|
|
4355
|
+
val = (bool) PyObject_IsTrue(py_val);
|
|
4356
|
+
whatsapp_Receipt_IsCarbon_Set(handle, val);
|
|
4357
|
+
Py_INCREF(Py_None);
|
|
4358
|
+
py_retval = Py_None;
|
|
4359
|
+
return py_retval;
|
|
4360
|
+
}
|
|
4361
|
+
PyObject * _wrap__whatsapp_whatsapp_Receipt_IsCarbon_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4362
|
+
|
|
4363
|
+
|
|
4364
|
+
PyObject *
|
|
4365
|
+
_wrap__whatsapp_whatsapp_Attachment_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
4283
4366
|
{
|
|
4284
4367
|
PyObject *py_retval;
|
|
4285
4368
|
int64_t retval;
|
|
4286
4369
|
|
|
4287
|
-
retval =
|
|
4370
|
+
retval = whatsapp_Attachment_CTor();
|
|
4288
4371
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4289
4372
|
return py_retval;
|
|
4290
4373
|
}
|
|
4291
|
-
PyObject *
|
|
4374
|
+
PyObject * _wrap__whatsapp_whatsapp_Attachment_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
4292
4375
|
|
|
4293
4376
|
|
|
4294
4377
|
PyObject *
|
|
4295
|
-
|
|
4378
|
+
_wrap__whatsapp_whatsapp_Attachment_MIME_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4296
4379
|
{
|
|
4297
4380
|
PyObject *py_retval;
|
|
4298
4381
|
char *retval;
|
|
@@ -4302,15 +4385,15 @@ _wrap__whatsapp_whatsapp_Presence_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), Py
|
|
|
4302
4385
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4303
4386
|
return NULL;
|
|
4304
4387
|
}
|
|
4305
|
-
retval =
|
|
4388
|
+
retval = whatsapp_Attachment_MIME_Get(handle);
|
|
4306
4389
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
4307
4390
|
return py_retval;
|
|
4308
4391
|
}
|
|
4309
|
-
PyObject *
|
|
4392
|
+
PyObject * _wrap__whatsapp_whatsapp_Attachment_MIME_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4310
4393
|
|
|
4311
4394
|
|
|
4312
4395
|
PyObject *
|
|
4313
|
-
|
|
4396
|
+
_wrap__whatsapp_whatsapp_Attachment_MIME_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4314
4397
|
{
|
|
4315
4398
|
PyObject *py_retval;
|
|
4316
4399
|
int64_t handle;
|
|
@@ -4320,16 +4403,90 @@ _wrap__whatsapp_whatsapp_Presence_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), Py
|
|
|
4320
4403
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
4321
4404
|
return NULL;
|
|
4322
4405
|
}
|
|
4323
|
-
|
|
4406
|
+
whatsapp_Attachment_MIME_Set(handle, val);
|
|
4324
4407
|
Py_INCREF(Py_None);
|
|
4325
4408
|
py_retval = Py_None;
|
|
4326
4409
|
return py_retval;
|
|
4327
4410
|
}
|
|
4328
|
-
PyObject *
|
|
4411
|
+
PyObject * _wrap__whatsapp_whatsapp_Attachment_MIME_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4329
4412
|
|
|
4330
4413
|
|
|
4331
4414
|
PyObject *
|
|
4332
|
-
|
|
4415
|
+
_wrap__whatsapp_whatsapp_Attachment_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4416
|
+
{
|
|
4417
|
+
PyObject *py_retval;
|
|
4418
|
+
char *retval;
|
|
4419
|
+
int64_t handle;
|
|
4420
|
+
const char *keywords[] = {"handle", NULL};
|
|
4421
|
+
|
|
4422
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4423
|
+
return NULL;
|
|
4424
|
+
}
|
|
4425
|
+
retval = whatsapp_Attachment_Filename_Get(handle);
|
|
4426
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
4427
|
+
return py_retval;
|
|
4428
|
+
}
|
|
4429
|
+
PyObject * _wrap__whatsapp_whatsapp_Attachment_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4430
|
+
|
|
4431
|
+
|
|
4432
|
+
PyObject *
|
|
4433
|
+
_wrap__whatsapp_whatsapp_Attachment_Filename_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4434
|
+
{
|
|
4435
|
+
PyObject *py_retval;
|
|
4436
|
+
int64_t handle;
|
|
4437
|
+
char *val;
|
|
4438
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
4439
|
+
|
|
4440
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
4441
|
+
return NULL;
|
|
4442
|
+
}
|
|
4443
|
+
whatsapp_Attachment_Filename_Set(handle, val);
|
|
4444
|
+
Py_INCREF(Py_None);
|
|
4445
|
+
py_retval = Py_None;
|
|
4446
|
+
return py_retval;
|
|
4447
|
+
}
|
|
4448
|
+
PyObject * _wrap__whatsapp_whatsapp_Attachment_Filename_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4449
|
+
|
|
4450
|
+
|
|
4451
|
+
PyObject *
|
|
4452
|
+
_wrap__whatsapp_whatsapp_Attachment_Caption_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4453
|
+
{
|
|
4454
|
+
PyObject *py_retval;
|
|
4455
|
+
char *retval;
|
|
4456
|
+
int64_t handle;
|
|
4457
|
+
const char *keywords[] = {"handle", NULL};
|
|
4458
|
+
|
|
4459
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4460
|
+
return NULL;
|
|
4461
|
+
}
|
|
4462
|
+
retval = whatsapp_Attachment_Caption_Get(handle);
|
|
4463
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
4464
|
+
return py_retval;
|
|
4465
|
+
}
|
|
4466
|
+
PyObject * _wrap__whatsapp_whatsapp_Attachment_Caption_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4467
|
+
|
|
4468
|
+
|
|
4469
|
+
PyObject *
|
|
4470
|
+
_wrap__whatsapp_whatsapp_Attachment_Caption_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4471
|
+
{
|
|
4472
|
+
PyObject *py_retval;
|
|
4473
|
+
int64_t handle;
|
|
4474
|
+
char *val;
|
|
4475
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
4476
|
+
|
|
4477
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
4478
|
+
return NULL;
|
|
4479
|
+
}
|
|
4480
|
+
whatsapp_Attachment_Caption_Set(handle, val);
|
|
4481
|
+
Py_INCREF(Py_None);
|
|
4482
|
+
py_retval = Py_None;
|
|
4483
|
+
return py_retval;
|
|
4484
|
+
}
|
|
4485
|
+
PyObject * _wrap__whatsapp_whatsapp_Attachment_Caption_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4486
|
+
|
|
4487
|
+
|
|
4488
|
+
PyObject *
|
|
4489
|
+
_wrap__whatsapp_whatsapp_Attachment_Data_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4333
4490
|
{
|
|
4334
4491
|
PyObject *py_retval;
|
|
4335
4492
|
int64_t retval;
|
|
@@ -4339,15 +4496,15 @@ _wrap__whatsapp_whatsapp_Presence_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), P
|
|
|
4339
4496
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4340
4497
|
return NULL;
|
|
4341
4498
|
}
|
|
4342
|
-
retval =
|
|
4499
|
+
retval = whatsapp_Attachment_Data_Get(handle);
|
|
4343
4500
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4344
4501
|
return py_retval;
|
|
4345
4502
|
}
|
|
4346
|
-
PyObject *
|
|
4503
|
+
PyObject * _wrap__whatsapp_whatsapp_Attachment_Data_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4347
4504
|
|
|
4348
4505
|
|
|
4349
4506
|
PyObject *
|
|
4350
|
-
|
|
4507
|
+
_wrap__whatsapp_whatsapp_Attachment_Data_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4351
4508
|
{
|
|
4352
4509
|
PyObject *py_retval;
|
|
4353
4510
|
int64_t handle;
|
|
@@ -4357,49 +4514,121 @@ _wrap__whatsapp_whatsapp_Presence_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), P
|
|
|
4357
4514
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
4358
4515
|
return NULL;
|
|
4359
4516
|
}
|
|
4360
|
-
|
|
4517
|
+
whatsapp_Attachment_Data_Set(handle, val);
|
|
4361
4518
|
Py_INCREF(Py_None);
|
|
4362
4519
|
py_retval = Py_None;
|
|
4363
4520
|
return py_retval;
|
|
4364
4521
|
}
|
|
4365
|
-
PyObject *
|
|
4522
|
+
PyObject * _wrap__whatsapp_whatsapp_Attachment_Data_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4366
4523
|
|
|
4367
4524
|
|
|
4368
4525
|
PyObject *
|
|
4369
|
-
|
|
4526
|
+
_wrap__whatsapp_whatsapp_Attachment_GetSpec(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4527
|
+
{
|
|
4528
|
+
PyObject *py_retval;
|
|
4529
|
+
int64_t retval;
|
|
4530
|
+
int64_t _handle;
|
|
4531
|
+
int64_t ctx;
|
|
4532
|
+
const char *keywords[] = {"_handle", "ctx", NULL};
|
|
4533
|
+
|
|
4534
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &_handle, &ctx)) {
|
|
4535
|
+
return NULL;
|
|
4536
|
+
}
|
|
4537
|
+
retval = whatsapp_Attachment_GetSpec(_handle, ctx);
|
|
4538
|
+
if (PyErr_Occurred()) {
|
|
4539
|
+
return NULL;
|
|
4540
|
+
}
|
|
4541
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4542
|
+
return py_retval;
|
|
4543
|
+
}
|
|
4544
|
+
PyObject * _wrap__whatsapp_whatsapp_Attachment_GetSpec(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4545
|
+
|
|
4546
|
+
|
|
4547
|
+
PyObject *
|
|
4548
|
+
_wrap__whatsapp_whatsapp_Contact_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
4370
4549
|
{
|
|
4371
4550
|
PyObject *py_retval;
|
|
4372
4551
|
int64_t retval;
|
|
4552
|
+
|
|
4553
|
+
retval = whatsapp_Contact_CTor();
|
|
4554
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
4555
|
+
return py_retval;
|
|
4556
|
+
}
|
|
4557
|
+
PyObject * _wrap__whatsapp_whatsapp_Contact_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
4558
|
+
|
|
4559
|
+
|
|
4560
|
+
PyObject *
|
|
4561
|
+
_wrap__whatsapp_whatsapp_Contact_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4562
|
+
{
|
|
4563
|
+
PyObject *py_retval;
|
|
4564
|
+
char *retval;
|
|
4373
4565
|
int64_t handle;
|
|
4374
4566
|
const char *keywords[] = {"handle", NULL};
|
|
4375
4567
|
|
|
4376
4568
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4377
4569
|
return NULL;
|
|
4378
4570
|
}
|
|
4379
|
-
retval =
|
|
4380
|
-
py_retval = Py_BuildValue((char *) "
|
|
4571
|
+
retval = whatsapp_Contact_JID_Get(handle);
|
|
4572
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
4381
4573
|
return py_retval;
|
|
4382
4574
|
}
|
|
4383
|
-
PyObject *
|
|
4575
|
+
PyObject * _wrap__whatsapp_whatsapp_Contact_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4384
4576
|
|
|
4385
4577
|
|
|
4386
4578
|
PyObject *
|
|
4387
|
-
|
|
4579
|
+
_wrap__whatsapp_whatsapp_Contact_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4388
4580
|
{
|
|
4389
4581
|
PyObject *py_retval;
|
|
4390
4582
|
int64_t handle;
|
|
4391
|
-
|
|
4583
|
+
char *val;
|
|
4392
4584
|
const char *keywords[] = {"handle", "val", NULL};
|
|
4393
4585
|
|
|
4394
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
4586
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
4395
4587
|
return NULL;
|
|
4396
4588
|
}
|
|
4397
|
-
|
|
4589
|
+
whatsapp_Contact_JID_Set(handle, val);
|
|
4398
4590
|
Py_INCREF(Py_None);
|
|
4399
4591
|
py_retval = Py_None;
|
|
4400
4592
|
return py_retval;
|
|
4401
4593
|
}
|
|
4402
|
-
PyObject *
|
|
4594
|
+
PyObject * _wrap__whatsapp_whatsapp_Contact_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4595
|
+
|
|
4596
|
+
|
|
4597
|
+
PyObject *
|
|
4598
|
+
_wrap__whatsapp_whatsapp_Contact_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4599
|
+
{
|
|
4600
|
+
PyObject *py_retval;
|
|
4601
|
+
char *retval;
|
|
4602
|
+
int64_t handle;
|
|
4603
|
+
const char *keywords[] = {"handle", NULL};
|
|
4604
|
+
|
|
4605
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
4606
|
+
return NULL;
|
|
4607
|
+
}
|
|
4608
|
+
retval = whatsapp_Contact_Name_Get(handle);
|
|
4609
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
4610
|
+
return py_retval;
|
|
4611
|
+
}
|
|
4612
|
+
PyObject * _wrap__whatsapp_whatsapp_Contact_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4613
|
+
|
|
4614
|
+
|
|
4615
|
+
PyObject *
|
|
4616
|
+
_wrap__whatsapp_whatsapp_Contact_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
4617
|
+
{
|
|
4618
|
+
PyObject *py_retval;
|
|
4619
|
+
int64_t handle;
|
|
4620
|
+
char *val;
|
|
4621
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
4622
|
+
|
|
4623
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
4624
|
+
return NULL;
|
|
4625
|
+
}
|
|
4626
|
+
whatsapp_Contact_Name_Set(handle, val);
|
|
4627
|
+
Py_INCREF(Py_None);
|
|
4628
|
+
py_retval = Py_None;
|
|
4629
|
+
return py_retval;
|
|
4630
|
+
}
|
|
4631
|
+
PyObject * _wrap__whatsapp_whatsapp_Contact_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
4403
4632
|
|
|
4404
4633
|
|
|
4405
4634
|
PyObject *
|
|
@@ -5012,144 +5241,57 @@ PyObject * _wrap__whatsapp_whatsapp_Gateway_CleanupSession(PyObject * PYBINDGEN_
|
|
|
5012
5241
|
|
|
5013
5242
|
|
|
5014
5243
|
PyObject *
|
|
5015
|
-
|
|
5244
|
+
_wrap__whatsapp_whatsapp_ChatState_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
5016
5245
|
{
|
|
5017
5246
|
PyObject *py_retval;
|
|
5018
5247
|
int64_t retval;
|
|
5019
5248
|
|
|
5020
|
-
retval =
|
|
5249
|
+
retval = whatsapp_ChatState_CTor();
|
|
5021
5250
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5022
5251
|
return py_retval;
|
|
5023
5252
|
}
|
|
5024
|
-
PyObject *
|
|
5253
|
+
PyObject * _wrap__whatsapp_whatsapp_ChatState_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
5025
5254
|
|
|
5026
5255
|
|
|
5027
5256
|
PyObject *
|
|
5028
|
-
|
|
5257
|
+
_wrap__whatsapp_whatsapp_ChatState_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5029
5258
|
{
|
|
5030
5259
|
PyObject *py_retval;
|
|
5031
|
-
|
|
5260
|
+
int64_t retval;
|
|
5032
5261
|
int64_t handle;
|
|
5033
5262
|
const char *keywords[] = {"handle", NULL};
|
|
5034
5263
|
|
|
5035
5264
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5036
5265
|
return NULL;
|
|
5037
5266
|
}
|
|
5038
|
-
retval =
|
|
5039
|
-
py_retval = Py_BuildValue((char *) "
|
|
5267
|
+
retval = whatsapp_ChatState_Kind_Get(handle);
|
|
5268
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5040
5269
|
return py_retval;
|
|
5041
5270
|
}
|
|
5042
|
-
PyObject *
|
|
5271
|
+
PyObject * _wrap__whatsapp_whatsapp_ChatState_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5043
5272
|
|
|
5044
5273
|
|
|
5045
5274
|
PyObject *
|
|
5046
|
-
|
|
5275
|
+
_wrap__whatsapp_whatsapp_ChatState_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5047
5276
|
{
|
|
5048
5277
|
PyObject *py_retval;
|
|
5049
5278
|
int64_t handle;
|
|
5050
|
-
|
|
5051
|
-
const char *keywords[] = {"handle", "val", NULL};
|
|
5052
|
-
|
|
5053
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
5054
|
-
return NULL;
|
|
5055
|
-
}
|
|
5056
|
-
whatsapp_GroupParticipant_JID_Set(handle, val);
|
|
5057
|
-
Py_INCREF(Py_None);
|
|
5058
|
-
py_retval = Py_None;
|
|
5059
|
-
return py_retval;
|
|
5060
|
-
}
|
|
5061
|
-
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
PyObject *
|
|
5065
|
-
_wrap__whatsapp_whatsapp_GroupParticipant_Affiliation_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5066
|
-
{
|
|
5067
|
-
PyObject *py_retval;
|
|
5068
|
-
int64_t retval;
|
|
5069
|
-
int64_t handle;
|
|
5070
|
-
const char *keywords[] = {"handle", NULL};
|
|
5071
|
-
|
|
5072
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5073
|
-
return NULL;
|
|
5074
|
-
}
|
|
5075
|
-
retval = whatsapp_GroupParticipant_Affiliation_Get(handle);
|
|
5076
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5077
|
-
return py_retval;
|
|
5078
|
-
}
|
|
5079
|
-
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_Affiliation_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5080
|
-
|
|
5081
|
-
|
|
5082
|
-
PyObject *
|
|
5083
|
-
_wrap__whatsapp_whatsapp_GroupParticipant_Affiliation_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5084
|
-
{
|
|
5085
|
-
PyObject *py_retval;
|
|
5086
|
-
int64_t handle;
|
|
5087
|
-
int64_t val;
|
|
5088
|
-
const char *keywords[] = {"handle", "val", NULL};
|
|
5089
|
-
|
|
5090
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
5091
|
-
return NULL;
|
|
5092
|
-
}
|
|
5093
|
-
whatsapp_GroupParticipant_Affiliation_Set(handle, val);
|
|
5094
|
-
Py_INCREF(Py_None);
|
|
5095
|
-
py_retval = Py_None;
|
|
5096
|
-
return py_retval;
|
|
5097
|
-
}
|
|
5098
|
-
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_Affiliation_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5099
|
-
|
|
5100
|
-
|
|
5101
|
-
PyObject *
|
|
5102
|
-
_wrap__whatsapp_whatsapp_GroupParticipant_Action_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5103
|
-
{
|
|
5104
|
-
PyObject *py_retval;
|
|
5105
|
-
int64_t retval;
|
|
5106
|
-
int64_t handle;
|
|
5107
|
-
const char *keywords[] = {"handle", NULL};
|
|
5108
|
-
|
|
5109
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5110
|
-
return NULL;
|
|
5111
|
-
}
|
|
5112
|
-
retval = whatsapp_GroupParticipant_Action_Get(handle);
|
|
5113
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5114
|
-
return py_retval;
|
|
5115
|
-
}
|
|
5116
|
-
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_Action_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5117
|
-
|
|
5118
|
-
|
|
5119
|
-
PyObject *
|
|
5120
|
-
_wrap__whatsapp_whatsapp_GroupParticipant_Action_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5121
|
-
{
|
|
5122
|
-
PyObject *py_retval;
|
|
5123
|
-
int64_t handle;
|
|
5124
|
-
int64_t val;
|
|
5279
|
+
int64_t val;
|
|
5125
5280
|
const char *keywords[] = {"handle", "val", NULL};
|
|
5126
5281
|
|
|
5127
5282
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
5128
5283
|
return NULL;
|
|
5129
5284
|
}
|
|
5130
|
-
|
|
5285
|
+
whatsapp_ChatState_Kind_Set(handle, val);
|
|
5131
5286
|
Py_INCREF(Py_None);
|
|
5132
5287
|
py_retval = Py_None;
|
|
5133
5288
|
return py_retval;
|
|
5134
5289
|
}
|
|
5135
|
-
PyObject *
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
PyObject *
|
|
5139
|
-
_wrap__whatsapp_whatsapp_Avatar_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
5140
|
-
{
|
|
5141
|
-
PyObject *py_retval;
|
|
5142
|
-
int64_t retval;
|
|
5143
|
-
|
|
5144
|
-
retval = whatsapp_Avatar_CTor();
|
|
5145
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5146
|
-
return py_retval;
|
|
5147
|
-
}
|
|
5148
|
-
PyObject * _wrap__whatsapp_whatsapp_Avatar_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
5290
|
+
PyObject * _wrap__whatsapp_whatsapp_ChatState_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5149
5291
|
|
|
5150
5292
|
|
|
5151
5293
|
PyObject *
|
|
5152
|
-
|
|
5294
|
+
_wrap__whatsapp_whatsapp_ChatState_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5153
5295
|
{
|
|
5154
5296
|
PyObject *py_retval;
|
|
5155
5297
|
char *retval;
|
|
@@ -5159,15 +5301,15 @@ _wrap__whatsapp_whatsapp_Avatar_ID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObj
|
|
|
5159
5301
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5160
5302
|
return NULL;
|
|
5161
5303
|
}
|
|
5162
|
-
retval =
|
|
5304
|
+
retval = whatsapp_ChatState_JID_Get(handle);
|
|
5163
5305
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5164
5306
|
return py_retval;
|
|
5165
5307
|
}
|
|
5166
|
-
PyObject *
|
|
5308
|
+
PyObject * _wrap__whatsapp_whatsapp_ChatState_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5167
5309
|
|
|
5168
5310
|
|
|
5169
5311
|
PyObject *
|
|
5170
|
-
|
|
5312
|
+
_wrap__whatsapp_whatsapp_ChatState_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5171
5313
|
{
|
|
5172
5314
|
PyObject *py_retval;
|
|
5173
5315
|
int64_t handle;
|
|
@@ -5177,16 +5319,16 @@ _wrap__whatsapp_whatsapp_Avatar_ID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObj
|
|
|
5177
5319
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
5178
5320
|
return NULL;
|
|
5179
5321
|
}
|
|
5180
|
-
|
|
5322
|
+
whatsapp_ChatState_JID_Set(handle, val);
|
|
5181
5323
|
Py_INCREF(Py_None);
|
|
5182
5324
|
py_retval = Py_None;
|
|
5183
5325
|
return py_retval;
|
|
5184
5326
|
}
|
|
5185
|
-
PyObject *
|
|
5327
|
+
PyObject * _wrap__whatsapp_whatsapp_ChatState_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5186
5328
|
|
|
5187
5329
|
|
|
5188
5330
|
PyObject *
|
|
5189
|
-
|
|
5331
|
+
_wrap__whatsapp_whatsapp_ChatState_GroupJID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5190
5332
|
{
|
|
5191
5333
|
PyObject *py_retval;
|
|
5192
5334
|
char *retval;
|
|
@@ -5196,15 +5338,15 @@ _wrap__whatsapp_whatsapp_Avatar_URL_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyOb
|
|
|
5196
5338
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5197
5339
|
return NULL;
|
|
5198
5340
|
}
|
|
5199
|
-
retval =
|
|
5341
|
+
retval = whatsapp_ChatState_GroupJID_Get(handle);
|
|
5200
5342
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5201
5343
|
return py_retval;
|
|
5202
5344
|
}
|
|
5203
|
-
PyObject *
|
|
5345
|
+
PyObject * _wrap__whatsapp_whatsapp_ChatState_GroupJID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5204
5346
|
|
|
5205
5347
|
|
|
5206
5348
|
PyObject *
|
|
5207
|
-
|
|
5349
|
+
_wrap__whatsapp_whatsapp_ChatState_GroupJID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5208
5350
|
{
|
|
5209
5351
|
PyObject *py_retval;
|
|
5210
5352
|
int64_t handle;
|
|
@@ -5214,66 +5356,29 @@ _wrap__whatsapp_whatsapp_Avatar_URL_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyOb
|
|
|
5214
5356
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
5215
5357
|
return NULL;
|
|
5216
5358
|
}
|
|
5217
|
-
|
|
5359
|
+
whatsapp_ChatState_GroupJID_Set(handle, val);
|
|
5218
5360
|
Py_INCREF(Py_None);
|
|
5219
5361
|
py_retval = Py_None;
|
|
5220
5362
|
return py_retval;
|
|
5221
5363
|
}
|
|
5222
|
-
PyObject *
|
|
5223
|
-
|
|
5224
|
-
|
|
5225
|
-
PyObject *
|
|
5226
|
-
_wrap__whatsapp_whatsapp_Call_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
5227
|
-
{
|
|
5228
|
-
PyObject *py_retval;
|
|
5229
|
-
int64_t retval;
|
|
5230
|
-
|
|
5231
|
-
retval = whatsapp_Call_CTor();
|
|
5232
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5233
|
-
return py_retval;
|
|
5234
|
-
}
|
|
5235
|
-
PyObject * _wrap__whatsapp_whatsapp_Call_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
5364
|
+
PyObject * _wrap__whatsapp_whatsapp_ChatState_GroupJID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5236
5365
|
|
|
5237
5366
|
|
|
5238
5367
|
PyObject *
|
|
5239
|
-
|
|
5368
|
+
_wrap__whatsapp_whatsapp_Connect_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
5240
5369
|
{
|
|
5241
5370
|
PyObject *py_retval;
|
|
5242
5371
|
int64_t retval;
|
|
5243
|
-
int64_t handle;
|
|
5244
|
-
const char *keywords[] = {"handle", NULL};
|
|
5245
5372
|
|
|
5246
|
-
|
|
5247
|
-
return NULL;
|
|
5248
|
-
}
|
|
5249
|
-
retval = whatsapp_Call_State_Get(handle);
|
|
5373
|
+
retval = whatsapp_Connect_CTor();
|
|
5250
5374
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5251
5375
|
return py_retval;
|
|
5252
5376
|
}
|
|
5253
|
-
PyObject *
|
|
5254
|
-
|
|
5255
|
-
|
|
5256
|
-
PyObject *
|
|
5257
|
-
_wrap__whatsapp_whatsapp_Call_State_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5258
|
-
{
|
|
5259
|
-
PyObject *py_retval;
|
|
5260
|
-
int64_t handle;
|
|
5261
|
-
int64_t val;
|
|
5262
|
-
const char *keywords[] = {"handle", "val", NULL};
|
|
5263
|
-
|
|
5264
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
5265
|
-
return NULL;
|
|
5266
|
-
}
|
|
5267
|
-
whatsapp_Call_State_Set(handle, val);
|
|
5268
|
-
Py_INCREF(Py_None);
|
|
5269
|
-
py_retval = Py_None;
|
|
5270
|
-
return py_retval;
|
|
5271
|
-
}
|
|
5272
|
-
PyObject * _wrap__whatsapp_whatsapp_Call_State_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5377
|
+
PyObject * _wrap__whatsapp_whatsapp_Connect_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
5273
5378
|
|
|
5274
5379
|
|
|
5275
5380
|
PyObject *
|
|
5276
|
-
|
|
5381
|
+
_wrap__whatsapp_whatsapp_Connect_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5277
5382
|
{
|
|
5278
5383
|
PyObject *py_retval;
|
|
5279
5384
|
char *retval;
|
|
@@ -5283,15 +5388,15 @@ _wrap__whatsapp_whatsapp_Call_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObje
|
|
|
5283
5388
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5284
5389
|
return NULL;
|
|
5285
5390
|
}
|
|
5286
|
-
retval =
|
|
5391
|
+
retval = whatsapp_Connect_JID_Get(handle);
|
|
5287
5392
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5288
5393
|
return py_retval;
|
|
5289
5394
|
}
|
|
5290
|
-
PyObject *
|
|
5395
|
+
PyObject * _wrap__whatsapp_whatsapp_Connect_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5291
5396
|
|
|
5292
5397
|
|
|
5293
5398
|
PyObject *
|
|
5294
|
-
|
|
5399
|
+
_wrap__whatsapp_whatsapp_Connect_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5295
5400
|
{
|
|
5296
5401
|
PyObject *py_retval;
|
|
5297
5402
|
int64_t handle;
|
|
@@ -5301,49 +5406,49 @@ _wrap__whatsapp_whatsapp_Call_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObje
|
|
|
5301
5406
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
5302
5407
|
return NULL;
|
|
5303
5408
|
}
|
|
5304
|
-
|
|
5409
|
+
whatsapp_Connect_JID_Set(handle, val);
|
|
5305
5410
|
Py_INCREF(Py_None);
|
|
5306
5411
|
py_retval = Py_None;
|
|
5307
5412
|
return py_retval;
|
|
5308
5413
|
}
|
|
5309
|
-
PyObject *
|
|
5414
|
+
PyObject * _wrap__whatsapp_whatsapp_Connect_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5310
5415
|
|
|
5311
5416
|
|
|
5312
5417
|
PyObject *
|
|
5313
|
-
|
|
5418
|
+
_wrap__whatsapp_whatsapp_Connect_Error_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5314
5419
|
{
|
|
5315
5420
|
PyObject *py_retval;
|
|
5316
|
-
|
|
5421
|
+
char *retval;
|
|
5317
5422
|
int64_t handle;
|
|
5318
5423
|
const char *keywords[] = {"handle", NULL};
|
|
5319
5424
|
|
|
5320
5425
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5321
5426
|
return NULL;
|
|
5322
5427
|
}
|
|
5323
|
-
retval =
|
|
5324
|
-
py_retval = Py_BuildValue((char *) "
|
|
5428
|
+
retval = whatsapp_Connect_Error_Get(handle);
|
|
5429
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5325
5430
|
return py_retval;
|
|
5326
5431
|
}
|
|
5327
|
-
PyObject *
|
|
5432
|
+
PyObject * _wrap__whatsapp_whatsapp_Connect_Error_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5328
5433
|
|
|
5329
5434
|
|
|
5330
5435
|
PyObject *
|
|
5331
|
-
|
|
5436
|
+
_wrap__whatsapp_whatsapp_Connect_Error_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5332
5437
|
{
|
|
5333
5438
|
PyObject *py_retval;
|
|
5334
5439
|
int64_t handle;
|
|
5335
|
-
|
|
5440
|
+
char *val;
|
|
5336
5441
|
const char *keywords[] = {"handle", "val", NULL};
|
|
5337
5442
|
|
|
5338
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
5443
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
5339
5444
|
return NULL;
|
|
5340
5445
|
}
|
|
5341
|
-
|
|
5446
|
+
whatsapp_Connect_Error_Set(handle, val);
|
|
5342
5447
|
Py_INCREF(Py_None);
|
|
5343
5448
|
py_retval = Py_None;
|
|
5344
5449
|
return py_retval;
|
|
5345
5450
|
}
|
|
5346
|
-
PyObject *
|
|
5451
|
+
PyObject * _wrap__whatsapp_whatsapp_Connect_Error_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5347
5452
|
|
|
5348
5453
|
|
|
5349
5454
|
PyObject *
|
|
@@ -5621,94 +5726,107 @@ PyObject * _wrap__whatsapp_whatsapp_Location_URL_Set(PyObject * PYBINDGEN_UNUSED
|
|
|
5621
5726
|
|
|
5622
5727
|
|
|
5623
5728
|
PyObject *
|
|
5624
|
-
|
|
5729
|
+
_wrap__whatsapp_whatsapp_PollOption_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
5625
5730
|
{
|
|
5626
5731
|
PyObject *py_retval;
|
|
5627
5732
|
int64_t retval;
|
|
5628
5733
|
|
|
5629
|
-
retval =
|
|
5734
|
+
retval = whatsapp_PollOption_CTor();
|
|
5630
5735
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5631
5736
|
return py_retval;
|
|
5632
5737
|
}
|
|
5633
|
-
PyObject *
|
|
5738
|
+
PyObject * _wrap__whatsapp_whatsapp_PollOption_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
5634
5739
|
|
|
5635
5740
|
|
|
5636
5741
|
PyObject *
|
|
5637
|
-
|
|
5742
|
+
_wrap__whatsapp_whatsapp_PollOption_Title_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5638
5743
|
{
|
|
5639
5744
|
PyObject *py_retval;
|
|
5640
|
-
|
|
5745
|
+
char *retval;
|
|
5641
5746
|
int64_t handle;
|
|
5642
5747
|
const char *keywords[] = {"handle", NULL};
|
|
5643
5748
|
|
|
5644
5749
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5645
5750
|
return NULL;
|
|
5646
5751
|
}
|
|
5647
|
-
retval =
|
|
5648
|
-
py_retval = Py_BuildValue((char *) "
|
|
5752
|
+
retval = whatsapp_PollOption_Title_Get(handle);
|
|
5753
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5649
5754
|
return py_retval;
|
|
5650
5755
|
}
|
|
5651
|
-
PyObject *
|
|
5756
|
+
PyObject * _wrap__whatsapp_whatsapp_PollOption_Title_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5652
5757
|
|
|
5653
5758
|
|
|
5654
5759
|
PyObject *
|
|
5655
|
-
|
|
5760
|
+
_wrap__whatsapp_whatsapp_PollOption_Title_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5656
5761
|
{
|
|
5657
5762
|
PyObject *py_retval;
|
|
5658
5763
|
int64_t handle;
|
|
5659
|
-
|
|
5764
|
+
char *val;
|
|
5660
5765
|
const char *keywords[] = {"handle", "val", NULL};
|
|
5661
5766
|
|
|
5662
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
5767
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
5663
5768
|
return NULL;
|
|
5664
5769
|
}
|
|
5665
|
-
|
|
5770
|
+
whatsapp_PollOption_Title_Set(handle, val);
|
|
5666
5771
|
Py_INCREF(Py_None);
|
|
5667
5772
|
py_retval = Py_None;
|
|
5668
5773
|
return py_retval;
|
|
5669
5774
|
}
|
|
5670
|
-
PyObject *
|
|
5775
|
+
PyObject * _wrap__whatsapp_whatsapp_PollOption_Title_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5671
5776
|
|
|
5672
5777
|
|
|
5673
5778
|
PyObject *
|
|
5674
|
-
|
|
5779
|
+
_wrap__whatsapp_whatsapp_Preview_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
5675
5780
|
{
|
|
5676
5781
|
PyObject *py_retval;
|
|
5677
|
-
|
|
5782
|
+
int64_t retval;
|
|
5783
|
+
|
|
5784
|
+
retval = whatsapp_Preview_CTor();
|
|
5785
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5786
|
+
return py_retval;
|
|
5787
|
+
}
|
|
5788
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
5789
|
+
|
|
5790
|
+
|
|
5791
|
+
PyObject *
|
|
5792
|
+
_wrap__whatsapp_whatsapp_Preview_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5793
|
+
{
|
|
5794
|
+
PyObject *py_retval;
|
|
5795
|
+
int64_t retval;
|
|
5678
5796
|
int64_t handle;
|
|
5679
5797
|
const char *keywords[] = {"handle", NULL};
|
|
5680
5798
|
|
|
5681
5799
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5682
5800
|
return NULL;
|
|
5683
5801
|
}
|
|
5684
|
-
retval =
|
|
5685
|
-
py_retval = Py_BuildValue((char *) "
|
|
5802
|
+
retval = whatsapp_Preview_Kind_Get(handle);
|
|
5803
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5686
5804
|
return py_retval;
|
|
5687
5805
|
}
|
|
5688
|
-
PyObject *
|
|
5806
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_Kind_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5689
5807
|
|
|
5690
5808
|
|
|
5691
5809
|
PyObject *
|
|
5692
|
-
|
|
5810
|
+
_wrap__whatsapp_whatsapp_Preview_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5693
5811
|
{
|
|
5694
5812
|
PyObject *py_retval;
|
|
5695
5813
|
int64_t handle;
|
|
5696
|
-
|
|
5814
|
+
int64_t val;
|
|
5697
5815
|
const char *keywords[] = {"handle", "val", NULL};
|
|
5698
5816
|
|
|
5699
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
5817
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
5700
5818
|
return NULL;
|
|
5701
5819
|
}
|
|
5702
|
-
|
|
5820
|
+
whatsapp_Preview_Kind_Set(handle, val);
|
|
5703
5821
|
Py_INCREF(Py_None);
|
|
5704
5822
|
py_retval = Py_None;
|
|
5705
5823
|
return py_retval;
|
|
5706
5824
|
}
|
|
5707
|
-
PyObject *
|
|
5825
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_Kind_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5708
5826
|
|
|
5709
5827
|
|
|
5710
5828
|
PyObject *
|
|
5711
|
-
|
|
5829
|
+
_wrap__whatsapp_whatsapp_Preview_URL_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5712
5830
|
{
|
|
5713
5831
|
PyObject *py_retval;
|
|
5714
5832
|
char *retval;
|
|
@@ -5718,15 +5836,15 @@ _wrap__whatsapp_whatsapp_Message_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyO
|
|
|
5718
5836
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5719
5837
|
return NULL;
|
|
5720
5838
|
}
|
|
5721
|
-
retval =
|
|
5839
|
+
retval = whatsapp_Preview_URL_Get(handle);
|
|
5722
5840
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5723
5841
|
return py_retval;
|
|
5724
5842
|
}
|
|
5725
|
-
PyObject *
|
|
5843
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_URL_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5726
5844
|
|
|
5727
5845
|
|
|
5728
5846
|
PyObject *
|
|
5729
|
-
|
|
5847
|
+
_wrap__whatsapp_whatsapp_Preview_URL_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5730
5848
|
{
|
|
5731
5849
|
PyObject *py_retval;
|
|
5732
5850
|
int64_t handle;
|
|
@@ -5736,16 +5854,16 @@ _wrap__whatsapp_whatsapp_Message_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyO
|
|
|
5736
5854
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
5737
5855
|
return NULL;
|
|
5738
5856
|
}
|
|
5739
|
-
|
|
5857
|
+
whatsapp_Preview_URL_Set(handle, val);
|
|
5740
5858
|
Py_INCREF(Py_None);
|
|
5741
5859
|
py_retval = Py_None;
|
|
5742
5860
|
return py_retval;
|
|
5743
5861
|
}
|
|
5744
|
-
PyObject *
|
|
5862
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_URL_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5745
5863
|
|
|
5746
5864
|
|
|
5747
5865
|
PyObject *
|
|
5748
|
-
|
|
5866
|
+
_wrap__whatsapp_whatsapp_Preview_Title_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5749
5867
|
{
|
|
5750
5868
|
PyObject *py_retval;
|
|
5751
5869
|
char *retval;
|
|
@@ -5755,15 +5873,15 @@ _wrap__whatsapp_whatsapp_Message_GroupJID_Get(PyObject * PYBINDGEN_UNUSED(dummy)
|
|
|
5755
5873
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5756
5874
|
return NULL;
|
|
5757
5875
|
}
|
|
5758
|
-
retval =
|
|
5876
|
+
retval = whatsapp_Preview_Title_Get(handle);
|
|
5759
5877
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5760
5878
|
return py_retval;
|
|
5761
5879
|
}
|
|
5762
|
-
PyObject *
|
|
5880
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_Title_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5763
5881
|
|
|
5764
5882
|
|
|
5765
5883
|
PyObject *
|
|
5766
|
-
|
|
5884
|
+
_wrap__whatsapp_whatsapp_Preview_Title_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5767
5885
|
{
|
|
5768
5886
|
PyObject *py_retval;
|
|
5769
5887
|
int64_t handle;
|
|
@@ -5773,16 +5891,16 @@ _wrap__whatsapp_whatsapp_Message_GroupJID_Set(PyObject * PYBINDGEN_UNUSED(dummy)
|
|
|
5773
5891
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
5774
5892
|
return NULL;
|
|
5775
5893
|
}
|
|
5776
|
-
|
|
5894
|
+
whatsapp_Preview_Title_Set(handle, val);
|
|
5777
5895
|
Py_INCREF(Py_None);
|
|
5778
5896
|
py_retval = Py_None;
|
|
5779
5897
|
return py_retval;
|
|
5780
5898
|
}
|
|
5781
|
-
PyObject *
|
|
5899
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_Title_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5782
5900
|
|
|
5783
5901
|
|
|
5784
5902
|
PyObject *
|
|
5785
|
-
|
|
5903
|
+
_wrap__whatsapp_whatsapp_Preview_Description_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5786
5904
|
{
|
|
5787
5905
|
PyObject *py_retval;
|
|
5788
5906
|
char *retval;
|
|
@@ -5792,15 +5910,15 @@ _wrap__whatsapp_whatsapp_Message_OriginJID_Get(PyObject * PYBINDGEN_UNUSED(dummy
|
|
|
5792
5910
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5793
5911
|
return NULL;
|
|
5794
5912
|
}
|
|
5795
|
-
retval =
|
|
5913
|
+
retval = whatsapp_Preview_Description_Get(handle);
|
|
5796
5914
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5797
5915
|
return py_retval;
|
|
5798
5916
|
}
|
|
5799
|
-
PyObject *
|
|
5917
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_Description_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5800
5918
|
|
|
5801
5919
|
|
|
5802
5920
|
PyObject *
|
|
5803
|
-
|
|
5921
|
+
_wrap__whatsapp_whatsapp_Preview_Description_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5804
5922
|
{
|
|
5805
5923
|
PyObject *py_retval;
|
|
5806
5924
|
int64_t handle;
|
|
@@ -5810,569 +5928,699 @@ _wrap__whatsapp_whatsapp_Message_OriginJID_Set(PyObject * PYBINDGEN_UNUSED(dummy
|
|
|
5810
5928
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
5811
5929
|
return NULL;
|
|
5812
5930
|
}
|
|
5813
|
-
|
|
5931
|
+
whatsapp_Preview_Description_Set(handle, val);
|
|
5814
5932
|
Py_INCREF(Py_None);
|
|
5815
5933
|
py_retval = Py_None;
|
|
5816
5934
|
return py_retval;
|
|
5817
5935
|
}
|
|
5818
|
-
PyObject *
|
|
5936
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_Description_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5819
5937
|
|
|
5820
5938
|
|
|
5821
5939
|
PyObject *
|
|
5822
|
-
|
|
5940
|
+
_wrap__whatsapp_whatsapp_Preview_Thumbnail_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5823
5941
|
{
|
|
5824
5942
|
PyObject *py_retval;
|
|
5825
|
-
|
|
5943
|
+
int64_t retval;
|
|
5826
5944
|
int64_t handle;
|
|
5827
5945
|
const char *keywords[] = {"handle", NULL};
|
|
5828
5946
|
|
|
5829
5947
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
5830
5948
|
return NULL;
|
|
5831
5949
|
}
|
|
5832
|
-
retval =
|
|
5833
|
-
py_retval = Py_BuildValue((char *) "
|
|
5950
|
+
retval = whatsapp_Preview_Thumbnail_Get(handle);
|
|
5951
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5834
5952
|
return py_retval;
|
|
5835
5953
|
}
|
|
5836
|
-
PyObject *
|
|
5954
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_Thumbnail_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5837
5955
|
|
|
5838
5956
|
|
|
5839
5957
|
PyObject *
|
|
5840
|
-
|
|
5958
|
+
_wrap__whatsapp_whatsapp_Preview_Thumbnail_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5841
5959
|
{
|
|
5842
5960
|
PyObject *py_retval;
|
|
5843
5961
|
int64_t handle;
|
|
5844
|
-
|
|
5962
|
+
int64_t val;
|
|
5845
5963
|
const char *keywords[] = {"handle", "val", NULL};
|
|
5846
5964
|
|
|
5847
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
5965
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
5848
5966
|
return NULL;
|
|
5849
5967
|
}
|
|
5850
|
-
|
|
5968
|
+
whatsapp_Preview_Thumbnail_Set(handle, val);
|
|
5851
5969
|
Py_INCREF(Py_None);
|
|
5852
5970
|
py_retval = Py_None;
|
|
5853
5971
|
return py_retval;
|
|
5854
5972
|
}
|
|
5855
|
-
PyObject *
|
|
5973
|
+
PyObject * _wrap__whatsapp_whatsapp_Preview_Thumbnail_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5856
5974
|
|
|
5857
5975
|
|
|
5858
5976
|
PyObject *
|
|
5859
|
-
|
|
5977
|
+
_wrap__whatsapp_whatsapp_Session_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
5860
5978
|
{
|
|
5861
5979
|
PyObject *py_retval;
|
|
5862
5980
|
int64_t retval;
|
|
5863
|
-
int64_t handle;
|
|
5864
|
-
const char *keywords[] = {"handle", NULL};
|
|
5865
5981
|
|
|
5866
|
-
|
|
5867
|
-
return NULL;
|
|
5868
|
-
}
|
|
5869
|
-
retval = whatsapp_Message_Timestamp_Get(handle);
|
|
5982
|
+
retval = whatsapp_Session_CTor();
|
|
5870
5983
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
5871
5984
|
return py_retval;
|
|
5872
5985
|
}
|
|
5873
|
-
PyObject *
|
|
5986
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
5874
5987
|
|
|
5875
5988
|
|
|
5876
5989
|
PyObject *
|
|
5877
|
-
|
|
5990
|
+
_wrap__whatsapp_whatsapp_Session_Login(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5878
5991
|
{
|
|
5879
5992
|
PyObject *py_retval;
|
|
5880
|
-
|
|
5881
|
-
int64_t
|
|
5882
|
-
const char *keywords[] = {"
|
|
5993
|
+
char *retval;
|
|
5994
|
+
int64_t _handle;
|
|
5995
|
+
const char *keywords[] = {"_handle", NULL};
|
|
5883
5996
|
|
|
5884
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
5997
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
|
5885
5998
|
return NULL;
|
|
5886
5999
|
}
|
|
5887
|
-
|
|
5888
|
-
|
|
5889
|
-
|
|
6000
|
+
retval = whatsapp_Session_Login(_handle);
|
|
6001
|
+
if (PyErr_Occurred()) {
|
|
6002
|
+
return NULL;
|
|
6003
|
+
}
|
|
6004
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5890
6005
|
return py_retval;
|
|
5891
6006
|
}
|
|
5892
|
-
PyObject *
|
|
6007
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_Login(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5893
6008
|
|
|
5894
6009
|
|
|
5895
6010
|
PyObject *
|
|
5896
|
-
|
|
6011
|
+
_wrap__whatsapp_whatsapp_Session_Logout(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5897
6012
|
{
|
|
5898
6013
|
PyObject *py_retval;
|
|
5899
|
-
|
|
5900
|
-
int64_t
|
|
5901
|
-
const char *keywords[] = {"
|
|
6014
|
+
char *retval;
|
|
6015
|
+
int64_t _handle;
|
|
6016
|
+
const char *keywords[] = {"_handle", NULL};
|
|
5902
6017
|
|
|
5903
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
|
6018
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
|
5904
6019
|
return NULL;
|
|
5905
6020
|
}
|
|
5906
|
-
retval =
|
|
5907
|
-
|
|
6021
|
+
retval = whatsapp_Session_Logout(_handle);
|
|
6022
|
+
if (PyErr_Occurred()) {
|
|
6023
|
+
return NULL;
|
|
6024
|
+
}
|
|
6025
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5908
6026
|
return py_retval;
|
|
5909
6027
|
}
|
|
5910
|
-
PyObject *
|
|
6028
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_Logout(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5911
6029
|
|
|
5912
6030
|
|
|
5913
6031
|
PyObject *
|
|
5914
|
-
|
|
6032
|
+
_wrap__whatsapp_whatsapp_Session_Disconnect(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5915
6033
|
{
|
|
5916
6034
|
PyObject *py_retval;
|
|
5917
|
-
|
|
5918
|
-
|
|
5919
|
-
|
|
5920
|
-
const char *keywords[] = {"handle", "val", NULL};
|
|
6035
|
+
char *retval;
|
|
6036
|
+
int64_t _handle;
|
|
6037
|
+
const char *keywords[] = {"_handle", NULL};
|
|
5921
6038
|
|
|
5922
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6039
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
|
5923
6040
|
return NULL;
|
|
5924
6041
|
}
|
|
5925
|
-
|
|
5926
|
-
|
|
5927
|
-
|
|
5928
|
-
|
|
6042
|
+
retval = whatsapp_Session_Disconnect(_handle);
|
|
6043
|
+
if (PyErr_Occurred()) {
|
|
6044
|
+
return NULL;
|
|
6045
|
+
}
|
|
6046
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5929
6047
|
return py_retval;
|
|
5930
6048
|
}
|
|
5931
|
-
PyObject *
|
|
6049
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_Disconnect(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5932
6050
|
|
|
5933
6051
|
|
|
5934
6052
|
PyObject *
|
|
5935
|
-
|
|
6053
|
+
_wrap__whatsapp_whatsapp_Session_PairPhone(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5936
6054
|
{
|
|
5937
6055
|
PyObject *py_retval;
|
|
5938
|
-
|
|
5939
|
-
int64_t
|
|
5940
|
-
|
|
6056
|
+
char *retval;
|
|
6057
|
+
int64_t _handle;
|
|
6058
|
+
char *phone;
|
|
6059
|
+
const char *keywords[] = {"_handle", "phone", NULL};
|
|
5941
6060
|
|
|
5942
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6061
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &phone)) {
|
|
5943
6062
|
return NULL;
|
|
5944
6063
|
}
|
|
5945
|
-
retval =
|
|
5946
|
-
|
|
6064
|
+
retval = whatsapp_Session_PairPhone(_handle, phone);
|
|
6065
|
+
if (PyErr_Occurred()) {
|
|
6066
|
+
if (retval != NULL) free(retval);
|
|
6067
|
+
return NULL;
|
|
6068
|
+
}
|
|
6069
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6070
|
+
free(retval);
|
|
5947
6071
|
return py_retval;
|
|
5948
6072
|
}
|
|
5949
|
-
PyObject *
|
|
6073
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_PairPhone(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5950
6074
|
|
|
5951
6075
|
|
|
5952
6076
|
PyObject *
|
|
5953
|
-
|
|
6077
|
+
_wrap__whatsapp_whatsapp_Session_SendMessage(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5954
6078
|
{
|
|
5955
6079
|
PyObject *py_retval;
|
|
5956
|
-
|
|
5957
|
-
|
|
5958
|
-
|
|
5959
|
-
const char *keywords[] = {"
|
|
6080
|
+
char *retval;
|
|
6081
|
+
int64_t _handle;
|
|
6082
|
+
int64_t message;
|
|
6083
|
+
const char *keywords[] = {"_handle", "message", NULL};
|
|
5960
6084
|
|
|
5961
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6085
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &_handle, &message)) {
|
|
5962
6086
|
return NULL;
|
|
5963
6087
|
}
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
6088
|
+
retval = whatsapp_Session_SendMessage(_handle, message);
|
|
6089
|
+
if (PyErr_Occurred()) {
|
|
6090
|
+
return NULL;
|
|
6091
|
+
}
|
|
6092
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
5968
6093
|
return py_retval;
|
|
5969
6094
|
}
|
|
5970
|
-
PyObject *
|
|
6095
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_SendMessage(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5971
6096
|
|
|
5972
6097
|
|
|
5973
6098
|
PyObject *
|
|
5974
|
-
|
|
6099
|
+
_wrap__whatsapp_whatsapp_Session_GenerateMessageID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5975
6100
|
{
|
|
5976
6101
|
PyObject *py_retval;
|
|
5977
6102
|
char *retval;
|
|
5978
|
-
int64_t
|
|
5979
|
-
const char *keywords[] = {"
|
|
6103
|
+
int64_t _handle;
|
|
6104
|
+
const char *keywords[] = {"_handle", NULL};
|
|
5980
6105
|
|
|
5981
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
|
6106
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
|
6107
|
+
return NULL;
|
|
6108
|
+
}
|
|
6109
|
+
retval = whatsapp_Session_GenerateMessageID(_handle);
|
|
6110
|
+
if (PyErr_Occurred()) {
|
|
6111
|
+
if (retval != NULL) free(retval);
|
|
5982
6112
|
return NULL;
|
|
5983
6113
|
}
|
|
5984
|
-
retval = whatsapp_Message_ReplyID_Get(handle);
|
|
5985
6114
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6115
|
+
free(retval);
|
|
5986
6116
|
return py_retval;
|
|
5987
6117
|
}
|
|
5988
|
-
PyObject *
|
|
6118
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_GenerateMessageID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
5989
6119
|
|
|
5990
6120
|
|
|
5991
6121
|
PyObject *
|
|
5992
|
-
|
|
6122
|
+
_wrap__whatsapp_whatsapp_Session_SendChatState(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
5993
6123
|
{
|
|
5994
6124
|
PyObject *py_retval;
|
|
5995
|
-
|
|
5996
|
-
|
|
5997
|
-
|
|
6125
|
+
char *retval;
|
|
6126
|
+
int64_t _handle;
|
|
6127
|
+
int64_t state;
|
|
6128
|
+
const char *keywords[] = {"_handle", "state", NULL};
|
|
5998
6129
|
|
|
5999
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6130
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &_handle, &state)) {
|
|
6000
6131
|
return NULL;
|
|
6001
6132
|
}
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
|
|
6133
|
+
retval = whatsapp_Session_SendChatState(_handle, state);
|
|
6134
|
+
if (PyErr_Occurred()) {
|
|
6135
|
+
return NULL;
|
|
6136
|
+
}
|
|
6137
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6005
6138
|
return py_retval;
|
|
6006
6139
|
}
|
|
6007
|
-
PyObject *
|
|
6140
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_SendChatState(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6008
6141
|
|
|
6009
6142
|
|
|
6010
6143
|
PyObject *
|
|
6011
|
-
|
|
6144
|
+
_wrap__whatsapp_whatsapp_Session_SendReceipt(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6012
6145
|
{
|
|
6013
6146
|
PyObject *py_retval;
|
|
6014
6147
|
char *retval;
|
|
6015
|
-
int64_t
|
|
6016
|
-
|
|
6148
|
+
int64_t _handle;
|
|
6149
|
+
int64_t receipt;
|
|
6150
|
+
const char *keywords[] = {"_handle", "receipt", NULL};
|
|
6017
6151
|
|
|
6018
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6152
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &_handle, &receipt)) {
|
|
6153
|
+
return NULL;
|
|
6154
|
+
}
|
|
6155
|
+
retval = whatsapp_Session_SendReceipt(_handle, receipt);
|
|
6156
|
+
if (PyErr_Occurred()) {
|
|
6019
6157
|
return NULL;
|
|
6020
6158
|
}
|
|
6021
|
-
retval = whatsapp_Message_ReplyBody_Get(handle);
|
|
6022
6159
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6023
6160
|
return py_retval;
|
|
6024
6161
|
}
|
|
6025
|
-
PyObject *
|
|
6162
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_SendReceipt(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6026
6163
|
|
|
6027
6164
|
|
|
6028
6165
|
PyObject *
|
|
6029
|
-
|
|
6166
|
+
_wrap__whatsapp_whatsapp_Session_SendPresence(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6030
6167
|
{
|
|
6031
6168
|
PyObject *py_retval;
|
|
6032
|
-
|
|
6033
|
-
|
|
6034
|
-
|
|
6169
|
+
char *retval;
|
|
6170
|
+
int64_t _handle;
|
|
6171
|
+
int64_t presence;
|
|
6172
|
+
char *statusMessage;
|
|
6173
|
+
const char *keywords[] = {"_handle", "presence", "statusMessage", NULL};
|
|
6035
6174
|
|
|
6036
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6175
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLs", (char **) keywords, &_handle, &presence, &statusMessage)) {
|
|
6037
6176
|
return NULL;
|
|
6038
6177
|
}
|
|
6039
|
-
|
|
6040
|
-
|
|
6041
|
-
|
|
6178
|
+
retval = whatsapp_Session_SendPresence(_handle, presence, statusMessage);
|
|
6179
|
+
if (PyErr_Occurred()) {
|
|
6180
|
+
return NULL;
|
|
6181
|
+
}
|
|
6182
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6042
6183
|
return py_retval;
|
|
6043
6184
|
}
|
|
6044
|
-
PyObject *
|
|
6185
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_SendPresence(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6045
6186
|
|
|
6046
6187
|
|
|
6047
6188
|
PyObject *
|
|
6048
|
-
|
|
6189
|
+
_wrap__whatsapp_whatsapp_Session_GetContacts(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6049
6190
|
{
|
|
6050
6191
|
PyObject *py_retval;
|
|
6051
6192
|
int64_t retval;
|
|
6052
|
-
int64_t
|
|
6053
|
-
|
|
6193
|
+
int64_t _handle;
|
|
6194
|
+
bool refresh;
|
|
6195
|
+
PyObject *py_refresh;
|
|
6196
|
+
const char *keywords[] = {"_handle", "refresh", NULL};
|
|
6054
6197
|
|
|
6055
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6198
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LO", (char **) keywords, &_handle, &py_refresh)) {
|
|
6199
|
+
return NULL;
|
|
6200
|
+
}
|
|
6201
|
+
refresh = (bool) PyObject_IsTrue(py_refresh);
|
|
6202
|
+
retval = whatsapp_Session_GetContacts(_handle, refresh);
|
|
6203
|
+
if (PyErr_Occurred()) {
|
|
6056
6204
|
return NULL;
|
|
6057
6205
|
}
|
|
6058
|
-
retval = whatsapp_Message_Attachments_Get(handle);
|
|
6059
6206
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6060
6207
|
return py_retval;
|
|
6061
6208
|
}
|
|
6062
|
-
PyObject *
|
|
6209
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_GetContacts(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6063
6210
|
|
|
6064
6211
|
|
|
6065
6212
|
PyObject *
|
|
6066
|
-
|
|
6213
|
+
_wrap__whatsapp_whatsapp_Session_GetGroups(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6067
6214
|
{
|
|
6068
6215
|
PyObject *py_retval;
|
|
6069
|
-
int64_t
|
|
6070
|
-
int64_t
|
|
6071
|
-
const char *keywords[] = {"
|
|
6216
|
+
int64_t retval;
|
|
6217
|
+
int64_t _handle;
|
|
6218
|
+
const char *keywords[] = {"_handle", NULL};
|
|
6072
6219
|
|
|
6073
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6220
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
|
6074
6221
|
return NULL;
|
|
6075
6222
|
}
|
|
6076
|
-
|
|
6077
|
-
|
|
6078
|
-
|
|
6223
|
+
retval = whatsapp_Session_GetGroups(_handle);
|
|
6224
|
+
if (PyErr_Occurred()) {
|
|
6225
|
+
return NULL;
|
|
6226
|
+
}
|
|
6227
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6079
6228
|
return py_retval;
|
|
6080
6229
|
}
|
|
6081
|
-
PyObject *
|
|
6230
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_GetGroups(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6082
6231
|
|
|
6083
6232
|
|
|
6084
6233
|
PyObject *
|
|
6085
|
-
|
|
6234
|
+
_wrap__whatsapp_whatsapp_Session_CreateGroup(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6086
6235
|
{
|
|
6087
6236
|
PyObject *py_retval;
|
|
6088
6237
|
int64_t retval;
|
|
6089
|
-
int64_t
|
|
6090
|
-
|
|
6238
|
+
int64_t _handle;
|
|
6239
|
+
char *name;
|
|
6240
|
+
int64_t participants;
|
|
6241
|
+
const char *keywords[] = {"_handle", "name", "participants", NULL};
|
|
6091
6242
|
|
|
6092
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6243
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &name, &participants)) {
|
|
6244
|
+
return NULL;
|
|
6245
|
+
}
|
|
6246
|
+
retval = whatsapp_Session_CreateGroup(_handle, name, participants);
|
|
6247
|
+
if (PyErr_Occurred()) {
|
|
6093
6248
|
return NULL;
|
|
6094
6249
|
}
|
|
6095
|
-
retval = whatsapp_Message_Preview_Get(handle);
|
|
6096
6250
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6097
6251
|
return py_retval;
|
|
6098
6252
|
}
|
|
6099
|
-
PyObject *
|
|
6253
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_CreateGroup(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6100
6254
|
|
|
6101
6255
|
|
|
6102
6256
|
PyObject *
|
|
6103
|
-
|
|
6257
|
+
_wrap__whatsapp_whatsapp_Session_LeaveGroup(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6104
6258
|
{
|
|
6105
6259
|
PyObject *py_retval;
|
|
6106
|
-
|
|
6107
|
-
int64_t
|
|
6108
|
-
|
|
6260
|
+
char *retval;
|
|
6261
|
+
int64_t _handle;
|
|
6262
|
+
char *resourceID;
|
|
6263
|
+
const char *keywords[] = {"_handle", "resourceID", NULL};
|
|
6109
6264
|
|
|
6110
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6265
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &resourceID)) {
|
|
6111
6266
|
return NULL;
|
|
6112
6267
|
}
|
|
6113
|
-
|
|
6114
|
-
|
|
6115
|
-
|
|
6268
|
+
retval = whatsapp_Session_LeaveGroup(_handle, resourceID);
|
|
6269
|
+
if (PyErr_Occurred()) {
|
|
6270
|
+
return NULL;
|
|
6271
|
+
}
|
|
6272
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6116
6273
|
return py_retval;
|
|
6117
6274
|
}
|
|
6118
|
-
PyObject *
|
|
6275
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_LeaveGroup(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6119
6276
|
|
|
6120
6277
|
|
|
6121
6278
|
PyObject *
|
|
6122
|
-
|
|
6279
|
+
_wrap__whatsapp_whatsapp_Session_GetAvatar(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6123
6280
|
{
|
|
6124
6281
|
PyObject *py_retval;
|
|
6125
6282
|
int64_t retval;
|
|
6126
|
-
int64_t
|
|
6127
|
-
|
|
6283
|
+
int64_t _handle;
|
|
6284
|
+
char *resourceID;
|
|
6285
|
+
char *avatarID;
|
|
6286
|
+
const char *keywords[] = {"_handle", "resourceID", "avatarID", NULL};
|
|
6128
6287
|
|
|
6129
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6288
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Lss", (char **) keywords, &_handle, &resourceID, &avatarID)) {
|
|
6289
|
+
return NULL;
|
|
6290
|
+
}
|
|
6291
|
+
retval = whatsapp_Session_GetAvatar(_handle, resourceID, avatarID);
|
|
6292
|
+
if (PyErr_Occurred()) {
|
|
6130
6293
|
return NULL;
|
|
6131
6294
|
}
|
|
6132
|
-
retval = whatsapp_Message_Location_Get(handle);
|
|
6133
6295
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6134
6296
|
return py_retval;
|
|
6135
6297
|
}
|
|
6136
|
-
PyObject *
|
|
6298
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_GetAvatar(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6137
6299
|
|
|
6138
6300
|
|
|
6139
6301
|
PyObject *
|
|
6140
|
-
|
|
6302
|
+
_wrap__whatsapp_whatsapp_Session_SetAvatar(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6141
6303
|
{
|
|
6142
6304
|
PyObject *py_retval;
|
|
6143
|
-
|
|
6144
|
-
int64_t
|
|
6145
|
-
|
|
6305
|
+
char *retval;
|
|
6306
|
+
int64_t _handle;
|
|
6307
|
+
char *resourceID;
|
|
6308
|
+
int64_t avatar;
|
|
6309
|
+
const char *keywords[] = {"_handle", "resourceID", "avatar", NULL};
|
|
6146
6310
|
|
|
6147
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6311
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &resourceID, &avatar)) {
|
|
6148
6312
|
return NULL;
|
|
6149
6313
|
}
|
|
6150
|
-
|
|
6151
|
-
|
|
6152
|
-
|
|
6314
|
+
retval = whatsapp_Session_SetAvatar(_handle, resourceID, avatar);
|
|
6315
|
+
if (PyErr_Occurred()) {
|
|
6316
|
+
if (retval != NULL) free(retval);
|
|
6317
|
+
return NULL;
|
|
6318
|
+
}
|
|
6319
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6320
|
+
free(retval);
|
|
6153
6321
|
return py_retval;
|
|
6154
6322
|
}
|
|
6155
|
-
PyObject *
|
|
6323
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_SetAvatar(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6156
6324
|
|
|
6157
6325
|
|
|
6158
6326
|
PyObject *
|
|
6159
|
-
|
|
6327
|
+
_wrap__whatsapp_whatsapp_Session_SetGroupName(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6160
6328
|
{
|
|
6161
6329
|
PyObject *py_retval;
|
|
6162
|
-
|
|
6163
|
-
int64_t
|
|
6164
|
-
|
|
6330
|
+
char *retval;
|
|
6331
|
+
int64_t _handle;
|
|
6332
|
+
char *resourceID;
|
|
6333
|
+
char *name;
|
|
6334
|
+
const char *keywords[] = {"_handle", "resourceID", "name", NULL};
|
|
6165
6335
|
|
|
6166
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6336
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Lss", (char **) keywords, &_handle, &resourceID, &name)) {
|
|
6167
6337
|
return NULL;
|
|
6168
6338
|
}
|
|
6169
|
-
retval =
|
|
6170
|
-
|
|
6339
|
+
retval = whatsapp_Session_SetGroupName(_handle, resourceID, name);
|
|
6340
|
+
if (PyErr_Occurred()) {
|
|
6341
|
+
return NULL;
|
|
6342
|
+
}
|
|
6343
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6171
6344
|
return py_retval;
|
|
6172
6345
|
}
|
|
6173
|
-
PyObject *
|
|
6346
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_SetGroupName(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6174
6347
|
|
|
6175
6348
|
|
|
6176
6349
|
PyObject *
|
|
6177
|
-
|
|
6350
|
+
_wrap__whatsapp_whatsapp_Session_SetGroupTopic(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6178
6351
|
{
|
|
6179
6352
|
PyObject *py_retval;
|
|
6180
|
-
|
|
6181
|
-
int64_t
|
|
6182
|
-
|
|
6353
|
+
char *retval;
|
|
6354
|
+
int64_t _handle;
|
|
6355
|
+
char *resourceID;
|
|
6356
|
+
char *topic;
|
|
6357
|
+
const char *keywords[] = {"_handle", "resourceID", "topic", NULL};
|
|
6183
6358
|
|
|
6184
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6359
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Lss", (char **) keywords, &_handle, &resourceID, &topic)) {
|
|
6185
6360
|
return NULL;
|
|
6186
6361
|
}
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6362
|
+
retval = whatsapp_Session_SetGroupTopic(_handle, resourceID, topic);
|
|
6363
|
+
if (PyErr_Occurred()) {
|
|
6364
|
+
return NULL;
|
|
6365
|
+
}
|
|
6366
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6190
6367
|
return py_retval;
|
|
6191
6368
|
}
|
|
6192
|
-
PyObject *
|
|
6369
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_SetGroupTopic(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6193
6370
|
|
|
6194
6371
|
|
|
6195
6372
|
PyObject *
|
|
6196
|
-
|
|
6373
|
+
_wrap__whatsapp_whatsapp_Session_UpdateGroupParticipants(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6197
6374
|
{
|
|
6198
6375
|
PyObject *py_retval;
|
|
6199
6376
|
int64_t retval;
|
|
6200
|
-
int64_t
|
|
6201
|
-
|
|
6377
|
+
int64_t _handle;
|
|
6378
|
+
char *resourceID;
|
|
6379
|
+
int64_t participants;
|
|
6380
|
+
const char *keywords[] = {"_handle", "resourceID", "participants", NULL};
|
|
6202
6381
|
|
|
6203
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6382
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &resourceID, &participants)) {
|
|
6383
|
+
return NULL;
|
|
6384
|
+
}
|
|
6385
|
+
retval = whatsapp_Session_UpdateGroupParticipants(_handle, resourceID, participants);
|
|
6386
|
+
if (PyErr_Occurred()) {
|
|
6204
6387
|
return NULL;
|
|
6205
6388
|
}
|
|
6206
|
-
retval = whatsapp_Message_Receipts_Get(handle);
|
|
6207
6389
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6208
6390
|
return py_retval;
|
|
6209
6391
|
}
|
|
6210
|
-
PyObject *
|
|
6392
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_UpdateGroupParticipants(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6211
6393
|
|
|
6212
6394
|
|
|
6213
6395
|
PyObject *
|
|
6214
|
-
|
|
6396
|
+
_wrap__whatsapp_whatsapp_Session_FindContact(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6215
6397
|
{
|
|
6216
6398
|
PyObject *py_retval;
|
|
6217
|
-
int64_t
|
|
6218
|
-
int64_t
|
|
6219
|
-
|
|
6399
|
+
int64_t retval;
|
|
6400
|
+
int64_t _handle;
|
|
6401
|
+
char *phone;
|
|
6402
|
+
const char *keywords[] = {"_handle", "phone", NULL};
|
|
6220
6403
|
|
|
6221
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6404
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &phone)) {
|
|
6222
6405
|
return NULL;
|
|
6223
6406
|
}
|
|
6224
|
-
|
|
6225
|
-
|
|
6226
|
-
|
|
6407
|
+
retval = whatsapp_Session_FindContact(_handle, phone);
|
|
6408
|
+
if (PyErr_Occurred()) {
|
|
6409
|
+
return NULL;
|
|
6410
|
+
}
|
|
6411
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6227
6412
|
return py_retval;
|
|
6228
6413
|
}
|
|
6229
|
-
PyObject *
|
|
6414
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_FindContact(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6230
6415
|
|
|
6231
6416
|
|
|
6232
6417
|
PyObject *
|
|
6233
|
-
|
|
6418
|
+
_wrap__whatsapp_whatsapp_Session_RequestMessageHistory(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6234
6419
|
{
|
|
6235
6420
|
PyObject *py_retval;
|
|
6236
|
-
|
|
6237
|
-
int64_t
|
|
6238
|
-
|
|
6421
|
+
char *retval;
|
|
6422
|
+
int64_t _handle;
|
|
6423
|
+
char *resourceID;
|
|
6424
|
+
int64_t oldestMessage;
|
|
6425
|
+
const char *keywords[] = {"_handle", "resourceID", "oldestMessage", NULL};
|
|
6239
6426
|
|
|
6240
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6427
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &resourceID, &oldestMessage)) {
|
|
6241
6428
|
return NULL;
|
|
6242
6429
|
}
|
|
6243
|
-
retval =
|
|
6244
|
-
|
|
6430
|
+
retval = whatsapp_Session_RequestMessageHistory(_handle, resourceID, oldestMessage);
|
|
6431
|
+
if (PyErr_Occurred()) {
|
|
6432
|
+
return NULL;
|
|
6433
|
+
}
|
|
6434
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6245
6435
|
return py_retval;
|
|
6246
6436
|
}
|
|
6247
|
-
PyObject *
|
|
6437
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_RequestMessageHistory(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6248
6438
|
|
|
6249
6439
|
|
|
6250
6440
|
PyObject *
|
|
6251
|
-
|
|
6441
|
+
_wrap__whatsapp_whatsapp_Session_SetEventHandler(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6252
6442
|
{
|
|
6253
6443
|
PyObject *py_retval;
|
|
6254
|
-
int64_t
|
|
6255
|
-
|
|
6256
|
-
|
|
6444
|
+
int64_t _handle;
|
|
6445
|
+
PyObject *h;
|
|
6446
|
+
bool goRun;
|
|
6447
|
+
PyObject *py_goRun;
|
|
6448
|
+
const char *keywords[] = {"_handle", "h", "goRun", NULL};
|
|
6257
6449
|
|
|
6258
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6450
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LOO", (char **) keywords, &_handle, &h, &py_goRun)) {
|
|
6451
|
+
return NULL;
|
|
6452
|
+
}
|
|
6453
|
+
goRun = (bool) PyObject_IsTrue(py_goRun);
|
|
6454
|
+
whatsapp_Session_SetEventHandler(_handle, h, goRun);
|
|
6455
|
+
if (PyErr_Occurred()) {
|
|
6259
6456
|
return NULL;
|
|
6260
6457
|
}
|
|
6261
|
-
whatsapp_Message_Reactions_Set(handle, val);
|
|
6262
6458
|
Py_INCREF(Py_None);
|
|
6263
6459
|
py_retval = Py_None;
|
|
6264
6460
|
return py_retval;
|
|
6265
6461
|
}
|
|
6266
|
-
PyObject *
|
|
6462
|
+
PyObject * _wrap__whatsapp_whatsapp_Session_SetEventHandler(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6267
6463
|
|
|
6268
6464
|
|
|
6269
6465
|
PyObject *
|
|
6270
|
-
|
|
6466
|
+
_wrap__whatsapp_whatsapp_Album_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
6271
6467
|
{
|
|
6272
6468
|
PyObject *py_retval;
|
|
6273
6469
|
int64_t retval;
|
|
6274
6470
|
|
|
6275
|
-
retval =
|
|
6471
|
+
retval = whatsapp_Album_CTor();
|
|
6276
6472
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6277
6473
|
return py_retval;
|
|
6278
6474
|
}
|
|
6279
|
-
PyObject *
|
|
6475
|
+
PyObject * _wrap__whatsapp_whatsapp_Album_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
6280
6476
|
|
|
6281
6477
|
|
|
6282
6478
|
PyObject *
|
|
6283
|
-
|
|
6479
|
+
_wrap__whatsapp_whatsapp_Album_IsAlbum_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6284
6480
|
{
|
|
6285
6481
|
PyObject *py_retval;
|
|
6286
|
-
|
|
6482
|
+
bool retval;
|
|
6287
6483
|
int64_t handle;
|
|
6288
6484
|
const char *keywords[] = {"handle", NULL};
|
|
6289
6485
|
|
|
6290
6486
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6291
6487
|
return NULL;
|
|
6292
6488
|
}
|
|
6293
|
-
retval =
|
|
6294
|
-
py_retval = Py_BuildValue((char *) "
|
|
6489
|
+
retval = whatsapp_Album_IsAlbum_Get(handle);
|
|
6490
|
+
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
|
6295
6491
|
return py_retval;
|
|
6296
6492
|
}
|
|
6297
|
-
PyObject *
|
|
6493
|
+
PyObject * _wrap__whatsapp_whatsapp_Album_IsAlbum_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6298
6494
|
|
|
6299
6495
|
|
|
6300
6496
|
PyObject *
|
|
6301
|
-
|
|
6497
|
+
_wrap__whatsapp_whatsapp_Album_IsAlbum_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6302
6498
|
{
|
|
6303
6499
|
PyObject *py_retval;
|
|
6304
6500
|
int64_t handle;
|
|
6305
|
-
|
|
6501
|
+
bool val;
|
|
6502
|
+
PyObject *py_val;
|
|
6306
6503
|
const char *keywords[] = {"handle", "val", NULL};
|
|
6307
6504
|
|
|
6308
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6505
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LO", (char **) keywords, &handle, &py_val)) {
|
|
6309
6506
|
return NULL;
|
|
6310
6507
|
}
|
|
6311
|
-
|
|
6508
|
+
val = (bool) PyObject_IsTrue(py_val);
|
|
6509
|
+
whatsapp_Album_IsAlbum_Set(handle, val);
|
|
6312
6510
|
Py_INCREF(Py_None);
|
|
6313
6511
|
py_retval = Py_None;
|
|
6314
6512
|
return py_retval;
|
|
6315
6513
|
}
|
|
6316
|
-
PyObject *
|
|
6514
|
+
PyObject * _wrap__whatsapp_whatsapp_Album_IsAlbum_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6317
6515
|
|
|
6318
6516
|
|
|
6319
6517
|
PyObject *
|
|
6320
|
-
|
|
6518
|
+
_wrap__whatsapp_whatsapp_Album_ImageCount_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6321
6519
|
{
|
|
6322
6520
|
PyObject *py_retval;
|
|
6323
|
-
|
|
6521
|
+
int64_t retval;
|
|
6324
6522
|
int64_t handle;
|
|
6325
6523
|
const char *keywords[] = {"handle", NULL};
|
|
6326
6524
|
|
|
6327
6525
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6328
6526
|
return NULL;
|
|
6329
6527
|
}
|
|
6330
|
-
retval =
|
|
6331
|
-
py_retval = Py_BuildValue((char *) "
|
|
6528
|
+
retval = whatsapp_Album_ImageCount_Get(handle);
|
|
6529
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6332
6530
|
return py_retval;
|
|
6333
6531
|
}
|
|
6334
|
-
PyObject *
|
|
6532
|
+
PyObject * _wrap__whatsapp_whatsapp_Album_ImageCount_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6335
6533
|
|
|
6336
6534
|
|
|
6337
6535
|
PyObject *
|
|
6338
|
-
|
|
6536
|
+
_wrap__whatsapp_whatsapp_Album_ImageCount_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6339
6537
|
{
|
|
6340
6538
|
PyObject *py_retval;
|
|
6341
6539
|
int64_t handle;
|
|
6342
|
-
|
|
6540
|
+
int64_t val;
|
|
6343
6541
|
const char *keywords[] = {"handle", "val", NULL};
|
|
6344
6542
|
|
|
6345
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
|
6543
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
6346
6544
|
return NULL;
|
|
6347
6545
|
}
|
|
6348
|
-
|
|
6546
|
+
whatsapp_Album_ImageCount_Set(handle, val);
|
|
6349
6547
|
Py_INCREF(Py_None);
|
|
6350
6548
|
py_retval = Py_None;
|
|
6351
6549
|
return py_retval;
|
|
6352
6550
|
}
|
|
6353
|
-
PyObject *
|
|
6551
|
+
PyObject * _wrap__whatsapp_whatsapp_Album_ImageCount_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6354
6552
|
|
|
6355
6553
|
|
|
6356
6554
|
PyObject *
|
|
6357
|
-
|
|
6555
|
+
_wrap__whatsapp_whatsapp_Album_VideoCount_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6358
6556
|
{
|
|
6359
6557
|
PyObject *py_retval;
|
|
6360
|
-
|
|
6558
|
+
int64_t retval;
|
|
6361
6559
|
int64_t handle;
|
|
6362
6560
|
const char *keywords[] = {"handle", NULL};
|
|
6363
6561
|
|
|
6364
6562
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6365
6563
|
return NULL;
|
|
6366
6564
|
}
|
|
6367
|
-
retval =
|
|
6368
|
-
py_retval = Py_BuildValue((char *) "
|
|
6565
|
+
retval = whatsapp_Album_VideoCount_Get(handle);
|
|
6566
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6369
6567
|
return py_retval;
|
|
6370
6568
|
}
|
|
6371
|
-
PyObject *
|
|
6569
|
+
PyObject * _wrap__whatsapp_whatsapp_Album_VideoCount_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6372
6570
|
|
|
6373
6571
|
|
|
6374
6572
|
PyObject *
|
|
6375
|
-
|
|
6573
|
+
_wrap__whatsapp_whatsapp_Album_VideoCount_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6574
|
+
{
|
|
6575
|
+
PyObject *py_retval;
|
|
6576
|
+
int64_t handle;
|
|
6577
|
+
int64_t val;
|
|
6578
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
6579
|
+
|
|
6580
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
6581
|
+
return NULL;
|
|
6582
|
+
}
|
|
6583
|
+
whatsapp_Album_VideoCount_Set(handle, val);
|
|
6584
|
+
Py_INCREF(Py_None);
|
|
6585
|
+
py_retval = Py_None;
|
|
6586
|
+
return py_retval;
|
|
6587
|
+
}
|
|
6588
|
+
PyObject * _wrap__whatsapp_whatsapp_Album_VideoCount_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6589
|
+
|
|
6590
|
+
|
|
6591
|
+
PyObject *
|
|
6592
|
+
_wrap__whatsapp_whatsapp_Avatar_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
6593
|
+
{
|
|
6594
|
+
PyObject *py_retval;
|
|
6595
|
+
int64_t retval;
|
|
6596
|
+
|
|
6597
|
+
retval = whatsapp_Avatar_CTor();
|
|
6598
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6599
|
+
return py_retval;
|
|
6600
|
+
}
|
|
6601
|
+
PyObject * _wrap__whatsapp_whatsapp_Avatar_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
6602
|
+
|
|
6603
|
+
|
|
6604
|
+
PyObject *
|
|
6605
|
+
_wrap__whatsapp_whatsapp_Avatar_ID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6606
|
+
{
|
|
6607
|
+
PyObject *py_retval;
|
|
6608
|
+
char *retval;
|
|
6609
|
+
int64_t handle;
|
|
6610
|
+
const char *keywords[] = {"handle", NULL};
|
|
6611
|
+
|
|
6612
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6613
|
+
return NULL;
|
|
6614
|
+
}
|
|
6615
|
+
retval = whatsapp_Avatar_ID_Get(handle);
|
|
6616
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6617
|
+
return py_retval;
|
|
6618
|
+
}
|
|
6619
|
+
PyObject * _wrap__whatsapp_whatsapp_Avatar_ID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6620
|
+
|
|
6621
|
+
|
|
6622
|
+
PyObject *
|
|
6623
|
+
_wrap__whatsapp_whatsapp_Avatar_ID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6376
6624
|
{
|
|
6377
6625
|
PyObject *py_retval;
|
|
6378
6626
|
int64_t handle;
|
|
@@ -6382,29 +6630,103 @@ _wrap__whatsapp_whatsapp_ChatState_GroupJID_Set(PyObject * PYBINDGEN_UNUSED(dumm
|
|
|
6382
6630
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
6383
6631
|
return NULL;
|
|
6384
6632
|
}
|
|
6385
|
-
|
|
6633
|
+
whatsapp_Avatar_ID_Set(handle, val);
|
|
6386
6634
|
Py_INCREF(Py_None);
|
|
6387
6635
|
py_retval = Py_None;
|
|
6388
6636
|
return py_retval;
|
|
6389
6637
|
}
|
|
6390
|
-
PyObject *
|
|
6638
|
+
PyObject * _wrap__whatsapp_whatsapp_Avatar_ID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6391
6639
|
|
|
6392
6640
|
|
|
6393
6641
|
PyObject *
|
|
6394
|
-
|
|
6642
|
+
_wrap__whatsapp_whatsapp_Avatar_URL_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6643
|
+
{
|
|
6644
|
+
PyObject *py_retval;
|
|
6645
|
+
char *retval;
|
|
6646
|
+
int64_t handle;
|
|
6647
|
+
const char *keywords[] = {"handle", NULL};
|
|
6648
|
+
|
|
6649
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6650
|
+
return NULL;
|
|
6651
|
+
}
|
|
6652
|
+
retval = whatsapp_Avatar_URL_Get(handle);
|
|
6653
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6654
|
+
return py_retval;
|
|
6655
|
+
}
|
|
6656
|
+
PyObject * _wrap__whatsapp_whatsapp_Avatar_URL_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6657
|
+
|
|
6658
|
+
|
|
6659
|
+
PyObject *
|
|
6660
|
+
_wrap__whatsapp_whatsapp_Avatar_URL_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6661
|
+
{
|
|
6662
|
+
PyObject *py_retval;
|
|
6663
|
+
int64_t handle;
|
|
6664
|
+
char *val;
|
|
6665
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
6666
|
+
|
|
6667
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
6668
|
+
return NULL;
|
|
6669
|
+
}
|
|
6670
|
+
whatsapp_Avatar_URL_Set(handle, val);
|
|
6671
|
+
Py_INCREF(Py_None);
|
|
6672
|
+
py_retval = Py_None;
|
|
6673
|
+
return py_retval;
|
|
6674
|
+
}
|
|
6675
|
+
PyObject * _wrap__whatsapp_whatsapp_Avatar_URL_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6676
|
+
|
|
6677
|
+
|
|
6678
|
+
PyObject *
|
|
6679
|
+
_wrap__whatsapp_whatsapp_Call_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
6395
6680
|
{
|
|
6396
6681
|
PyObject *py_retval;
|
|
6397
6682
|
int64_t retval;
|
|
6398
6683
|
|
|
6399
|
-
retval =
|
|
6684
|
+
retval = whatsapp_Call_CTor();
|
|
6400
6685
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6401
6686
|
return py_retval;
|
|
6402
6687
|
}
|
|
6403
|
-
PyObject *
|
|
6688
|
+
PyObject * _wrap__whatsapp_whatsapp_Call_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
6404
6689
|
|
|
6405
6690
|
|
|
6406
6691
|
PyObject *
|
|
6407
|
-
|
|
6692
|
+
_wrap__whatsapp_whatsapp_Call_State_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6693
|
+
{
|
|
6694
|
+
PyObject *py_retval;
|
|
6695
|
+
int64_t retval;
|
|
6696
|
+
int64_t handle;
|
|
6697
|
+
const char *keywords[] = {"handle", NULL};
|
|
6698
|
+
|
|
6699
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6700
|
+
return NULL;
|
|
6701
|
+
}
|
|
6702
|
+
retval = whatsapp_Call_State_Get(handle);
|
|
6703
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6704
|
+
return py_retval;
|
|
6705
|
+
}
|
|
6706
|
+
PyObject * _wrap__whatsapp_whatsapp_Call_State_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6707
|
+
|
|
6708
|
+
|
|
6709
|
+
PyObject *
|
|
6710
|
+
_wrap__whatsapp_whatsapp_Call_State_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6711
|
+
{
|
|
6712
|
+
PyObject *py_retval;
|
|
6713
|
+
int64_t handle;
|
|
6714
|
+
int64_t val;
|
|
6715
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
6716
|
+
|
|
6717
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
6718
|
+
return NULL;
|
|
6719
|
+
}
|
|
6720
|
+
whatsapp_Call_State_Set(handle, val);
|
|
6721
|
+
Py_INCREF(Py_None);
|
|
6722
|
+
py_retval = Py_None;
|
|
6723
|
+
return py_retval;
|
|
6724
|
+
}
|
|
6725
|
+
PyObject * _wrap__whatsapp_whatsapp_Call_State_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6726
|
+
|
|
6727
|
+
|
|
6728
|
+
PyObject *
|
|
6729
|
+
_wrap__whatsapp_whatsapp_Call_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6408
6730
|
{
|
|
6409
6731
|
PyObject *py_retval;
|
|
6410
6732
|
char *retval;
|
|
@@ -6414,15 +6736,15 @@ _wrap__whatsapp_whatsapp_Contact_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyO
|
|
|
6414
6736
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6415
6737
|
return NULL;
|
|
6416
6738
|
}
|
|
6417
|
-
retval =
|
|
6739
|
+
retval = whatsapp_Call_JID_Get(handle);
|
|
6418
6740
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6419
6741
|
return py_retval;
|
|
6420
6742
|
}
|
|
6421
|
-
PyObject *
|
|
6743
|
+
PyObject * _wrap__whatsapp_whatsapp_Call_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6422
6744
|
|
|
6423
6745
|
|
|
6424
6746
|
PyObject *
|
|
6425
|
-
|
|
6747
|
+
_wrap__whatsapp_whatsapp_Call_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6426
6748
|
{
|
|
6427
6749
|
PyObject *py_retval;
|
|
6428
6750
|
int64_t handle;
|
|
@@ -6432,16 +6754,66 @@ _wrap__whatsapp_whatsapp_Contact_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyO
|
|
|
6432
6754
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
6433
6755
|
return NULL;
|
|
6434
6756
|
}
|
|
6435
|
-
|
|
6757
|
+
whatsapp_Call_JID_Set(handle, val);
|
|
6436
6758
|
Py_INCREF(Py_None);
|
|
6437
6759
|
py_retval = Py_None;
|
|
6438
6760
|
return py_retval;
|
|
6439
6761
|
}
|
|
6440
|
-
PyObject *
|
|
6762
|
+
PyObject * _wrap__whatsapp_whatsapp_Call_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6441
6763
|
|
|
6442
6764
|
|
|
6443
6765
|
PyObject *
|
|
6444
|
-
|
|
6766
|
+
_wrap__whatsapp_whatsapp_Call_Timestamp_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6767
|
+
{
|
|
6768
|
+
PyObject *py_retval;
|
|
6769
|
+
int64_t retval;
|
|
6770
|
+
int64_t handle;
|
|
6771
|
+
const char *keywords[] = {"handle", NULL};
|
|
6772
|
+
|
|
6773
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6774
|
+
return NULL;
|
|
6775
|
+
}
|
|
6776
|
+
retval = whatsapp_Call_Timestamp_Get(handle);
|
|
6777
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6778
|
+
return py_retval;
|
|
6779
|
+
}
|
|
6780
|
+
PyObject * _wrap__whatsapp_whatsapp_Call_Timestamp_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6781
|
+
|
|
6782
|
+
|
|
6783
|
+
PyObject *
|
|
6784
|
+
_wrap__whatsapp_whatsapp_Call_Timestamp_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6785
|
+
{
|
|
6786
|
+
PyObject *py_retval;
|
|
6787
|
+
int64_t handle;
|
|
6788
|
+
int64_t val;
|
|
6789
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
6790
|
+
|
|
6791
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
6792
|
+
return NULL;
|
|
6793
|
+
}
|
|
6794
|
+
whatsapp_Call_Timestamp_Set(handle, val);
|
|
6795
|
+
Py_INCREF(Py_None);
|
|
6796
|
+
py_retval = Py_None;
|
|
6797
|
+
return py_retval;
|
|
6798
|
+
}
|
|
6799
|
+
PyObject * _wrap__whatsapp_whatsapp_Call_Timestamp_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6800
|
+
|
|
6801
|
+
|
|
6802
|
+
PyObject *
|
|
6803
|
+
_wrap__whatsapp_whatsapp_GroupParticipant_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
6804
|
+
{
|
|
6805
|
+
PyObject *py_retval;
|
|
6806
|
+
int64_t retval;
|
|
6807
|
+
|
|
6808
|
+
retval = whatsapp_GroupParticipant_CTor();
|
|
6809
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6810
|
+
return py_retval;
|
|
6811
|
+
}
|
|
6812
|
+
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
6813
|
+
|
|
6814
|
+
|
|
6815
|
+
PyObject *
|
|
6816
|
+
_wrap__whatsapp_whatsapp_GroupParticipant_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6445
6817
|
{
|
|
6446
6818
|
PyObject *py_retval;
|
|
6447
6819
|
char *retval;
|
|
@@ -6451,15 +6823,15 @@ _wrap__whatsapp_whatsapp_Contact_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), Py
|
|
|
6451
6823
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6452
6824
|
return NULL;
|
|
6453
6825
|
}
|
|
6454
|
-
retval =
|
|
6826
|
+
retval = whatsapp_GroupParticipant_JID_Get(handle);
|
|
6455
6827
|
py_retval = Py_BuildValue((char *) "s", retval);
|
|
6456
6828
|
return py_retval;
|
|
6457
6829
|
}
|
|
6458
|
-
PyObject *
|
|
6830
|
+
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_JID_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6459
6831
|
|
|
6460
6832
|
|
|
6461
6833
|
PyObject *
|
|
6462
|
-
|
|
6834
|
+
_wrap__whatsapp_whatsapp_GroupParticipant_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6463
6835
|
{
|
|
6464
6836
|
PyObject *py_retval;
|
|
6465
6837
|
int64_t handle;
|
|
@@ -6469,68 +6841,142 @@ _wrap__whatsapp_whatsapp_Contact_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), Py
|
|
|
6469
6841
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
|
6470
6842
|
return NULL;
|
|
6471
6843
|
}
|
|
6472
|
-
|
|
6844
|
+
whatsapp_GroupParticipant_JID_Set(handle, val);
|
|
6473
6845
|
Py_INCREF(Py_None);
|
|
6474
6846
|
py_retval = Py_None;
|
|
6475
6847
|
return py_retval;
|
|
6476
6848
|
}
|
|
6477
|
-
PyObject *
|
|
6849
|
+
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_JID_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6478
6850
|
|
|
6479
6851
|
|
|
6480
6852
|
PyObject *
|
|
6481
|
-
|
|
6853
|
+
_wrap__whatsapp_whatsapp_GroupParticipant_Affiliation_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6482
6854
|
{
|
|
6483
6855
|
PyObject *py_retval;
|
|
6484
6856
|
int64_t retval;
|
|
6857
|
+
int64_t handle;
|
|
6858
|
+
const char *keywords[] = {"handle", NULL};
|
|
6485
6859
|
|
|
6486
|
-
|
|
6487
|
-
if (PyErr_Occurred()) {
|
|
6860
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6488
6861
|
return NULL;
|
|
6489
6862
|
}
|
|
6863
|
+
retval = whatsapp_GroupParticipant_Affiliation_Get(handle);
|
|
6490
6864
|
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6491
6865
|
return py_retval;
|
|
6492
6866
|
}
|
|
6493
|
-
PyObject *
|
|
6867
|
+
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_Affiliation_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6494
6868
|
|
|
6495
|
-
|
|
6496
|
-
|
|
6497
|
-
|
|
6498
|
-
|
|
6499
|
-
|
|
6500
|
-
|
|
6501
|
-
|
|
6502
|
-
|
|
6503
|
-
|
|
6504
|
-
|
|
6505
|
-
|
|
6506
|
-
|
|
6507
|
-
|
|
6508
|
-
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
|
|
6512
|
-
|
|
6513
|
-
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
|
|
6517
|
-
|
|
6518
|
-
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
|
|
6522
|
-
|
|
6523
|
-
|
|
6524
|
-
|
|
6525
|
-
|
|
6526
|
-
|
|
6527
|
-
|
|
6528
|
-
|
|
6529
|
-
|
|
6530
|
-
|
|
6531
|
-
|
|
6532
|
-
|
|
6533
|
-
|
|
6869
|
+
|
|
6870
|
+
PyObject *
|
|
6871
|
+
_wrap__whatsapp_whatsapp_GroupParticipant_Affiliation_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6872
|
+
{
|
|
6873
|
+
PyObject *py_retval;
|
|
6874
|
+
int64_t handle;
|
|
6875
|
+
int64_t val;
|
|
6876
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
6877
|
+
|
|
6878
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
6879
|
+
return NULL;
|
|
6880
|
+
}
|
|
6881
|
+
whatsapp_GroupParticipant_Affiliation_Set(handle, val);
|
|
6882
|
+
Py_INCREF(Py_None);
|
|
6883
|
+
py_retval = Py_None;
|
|
6884
|
+
return py_retval;
|
|
6885
|
+
}
|
|
6886
|
+
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_Affiliation_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6887
|
+
|
|
6888
|
+
|
|
6889
|
+
PyObject *
|
|
6890
|
+
_wrap__whatsapp_whatsapp_GroupParticipant_Action_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6891
|
+
{
|
|
6892
|
+
PyObject *py_retval;
|
|
6893
|
+
int64_t retval;
|
|
6894
|
+
int64_t handle;
|
|
6895
|
+
const char *keywords[] = {"handle", NULL};
|
|
6896
|
+
|
|
6897
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
|
6898
|
+
return NULL;
|
|
6899
|
+
}
|
|
6900
|
+
retval = whatsapp_GroupParticipant_Action_Get(handle);
|
|
6901
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6902
|
+
return py_retval;
|
|
6903
|
+
}
|
|
6904
|
+
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_Action_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6905
|
+
|
|
6906
|
+
|
|
6907
|
+
PyObject *
|
|
6908
|
+
_wrap__whatsapp_whatsapp_GroupParticipant_Action_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
|
6909
|
+
{
|
|
6910
|
+
PyObject *py_retval;
|
|
6911
|
+
int64_t handle;
|
|
6912
|
+
int64_t val;
|
|
6913
|
+
const char *keywords[] = {"handle", "val", NULL};
|
|
6914
|
+
|
|
6915
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
|
6916
|
+
return NULL;
|
|
6917
|
+
}
|
|
6918
|
+
whatsapp_GroupParticipant_Action_Set(handle, val);
|
|
6919
|
+
Py_INCREF(Py_None);
|
|
6920
|
+
py_retval = Py_None;
|
|
6921
|
+
return py_retval;
|
|
6922
|
+
}
|
|
6923
|
+
PyObject * _wrap__whatsapp_whatsapp_GroupParticipant_Action_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
|
6924
|
+
|
|
6925
|
+
|
|
6926
|
+
PyObject *
|
|
6927
|
+
_wrap__whatsapp_whatsapp_NewGateway(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
|
6928
|
+
{
|
|
6929
|
+
PyObject *py_retval;
|
|
6930
|
+
int64_t retval;
|
|
6931
|
+
|
|
6932
|
+
retval = whatsapp_NewGateway();
|
|
6933
|
+
if (PyErr_Occurred()) {
|
|
6934
|
+
return NULL;
|
|
6935
|
+
}
|
|
6936
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
|
6937
|
+
return py_retval;
|
|
6938
|
+
}
|
|
6939
|
+
PyObject * _wrap__whatsapp_whatsapp_NewGateway(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
|
6940
|
+
|
|
6941
|
+
static PyMethodDef _whatsapp_functions[] = {
|
|
6942
|
+
{(char *) "GoPyInit", (PyCFunction) _wrap__whatsapp_GoPyInit, METH_NOARGS, "GoPyInit()\n\n" },
|
|
6943
|
+
{(char *) "DecRef", (PyCFunction) _wrap__whatsapp_DecRef, METH_KEYWORDS|METH_VARARGS, "DecRef(handle)\n\ntype: handle: int64_t" },
|
|
6944
|
+
{(char *) "IncRef", (PyCFunction) _wrap__whatsapp_IncRef, METH_KEYWORDS|METH_VARARGS, "IncRef(handle)\n\ntype: handle: int64_t" },
|
|
6945
|
+
{(char *) "NumHandles", (PyCFunction) _wrap__whatsapp_NumHandles, METH_NOARGS, "NumHandles()\n\n" },
|
|
6946
|
+
{(char *) "Slice_bool_CTor", (PyCFunction) _wrap__whatsapp_Slice_bool_CTor, METH_NOARGS, "Slice_bool_CTor()\n\n" },
|
|
6947
|
+
{(char *) "Slice_bool_len", (PyCFunction) _wrap__whatsapp_Slice_bool_len, METH_KEYWORDS|METH_VARARGS, "Slice_bool_len(handle)\n\ntype: handle: int64_t" },
|
|
6948
|
+
{(char *) "Slice_bool_elem", (PyCFunction) _wrap__whatsapp_Slice_bool_elem, METH_KEYWORDS|METH_VARARGS, "Slice_bool_elem(handle, idx)\n\ntype: handle: int64_t\ntype: idx: int" },
|
|
6949
|
+
{(char *) "Slice_bool_subslice", (PyCFunction) _wrap__whatsapp_Slice_bool_subslice, METH_KEYWORDS|METH_VARARGS, "Slice_bool_subslice(handle, st, ed)\n\ntype: handle: int64_t\ntype: st: int\ntype: ed: int" },
|
|
6950
|
+
{(char *) "Slice_bool_set", (PyCFunction) _wrap__whatsapp_Slice_bool_set, METH_KEYWORDS|METH_VARARGS, "Slice_bool_set(handle, idx, value)\n\ntype: handle: int64_t\ntype: idx: int\ntype: value: bool" },
|
|
6951
|
+
{(char *) "Slice_bool_append", (PyCFunction) _wrap__whatsapp_Slice_bool_append, METH_KEYWORDS|METH_VARARGS, "Slice_bool_append(handle, value)\n\ntype: handle: int64_t\ntype: value: bool" },
|
|
6952
|
+
{(char *) "Slice_byte_CTor", (PyCFunction) _wrap__whatsapp_Slice_byte_CTor, METH_NOARGS, "Slice_byte_CTor()\n\n" },
|
|
6953
|
+
{(char *) "Slice_byte_len", (PyCFunction) _wrap__whatsapp_Slice_byte_len, METH_KEYWORDS|METH_VARARGS, "Slice_byte_len(handle)\n\ntype: handle: int64_t" },
|
|
6954
|
+
{(char *) "Slice_byte_elem", (PyCFunction) _wrap__whatsapp_Slice_byte_elem, METH_KEYWORDS|METH_VARARGS, "Slice_byte_elem(handle, idx)\n\ntype: handle: int64_t\ntype: idx: int" },
|
|
6955
|
+
{(char *) "Slice_byte_subslice", (PyCFunction) _wrap__whatsapp_Slice_byte_subslice, METH_KEYWORDS|METH_VARARGS, "Slice_byte_subslice(handle, st, ed)\n\ntype: handle: int64_t\ntype: st: int\ntype: ed: int" },
|
|
6956
|
+
{(char *) "Slice_byte_set", (PyCFunction) _wrap__whatsapp_Slice_byte_set, METH_KEYWORDS|METH_VARARGS, "Slice_byte_set(handle, idx, value)\n\ntype: handle: int64_t\ntype: idx: int\ntype: value: uint8_t" },
|
|
6957
|
+
{(char *) "Slice_byte_append", (PyCFunction) _wrap__whatsapp_Slice_byte_append, METH_KEYWORDS|METH_VARARGS, "Slice_byte_append(handle, value)\n\ntype: handle: int64_t\ntype: value: uint8_t" },
|
|
6958
|
+
{(char *) "Slice_byte_from_bytes", (PyCFunction) _wrap__whatsapp_Slice_byte_from_bytes, METH_KEYWORDS|METH_VARARGS, "Slice_byte_from_bytes(o)\n\ntype: o: PyObject *" },
|
|
6959
|
+
{(char *) "Slice_byte_to_bytes", (PyCFunction) _wrap__whatsapp_Slice_byte_to_bytes, METH_KEYWORDS|METH_VARARGS, "Slice_byte_to_bytes(handle)\n\ntype: handle: int64_t" },
|
|
6960
|
+
{(char *) "Slice_error_CTor", (PyCFunction) _wrap__whatsapp_Slice_error_CTor, METH_NOARGS, "Slice_error_CTor()\n\n" },
|
|
6961
|
+
{(char *) "Slice_error_len", (PyCFunction) _wrap__whatsapp_Slice_error_len, METH_KEYWORDS|METH_VARARGS, "Slice_error_len(handle)\n\ntype: handle: int64_t" },
|
|
6962
|
+
{(char *) "Slice_error_elem", (PyCFunction) _wrap__whatsapp_Slice_error_elem, METH_KEYWORDS|METH_VARARGS, "Slice_error_elem(handle, idx)\n\ntype: handle: int64_t\ntype: idx: int" },
|
|
6963
|
+
{(char *) "Slice_error_subslice", (PyCFunction) _wrap__whatsapp_Slice_error_subslice, METH_KEYWORDS|METH_VARARGS, "Slice_error_subslice(handle, st, ed)\n\ntype: handle: int64_t\ntype: st: int\ntype: ed: int" },
|
|
6964
|
+
{(char *) "Slice_error_set", (PyCFunction) _wrap__whatsapp_Slice_error_set, METH_KEYWORDS|METH_VARARGS, "Slice_error_set(handle, idx, value)\n\ntype: handle: int64_t\ntype: idx: int\ntype: value: char *" },
|
|
6965
|
+
{(char *) "Slice_error_append", (PyCFunction) _wrap__whatsapp_Slice_error_append, METH_KEYWORDS|METH_VARARGS, "Slice_error_append(handle, value)\n\ntype: handle: int64_t\ntype: value: char *" },
|
|
6966
|
+
{(char *) "Slice_float32_CTor", (PyCFunction) _wrap__whatsapp_Slice_float32_CTor, METH_NOARGS, "Slice_float32_CTor()\n\n" },
|
|
6967
|
+
{(char *) "Slice_float32_len", (PyCFunction) _wrap__whatsapp_Slice_float32_len, METH_KEYWORDS|METH_VARARGS, "Slice_float32_len(handle)\n\ntype: handle: int64_t" },
|
|
6968
|
+
{(char *) "Slice_float32_elem", (PyCFunction) _wrap__whatsapp_Slice_float32_elem, METH_KEYWORDS|METH_VARARGS, "Slice_float32_elem(handle, idx)\n\ntype: handle: int64_t\ntype: idx: int" },
|
|
6969
|
+
{(char *) "Slice_float32_subslice", (PyCFunction) _wrap__whatsapp_Slice_float32_subslice, METH_KEYWORDS|METH_VARARGS, "Slice_float32_subslice(handle, st, ed)\n\ntype: handle: int64_t\ntype: st: int\ntype: ed: int" },
|
|
6970
|
+
{(char *) "Slice_float32_set", (PyCFunction) _wrap__whatsapp_Slice_float32_set, METH_KEYWORDS|METH_VARARGS, "Slice_float32_set(handle, idx, value)\n\ntype: handle: int64_t\ntype: idx: int\ntype: value: float" },
|
|
6971
|
+
{(char *) "Slice_float32_append", (PyCFunction) _wrap__whatsapp_Slice_float32_append, METH_KEYWORDS|METH_VARARGS, "Slice_float32_append(handle, value)\n\ntype: handle: int64_t\ntype: value: float" },
|
|
6972
|
+
{(char *) "Slice_float64_CTor", (PyCFunction) _wrap__whatsapp_Slice_float64_CTor, METH_NOARGS, "Slice_float64_CTor()\n\n" },
|
|
6973
|
+
{(char *) "Slice_float64_len", (PyCFunction) _wrap__whatsapp_Slice_float64_len, METH_KEYWORDS|METH_VARARGS, "Slice_float64_len(handle)\n\ntype: handle: int64_t" },
|
|
6974
|
+
{(char *) "Slice_float64_elem", (PyCFunction) _wrap__whatsapp_Slice_float64_elem, METH_KEYWORDS|METH_VARARGS, "Slice_float64_elem(handle, idx)\n\ntype: handle: int64_t\ntype: idx: int" },
|
|
6975
|
+
{(char *) "Slice_float64_subslice", (PyCFunction) _wrap__whatsapp_Slice_float64_subslice, METH_KEYWORDS|METH_VARARGS, "Slice_float64_subslice(handle, st, ed)\n\ntype: handle: int64_t\ntype: st: int\ntype: ed: int" },
|
|
6976
|
+
{(char *) "Slice_float64_set", (PyCFunction) _wrap__whatsapp_Slice_float64_set, METH_KEYWORDS|METH_VARARGS, "Slice_float64_set(handle, idx, value)\n\ntype: handle: int64_t\ntype: idx: int\ntype: value: double" },
|
|
6977
|
+
{(char *) "Slice_float64_append", (PyCFunction) _wrap__whatsapp_Slice_float64_append, METH_KEYWORDS|METH_VARARGS, "Slice_float64_append(handle, value)\n\ntype: handle: int64_t\ntype: value: double" },
|
|
6978
|
+
{(char *) "Slice_int_CTor", (PyCFunction) _wrap__whatsapp_Slice_int_CTor, METH_NOARGS, "Slice_int_CTor()\n\n" },
|
|
6979
|
+
{(char *) "Slice_int_len", (PyCFunction) _wrap__whatsapp_Slice_int_len, METH_KEYWORDS|METH_VARARGS, "Slice_int_len(handle)\n\ntype: handle: int64_t" },
|
|
6534
6980
|
{(char *) "Slice_int_elem", (PyCFunction) _wrap__whatsapp_Slice_int_elem, METH_KEYWORDS|METH_VARARGS, "Slice_int_elem(handle, idx)\n\ntype: handle: int64_t\ntype: idx: int" },
|
|
6535
6981
|
{(char *) "Slice_int_subslice", (PyCFunction) _wrap__whatsapp_Slice_int_subslice, METH_KEYWORDS|METH_VARARGS, "Slice_int_subslice(handle, st, ed)\n\ntype: handle: int64_t\ntype: st: int\ntype: ed: int" },
|
|
6536
6982
|
{(char *) "Slice_int_set", (PyCFunction) _wrap__whatsapp_Slice_int_set, METH_KEYWORDS|METH_VARARGS, "Slice_int_set(handle, idx, value)\n\ntype: handle: int64_t\ntype: idx: int\ntype: value: int64_t" },
|
|
@@ -6631,6 +7077,12 @@ static PyMethodDef _whatsapp_functions[] = {
|
|
|
6631
7077
|
{(char *) "Slice_whatsapp_Message_subslice", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_Message_subslice, METH_KEYWORDS|METH_VARARGS, "Slice_whatsapp_Message_subslice(handle, st, ed)\n\ntype: handle: int64_t\ntype: st: int\ntype: ed: int" },
|
|
6632
7078
|
{(char *) "Slice_whatsapp_Message_set", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_Message_set, METH_KEYWORDS|METH_VARARGS, "Slice_whatsapp_Message_set(handle, idx, value)\n\ntype: handle: int64_t\ntype: idx: int\ntype: value: int64_t" },
|
|
6633
7079
|
{(char *) "Slice_whatsapp_Message_append", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_Message_append, METH_KEYWORDS|METH_VARARGS, "Slice_whatsapp_Message_append(handle, value)\n\ntype: handle: int64_t\ntype: value: int64_t" },
|
|
7080
|
+
{(char *) "Slice_whatsapp_PollOption_CTor", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_PollOption_CTor, METH_NOARGS, "Slice_whatsapp_PollOption_CTor()\n\n" },
|
|
7081
|
+
{(char *) "Slice_whatsapp_PollOption_len", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_PollOption_len, METH_KEYWORDS|METH_VARARGS, "Slice_whatsapp_PollOption_len(handle)\n\ntype: handle: int64_t" },
|
|
7082
|
+
{(char *) "Slice_whatsapp_PollOption_elem", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_PollOption_elem, METH_KEYWORDS|METH_VARARGS, "Slice_whatsapp_PollOption_elem(handle, idx)\n\ntype: handle: int64_t\ntype: idx: int" },
|
|
7083
|
+
{(char *) "Slice_whatsapp_PollOption_subslice", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_PollOption_subslice, METH_KEYWORDS|METH_VARARGS, "Slice_whatsapp_PollOption_subslice(handle, st, ed)\n\ntype: handle: int64_t\ntype: st: int\ntype: ed: int" },
|
|
7084
|
+
{(char *) "Slice_whatsapp_PollOption_set", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_PollOption_set, METH_KEYWORDS|METH_VARARGS, "Slice_whatsapp_PollOption_set(handle, idx, value)\n\ntype: handle: int64_t\ntype: idx: int\ntype: value: int64_t" },
|
|
7085
|
+
{(char *) "Slice_whatsapp_PollOption_append", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_PollOption_append, METH_KEYWORDS|METH_VARARGS, "Slice_whatsapp_PollOption_append(handle, value)\n\ntype: handle: int64_t\ntype: value: int64_t" },
|
|
6634
7086
|
{(char *) "Slice_whatsapp_Receipt_CTor", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_Receipt_CTor, METH_NOARGS, "Slice_whatsapp_Receipt_CTor()\n\n" },
|
|
6635
7087
|
{(char *) "Slice_whatsapp_Receipt_len", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_Receipt_len, METH_KEYWORDS|METH_VARARGS, "Slice_whatsapp_Receipt_len(handle)\n\ntype: handle: int64_t" },
|
|
6636
7088
|
{(char *) "Slice_whatsapp_Receipt_elem", (PyCFunction) _wrap__whatsapp_Slice_whatsapp_Receipt_elem, METH_KEYWORDS|METH_VARARGS, "Slice_whatsapp_Receipt_elem(handle, idx)\n\ntype: handle: int64_t\ntype: idx: int" },
|
|
@@ -6644,71 +7096,50 @@ static PyMethodDef _whatsapp_functions[] = {
|
|
|
6644
7096
|
{(char *) "whatsapp_GroupSubject_SetAt_Set", (PyCFunction) _wrap__whatsapp_whatsapp_GroupSubject_SetAt_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_GroupSubject_SetAt_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
6645
7097
|
{(char *) "whatsapp_GroupSubject_SetByJID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_GroupSubject_SetByJID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_GroupSubject_SetByJID_Get(handle)\n\ntype: handle: int64_t" },
|
|
6646
7098
|
{(char *) "whatsapp_GroupSubject_SetByJID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_GroupSubject_SetByJID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_GroupSubject_SetByJID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6647
|
-
{(char *) "
|
|
6648
|
-
{(char *) "
|
|
6649
|
-
{(char *) "
|
|
6650
|
-
{(char *) "
|
|
6651
|
-
{(char *) "
|
|
6652
|
-
{(char *) "
|
|
6653
|
-
{(char *) "
|
|
6654
|
-
{(char *) "
|
|
6655
|
-
{(char *) "
|
|
6656
|
-
{(char *) "
|
|
6657
|
-
{(char *) "
|
|
6658
|
-
{(char *) "
|
|
6659
|
-
{(char *) "
|
|
6660
|
-
{(char *) "
|
|
6661
|
-
{(char *) "
|
|
6662
|
-
{(char *) "
|
|
6663
|
-
{(char *) "
|
|
6664
|
-
{(char *) "
|
|
6665
|
-
{(char *) "
|
|
6666
|
-
{(char *) "
|
|
6667
|
-
{(char *) "
|
|
6668
|
-
{(char *) "
|
|
6669
|
-
{(char *) "
|
|
6670
|
-
{(char *) "
|
|
6671
|
-
{(char *) "
|
|
6672
|
-
{(char *) "
|
|
6673
|
-
{(char *) "
|
|
6674
|
-
{(char *) "
|
|
6675
|
-
{(char *) "
|
|
6676
|
-
{(char *) "
|
|
6677
|
-
{(char *) "
|
|
6678
|
-
{(char *) "
|
|
6679
|
-
{(char *) "
|
|
6680
|
-
{(char *) "
|
|
6681
|
-
{(char *) "
|
|
6682
|
-
{(char *) "
|
|
6683
|
-
{(char *) "
|
|
6684
|
-
{(char *) "
|
|
6685
|
-
{(char *) "
|
|
6686
|
-
{(char *) "
|
|
6687
|
-
{(char *) "
|
|
6688
|
-
{(char *) "
|
|
6689
|
-
{(char *) "
|
|
6690
|
-
{(char *) "
|
|
6691
|
-
{(char *) "whatsapp_Attachment_Data_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_Data_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_Data_Get(handle)\n\ntype: handle: int64_t" },
|
|
6692
|
-
{(char *) "whatsapp_Attachment_Data_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_Data_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_Data_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
6693
|
-
{(char *) "whatsapp_Attachment_GetSpec", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_GetSpec, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_GetSpec(_handle, ctx)\n\ntype: _handle: int64_t\ntype: ctx: int64_t" },
|
|
6694
|
-
{(char *) "whatsapp_Connect_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Connect_CTor, METH_NOARGS, "whatsapp_Connect_CTor()\n\n" },
|
|
6695
|
-
{(char *) "whatsapp_Connect_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Connect_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Connect_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
6696
|
-
{(char *) "whatsapp_Connect_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Connect_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Connect_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6697
|
-
{(char *) "whatsapp_Connect_Error_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Connect_Error_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Connect_Error_Get(handle)\n\ntype: handle: int64_t" },
|
|
6698
|
-
{(char *) "whatsapp_Connect_Error_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Connect_Error_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Connect_Error_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6699
|
-
{(char *) "whatsapp_Receipt_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_CTor, METH_NOARGS, "whatsapp_Receipt_CTor()\n\n" },
|
|
6700
|
-
{(char *) "whatsapp_Receipt_Kind_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_Kind_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_Kind_Get(handle)\n\ntype: handle: int64_t" },
|
|
6701
|
-
{(char *) "whatsapp_Receipt_Kind_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_Kind_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_Kind_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
6702
|
-
{(char *) "whatsapp_Receipt_MessageIDs_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_MessageIDs_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_MessageIDs_Get(handle)\n\ntype: handle: int64_t" },
|
|
6703
|
-
{(char *) "whatsapp_Receipt_MessageIDs_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_MessageIDs_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_MessageIDs_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
6704
|
-
{(char *) "whatsapp_Receipt_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
6705
|
-
{(char *) "whatsapp_Receipt_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6706
|
-
{(char *) "whatsapp_Receipt_GroupJID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_GroupJID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_GroupJID_Get(handle)\n\ntype: handle: int64_t" },
|
|
6707
|
-
{(char *) "whatsapp_Receipt_GroupJID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_GroupJID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_GroupJID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6708
|
-
{(char *) "whatsapp_Receipt_Timestamp_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_Timestamp_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_Timestamp_Get(handle)\n\ntype: handle: int64_t" },
|
|
6709
|
-
{(char *) "whatsapp_Receipt_Timestamp_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_Timestamp_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_Timestamp_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
6710
|
-
{(char *) "whatsapp_Receipt_IsCarbon_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_IsCarbon_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_IsCarbon_Get(handle)\n\ntype: handle: int64_t" },
|
|
6711
|
-
{(char *) "whatsapp_Receipt_IsCarbon_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_IsCarbon_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_IsCarbon_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: bool" },
|
|
7099
|
+
{(char *) "whatsapp_Message_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Message_CTor, METH_NOARGS, "whatsapp_Message_CTor()\n\n" },
|
|
7100
|
+
{(char *) "whatsapp_Message_Kind_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Kind_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Kind_Get(handle)\n\ntype: handle: int64_t" },
|
|
7101
|
+
{(char *) "whatsapp_Message_Kind_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Kind_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Kind_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7102
|
+
{(char *) "whatsapp_Message_ID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_ID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_ID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7103
|
+
{(char *) "whatsapp_Message_ID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_ID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_ID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7104
|
+
{(char *) "whatsapp_Message_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7105
|
+
{(char *) "whatsapp_Message_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7106
|
+
{(char *) "whatsapp_Message_GroupJID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_GroupJID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_GroupJID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7107
|
+
{(char *) "whatsapp_Message_GroupJID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_GroupJID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_GroupJID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7108
|
+
{(char *) "whatsapp_Message_OriginJID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_OriginJID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_OriginJID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7109
|
+
{(char *) "whatsapp_Message_OriginJID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_OriginJID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_OriginJID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7110
|
+
{(char *) "whatsapp_Message_Body_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Body_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Body_Get(handle)\n\ntype: handle: int64_t" },
|
|
7111
|
+
{(char *) "whatsapp_Message_Body_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Body_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Body_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7112
|
+
{(char *) "whatsapp_Message_Timestamp_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Timestamp_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Timestamp_Get(handle)\n\ntype: handle: int64_t" },
|
|
7113
|
+
{(char *) "whatsapp_Message_Timestamp_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Timestamp_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Timestamp_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7114
|
+
{(char *) "whatsapp_Message_IsCarbon_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_IsCarbon_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_IsCarbon_Get(handle)\n\ntype: handle: int64_t" },
|
|
7115
|
+
{(char *) "whatsapp_Message_IsCarbon_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_IsCarbon_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_IsCarbon_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: bool" },
|
|
7116
|
+
{(char *) "whatsapp_Message_IsForwarded_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_IsForwarded_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_IsForwarded_Get(handle)\n\ntype: handle: int64_t" },
|
|
7117
|
+
{(char *) "whatsapp_Message_IsForwarded_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_IsForwarded_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_IsForwarded_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: bool" },
|
|
7118
|
+
{(char *) "whatsapp_Message_ReplyID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_ReplyID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_ReplyID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7119
|
+
{(char *) "whatsapp_Message_ReplyID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_ReplyID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_ReplyID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7120
|
+
{(char *) "whatsapp_Message_ReplyBody_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_ReplyBody_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_ReplyBody_Get(handle)\n\ntype: handle: int64_t" },
|
|
7121
|
+
{(char *) "whatsapp_Message_ReplyBody_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_ReplyBody_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_ReplyBody_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7122
|
+
{(char *) "whatsapp_Message_Attachments_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Attachments_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Attachments_Get(handle)\n\ntype: handle: int64_t" },
|
|
7123
|
+
{(char *) "whatsapp_Message_Attachments_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Attachments_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Attachments_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7124
|
+
{(char *) "whatsapp_Message_Preview_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Preview_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Preview_Get(handle)\n\ntype: handle: int64_t" },
|
|
7125
|
+
{(char *) "whatsapp_Message_Preview_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Preview_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Preview_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7126
|
+
{(char *) "whatsapp_Message_Location_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Location_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Location_Get(handle)\n\ntype: handle: int64_t" },
|
|
7127
|
+
{(char *) "whatsapp_Message_Location_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Location_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Location_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7128
|
+
{(char *) "whatsapp_Message_Poll_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Poll_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Poll_Get(handle)\n\ntype: handle: int64_t" },
|
|
7129
|
+
{(char *) "whatsapp_Message_Poll_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Poll_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Poll_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7130
|
+
{(char *) "whatsapp_Message_Album_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Album_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Album_Get(handle)\n\ntype: handle: int64_t" },
|
|
7131
|
+
{(char *) "whatsapp_Message_Album_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Album_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Album_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7132
|
+
{(char *) "whatsapp_Message_MentionJIDs_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_MentionJIDs_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_MentionJIDs_Get(handle)\n\ntype: handle: int64_t" },
|
|
7133
|
+
{(char *) "whatsapp_Message_MentionJIDs_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_MentionJIDs_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_MentionJIDs_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7134
|
+
{(char *) "whatsapp_Message_Receipts_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Receipts_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Receipts_Get(handle)\n\ntype: handle: int64_t" },
|
|
7135
|
+
{(char *) "whatsapp_Message_Receipts_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Receipts_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Receipts_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7136
|
+
{(char *) "whatsapp_Message_Reactions_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Reactions_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Reactions_Get(handle)\n\ntype: handle: int64_t" },
|
|
7137
|
+
{(char *) "whatsapp_Message_Reactions_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Message_Reactions_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Message_Reactions_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7138
|
+
{(char *) "whatsapp_Poll_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Poll_CTor, METH_NOARGS, "whatsapp_Poll_CTor()\n\n" },
|
|
7139
|
+
{(char *) "whatsapp_Poll_Title_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Poll_Title_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Poll_Title_Get(handle)\n\ntype: handle: int64_t" },
|
|
7140
|
+
{(char *) "whatsapp_Poll_Title_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Poll_Title_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Poll_Title_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7141
|
+
{(char *) "whatsapp_Poll_Options_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Poll_Options_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Poll_Options_Get(handle)\n\ntype: handle: int64_t" },
|
|
7142
|
+
{(char *) "whatsapp_Poll_Options_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Poll_Options_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Poll_Options_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
6712
7143
|
{(char *) "whatsapp_Group_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Group_CTor, METH_NOARGS, "whatsapp_Group_CTor()\n\n" },
|
|
6713
7144
|
{(char *) "whatsapp_Group_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Group_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Group_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
6714
7145
|
{(char *) "whatsapp_Group_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Group_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Group_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
@@ -6720,6 +7151,10 @@ static PyMethodDef _whatsapp_functions[] = {
|
|
|
6720
7151
|
{(char *) "whatsapp_Group_Nickname_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Group_Nickname_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Group_Nickname_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6721
7152
|
{(char *) "whatsapp_Group_Participants_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Group_Participants_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Group_Participants_Get(handle)\n\ntype: handle: int64_t" },
|
|
6722
7153
|
{(char *) "whatsapp_Group_Participants_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Group_Participants_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Group_Participants_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7154
|
+
{(char *) "whatsapp_LinkedDevice_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_LinkedDevice_CTor, METH_NOARGS, "whatsapp_LinkedDevice_CTor()\n\n" },
|
|
7155
|
+
{(char *) "whatsapp_LinkedDevice_ID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_LinkedDevice_ID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_LinkedDevice_ID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7156
|
+
{(char *) "whatsapp_LinkedDevice_ID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_LinkedDevice_ID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_LinkedDevice_ID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7157
|
+
{(char *) "whatsapp_LinkedDevice_JID", (PyCFunction) _wrap__whatsapp_whatsapp_LinkedDevice_JID, METH_KEYWORDS|METH_VARARGS, "whatsapp_LinkedDevice_JID(_handle)\n\ntype: _handle: int64_t" },
|
|
6723
7158
|
{(char *) "whatsapp_Presence_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Presence_CTor, METH_NOARGS, "whatsapp_Presence_CTor()\n\n" },
|
|
6724
7159
|
{(char *) "whatsapp_Presence_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Presence_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Presence_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
6725
7160
|
{(char *) "whatsapp_Presence_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Presence_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Presence_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
@@ -6727,6 +7162,34 @@ static PyMethodDef _whatsapp_functions[] = {
|
|
|
6727
7162
|
{(char *) "whatsapp_Presence_Kind_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Presence_Kind_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Presence_Kind_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
6728
7163
|
{(char *) "whatsapp_Presence_LastSeen_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Presence_LastSeen_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Presence_LastSeen_Get(handle)\n\ntype: handle: int64_t" },
|
|
6729
7164
|
{(char *) "whatsapp_Presence_LastSeen_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Presence_LastSeen_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Presence_LastSeen_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7165
|
+
{(char *) "whatsapp_Receipt_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_CTor, METH_NOARGS, "whatsapp_Receipt_CTor()\n\n" },
|
|
7166
|
+
{(char *) "whatsapp_Receipt_Kind_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_Kind_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_Kind_Get(handle)\n\ntype: handle: int64_t" },
|
|
7167
|
+
{(char *) "whatsapp_Receipt_Kind_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_Kind_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_Kind_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7168
|
+
{(char *) "whatsapp_Receipt_MessageIDs_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_MessageIDs_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_MessageIDs_Get(handle)\n\ntype: handle: int64_t" },
|
|
7169
|
+
{(char *) "whatsapp_Receipt_MessageIDs_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_MessageIDs_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_MessageIDs_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7170
|
+
{(char *) "whatsapp_Receipt_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7171
|
+
{(char *) "whatsapp_Receipt_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7172
|
+
{(char *) "whatsapp_Receipt_GroupJID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_GroupJID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_GroupJID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7173
|
+
{(char *) "whatsapp_Receipt_GroupJID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_GroupJID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_GroupJID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7174
|
+
{(char *) "whatsapp_Receipt_Timestamp_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_Timestamp_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_Timestamp_Get(handle)\n\ntype: handle: int64_t" },
|
|
7175
|
+
{(char *) "whatsapp_Receipt_Timestamp_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_Timestamp_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_Timestamp_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7176
|
+
{(char *) "whatsapp_Receipt_IsCarbon_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_IsCarbon_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_IsCarbon_Get(handle)\n\ntype: handle: int64_t" },
|
|
7177
|
+
{(char *) "whatsapp_Receipt_IsCarbon_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Receipt_IsCarbon_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Receipt_IsCarbon_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: bool" },
|
|
7178
|
+
{(char *) "whatsapp_Attachment_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_CTor, METH_NOARGS, "whatsapp_Attachment_CTor()\n\n" },
|
|
7179
|
+
{(char *) "whatsapp_Attachment_MIME_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_MIME_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_MIME_Get(handle)\n\ntype: handle: int64_t" },
|
|
7180
|
+
{(char *) "whatsapp_Attachment_MIME_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_MIME_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_MIME_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7181
|
+
{(char *) "whatsapp_Attachment_Filename_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_Filename_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_Filename_Get(handle)\n\ntype: handle: int64_t" },
|
|
7182
|
+
{(char *) "whatsapp_Attachment_Filename_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_Filename_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_Filename_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7183
|
+
{(char *) "whatsapp_Attachment_Caption_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_Caption_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_Caption_Get(handle)\n\ntype: handle: int64_t" },
|
|
7184
|
+
{(char *) "whatsapp_Attachment_Caption_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_Caption_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_Caption_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7185
|
+
{(char *) "whatsapp_Attachment_Data_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_Data_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_Data_Get(handle)\n\ntype: handle: int64_t" },
|
|
7186
|
+
{(char *) "whatsapp_Attachment_Data_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_Data_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_Data_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7187
|
+
{(char *) "whatsapp_Attachment_GetSpec", (PyCFunction) _wrap__whatsapp_whatsapp_Attachment_GetSpec, METH_KEYWORDS|METH_VARARGS, "whatsapp_Attachment_GetSpec(_handle, ctx)\n\ntype: _handle: int64_t\ntype: ctx: int64_t" },
|
|
7188
|
+
{(char *) "whatsapp_Contact_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Contact_CTor, METH_NOARGS, "whatsapp_Contact_CTor()\n\n" },
|
|
7189
|
+
{(char *) "whatsapp_Contact_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Contact_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Contact_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7190
|
+
{(char *) "whatsapp_Contact_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Contact_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Contact_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7191
|
+
{(char *) "whatsapp_Contact_Name_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Contact_Name_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Contact_Name_Get(handle)\n\ntype: handle: int64_t" },
|
|
7192
|
+
{(char *) "whatsapp_Contact_Name_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Contact_Name_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Contact_Name_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6730
7193
|
{(char *) "whatsapp_EventPayload_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_EventPayload_CTor, METH_NOARGS, "whatsapp_EventPayload_CTor()\n\n" },
|
|
6731
7194
|
{(char *) "whatsapp_EventPayload_QRCode_Get", (PyCFunction) _wrap__whatsapp_whatsapp_EventPayload_QRCode_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_EventPayload_QRCode_Get(handle)\n\ntype: handle: int64_t" },
|
|
6732
7195
|
{(char *) "whatsapp_EventPayload_QRCode_Set", (PyCFunction) _wrap__whatsapp_whatsapp_EventPayload_QRCode_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_EventPayload_QRCode_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
@@ -6760,25 +7223,18 @@ static PyMethodDef _whatsapp_functions[] = {
|
|
|
6760
7223
|
{(char *) "whatsapp_Gateway_Init", (PyCFunction) _wrap__whatsapp_whatsapp_Gateway_Init, METH_KEYWORDS|METH_VARARGS, "whatsapp_Gateway_Init(_handle)\n\ntype: _handle: int64_t" },
|
|
6761
7224
|
{(char *) "whatsapp_Gateway_NewSession", (PyCFunction) _wrap__whatsapp_whatsapp_Gateway_NewSession, METH_KEYWORDS|METH_VARARGS, "whatsapp_Gateway_NewSession(_handle, device)\n\ntype: _handle: int64_t\ntype: device: int64_t" },
|
|
6762
7225
|
{(char *) "whatsapp_Gateway_CleanupSession", (PyCFunction) _wrap__whatsapp_whatsapp_Gateway_CleanupSession, METH_KEYWORDS|METH_VARARGS, "whatsapp_Gateway_CleanupSession(_handle, device)\n\ntype: _handle: int64_t\ntype: device: int64_t" },
|
|
6763
|
-
{(char *) "
|
|
6764
|
-
{(char *) "
|
|
6765
|
-
{(char *) "
|
|
6766
|
-
{(char *) "
|
|
6767
|
-
{(char *) "
|
|
6768
|
-
{(char *) "
|
|
6769
|
-
{(char *) "
|
|
6770
|
-
{(char *) "
|
|
6771
|
-
{(char *) "
|
|
6772
|
-
{(char *) "
|
|
6773
|
-
{(char *) "
|
|
6774
|
-
{(char *) "
|
|
6775
|
-
{(char *) "whatsapp_Call_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Call_CTor, METH_NOARGS, "whatsapp_Call_CTor()\n\n" },
|
|
6776
|
-
{(char *) "whatsapp_Call_State_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Call_State_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_State_Get(handle)\n\ntype: handle: int64_t" },
|
|
6777
|
-
{(char *) "whatsapp_Call_State_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Call_State_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_State_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
6778
|
-
{(char *) "whatsapp_Call_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Call_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
6779
|
-
{(char *) "whatsapp_Call_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Call_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6780
|
-
{(char *) "whatsapp_Call_Timestamp_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Call_Timestamp_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_Timestamp_Get(handle)\n\ntype: handle: int64_t" },
|
|
6781
|
-
{(char *) "whatsapp_Call_Timestamp_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Call_Timestamp_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_Timestamp_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7226
|
+
{(char *) "whatsapp_ChatState_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_ChatState_CTor, METH_NOARGS, "whatsapp_ChatState_CTor()\n\n" },
|
|
7227
|
+
{(char *) "whatsapp_ChatState_Kind_Get", (PyCFunction) _wrap__whatsapp_whatsapp_ChatState_Kind_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_ChatState_Kind_Get(handle)\n\ntype: handle: int64_t" },
|
|
7228
|
+
{(char *) "whatsapp_ChatState_Kind_Set", (PyCFunction) _wrap__whatsapp_whatsapp_ChatState_Kind_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_ChatState_Kind_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7229
|
+
{(char *) "whatsapp_ChatState_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_ChatState_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_ChatState_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7230
|
+
{(char *) "whatsapp_ChatState_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_ChatState_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_ChatState_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7231
|
+
{(char *) "whatsapp_ChatState_GroupJID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_ChatState_GroupJID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_ChatState_GroupJID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7232
|
+
{(char *) "whatsapp_ChatState_GroupJID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_ChatState_GroupJID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_ChatState_GroupJID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7233
|
+
{(char *) "whatsapp_Connect_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Connect_CTor, METH_NOARGS, "whatsapp_Connect_CTor()\n\n" },
|
|
7234
|
+
{(char *) "whatsapp_Connect_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Connect_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Connect_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7235
|
+
{(char *) "whatsapp_Connect_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Connect_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Connect_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7236
|
+
{(char *) "whatsapp_Connect_Error_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Connect_Error_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Connect_Error_Get(handle)\n\ntype: handle: int64_t" },
|
|
7237
|
+
{(char *) "whatsapp_Connect_Error_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Connect_Error_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Connect_Error_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6782
7238
|
{(char *) "whatsapp_Location_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Location_CTor, METH_NOARGS, "whatsapp_Location_CTor()\n\n" },
|
|
6783
7239
|
{(char *) "whatsapp_Location_Latitude_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Location_Latitude_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Location_Latitude_Get(handle)\n\ntype: handle: int64_t" },
|
|
6784
7240
|
{(char *) "whatsapp_Location_Latitude_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Location_Latitude_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Location_Latitude_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: double" },
|
|
@@ -6794,53 +7250,68 @@ static PyMethodDef _whatsapp_functions[] = {
|
|
|
6794
7250
|
{(char *) "whatsapp_Location_Address_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Location_Address_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Location_Address_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6795
7251
|
{(char *) "whatsapp_Location_URL_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Location_URL_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Location_URL_Get(handle)\n\ntype: handle: int64_t" },
|
|
6796
7252
|
{(char *) "whatsapp_Location_URL_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Location_URL_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Location_URL_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
6797
|
-
{(char *) "
|
|
6798
|
-
{(char *) "
|
|
6799
|
-
{(char *) "
|
|
6800
|
-
{(char *) "
|
|
6801
|
-
{(char *) "
|
|
6802
|
-
{(char *) "
|
|
6803
|
-
{(char *) "
|
|
6804
|
-
{(char *) "
|
|
6805
|
-
{(char *) "
|
|
6806
|
-
{(char *) "
|
|
6807
|
-
{(char *) "
|
|
6808
|
-
{(char *) "
|
|
6809
|
-
{(char *) "
|
|
6810
|
-
{(char *) "
|
|
6811
|
-
{(char *) "
|
|
6812
|
-
{(char *) "
|
|
6813
|
-
{(char *) "
|
|
6814
|
-
{(char *) "
|
|
6815
|
-
{(char *) "
|
|
6816
|
-
{(char *) "
|
|
6817
|
-
{(char *) "
|
|
6818
|
-
{(char *) "
|
|
6819
|
-
{(char *) "
|
|
6820
|
-
{(char *) "
|
|
6821
|
-
{(char *) "
|
|
6822
|
-
{(char *) "
|
|
6823
|
-
{(char *) "
|
|
6824
|
-
{(char *) "
|
|
6825
|
-
{(char *) "
|
|
6826
|
-
{(char *) "
|
|
6827
|
-
{(char *) "
|
|
6828
|
-
{(char *) "
|
|
6829
|
-
{(char *) "
|
|
6830
|
-
{(char *) "
|
|
6831
|
-
{(char *) "
|
|
6832
|
-
{(char *) "
|
|
6833
|
-
{(char *) "
|
|
6834
|
-
{(char *) "
|
|
6835
|
-
{(char *) "
|
|
6836
|
-
{(char *) "
|
|
6837
|
-
{(char *) "
|
|
6838
|
-
{(char *) "
|
|
6839
|
-
{(char *) "
|
|
6840
|
-
{(char *) "
|
|
6841
|
-
{(char *) "
|
|
6842
|
-
{(char *) "
|
|
6843
|
-
{(char *) "
|
|
7253
|
+
{(char *) "whatsapp_PollOption_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_PollOption_CTor, METH_NOARGS, "whatsapp_PollOption_CTor()\n\n" },
|
|
7254
|
+
{(char *) "whatsapp_PollOption_Title_Get", (PyCFunction) _wrap__whatsapp_whatsapp_PollOption_Title_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_PollOption_Title_Get(handle)\n\ntype: handle: int64_t" },
|
|
7255
|
+
{(char *) "whatsapp_PollOption_Title_Set", (PyCFunction) _wrap__whatsapp_whatsapp_PollOption_Title_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_PollOption_Title_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7256
|
+
{(char *) "whatsapp_Preview_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_CTor, METH_NOARGS, "whatsapp_Preview_CTor()\n\n" },
|
|
7257
|
+
{(char *) "whatsapp_Preview_Kind_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_Kind_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Preview_Kind_Get(handle)\n\ntype: handle: int64_t" },
|
|
7258
|
+
{(char *) "whatsapp_Preview_Kind_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_Kind_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Preview_Kind_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7259
|
+
{(char *) "whatsapp_Preview_URL_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_URL_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Preview_URL_Get(handle)\n\ntype: handle: int64_t" },
|
|
7260
|
+
{(char *) "whatsapp_Preview_URL_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_URL_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Preview_URL_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7261
|
+
{(char *) "whatsapp_Preview_Title_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_Title_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Preview_Title_Get(handle)\n\ntype: handle: int64_t" },
|
|
7262
|
+
{(char *) "whatsapp_Preview_Title_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_Title_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Preview_Title_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7263
|
+
{(char *) "whatsapp_Preview_Description_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_Description_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Preview_Description_Get(handle)\n\ntype: handle: int64_t" },
|
|
7264
|
+
{(char *) "whatsapp_Preview_Description_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_Description_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Preview_Description_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7265
|
+
{(char *) "whatsapp_Preview_Thumbnail_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_Thumbnail_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Preview_Thumbnail_Get(handle)\n\ntype: handle: int64_t" },
|
|
7266
|
+
{(char *) "whatsapp_Preview_Thumbnail_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Preview_Thumbnail_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Preview_Thumbnail_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7267
|
+
{(char *) "whatsapp_Session_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Session_CTor, METH_NOARGS, "whatsapp_Session_CTor()\n\n" },
|
|
7268
|
+
{(char *) "whatsapp_Session_Login", (PyCFunction) _wrap__whatsapp_whatsapp_Session_Login, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_Login(_handle)\n\ntype: _handle: int64_t" },
|
|
7269
|
+
{(char *) "whatsapp_Session_Logout", (PyCFunction) _wrap__whatsapp_whatsapp_Session_Logout, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_Logout(_handle)\n\ntype: _handle: int64_t" },
|
|
7270
|
+
{(char *) "whatsapp_Session_Disconnect", (PyCFunction) _wrap__whatsapp_whatsapp_Session_Disconnect, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_Disconnect(_handle)\n\ntype: _handle: int64_t" },
|
|
7271
|
+
{(char *) "whatsapp_Session_PairPhone", (PyCFunction) _wrap__whatsapp_whatsapp_Session_PairPhone, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_PairPhone(_handle, phone)\n\ntype: _handle: int64_t\ntype: phone: char *" },
|
|
7272
|
+
{(char *) "whatsapp_Session_SendMessage", (PyCFunction) _wrap__whatsapp_whatsapp_Session_SendMessage, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_SendMessage(_handle, message)\n\ntype: _handle: int64_t\ntype: message: int64_t" },
|
|
7273
|
+
{(char *) "whatsapp_Session_GenerateMessageID", (PyCFunction) _wrap__whatsapp_whatsapp_Session_GenerateMessageID, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_GenerateMessageID(_handle)\n\ntype: _handle: int64_t" },
|
|
7274
|
+
{(char *) "whatsapp_Session_SendChatState", (PyCFunction) _wrap__whatsapp_whatsapp_Session_SendChatState, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_SendChatState(_handle, state)\n\ntype: _handle: int64_t\ntype: state: int64_t" },
|
|
7275
|
+
{(char *) "whatsapp_Session_SendReceipt", (PyCFunction) _wrap__whatsapp_whatsapp_Session_SendReceipt, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_SendReceipt(_handle, receipt)\n\ntype: _handle: int64_t\ntype: receipt: int64_t" },
|
|
7276
|
+
{(char *) "whatsapp_Session_SendPresence", (PyCFunction) _wrap__whatsapp_whatsapp_Session_SendPresence, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_SendPresence(_handle, presence, statusMessage)\n\ntype: _handle: int64_t\ntype: presence: int64_t\ntype: statusMessage: char *" },
|
|
7277
|
+
{(char *) "whatsapp_Session_GetContacts", (PyCFunction) _wrap__whatsapp_whatsapp_Session_GetContacts, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_GetContacts(_handle, refresh)\n\ntype: _handle: int64_t\ntype: refresh: bool" },
|
|
7278
|
+
{(char *) "whatsapp_Session_GetGroups", (PyCFunction) _wrap__whatsapp_whatsapp_Session_GetGroups, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_GetGroups(_handle)\n\ntype: _handle: int64_t" },
|
|
7279
|
+
{(char *) "whatsapp_Session_CreateGroup", (PyCFunction) _wrap__whatsapp_whatsapp_Session_CreateGroup, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_CreateGroup(_handle, name, participants)\n\ntype: _handle: int64_t\ntype: name: char *\ntype: participants: int64_t" },
|
|
7280
|
+
{(char *) "whatsapp_Session_LeaveGroup", (PyCFunction) _wrap__whatsapp_whatsapp_Session_LeaveGroup, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_LeaveGroup(_handle, resourceID)\n\ntype: _handle: int64_t\ntype: resourceID: char *" },
|
|
7281
|
+
{(char *) "whatsapp_Session_GetAvatar", (PyCFunction) _wrap__whatsapp_whatsapp_Session_GetAvatar, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_GetAvatar(_handle, resourceID, avatarID)\n\ntype: _handle: int64_t\ntype: resourceID: char *\ntype: avatarID: char *" },
|
|
7282
|
+
{(char *) "whatsapp_Session_SetAvatar", (PyCFunction) _wrap__whatsapp_whatsapp_Session_SetAvatar, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_SetAvatar(_handle, resourceID, avatar)\n\ntype: _handle: int64_t\ntype: resourceID: char *\ntype: avatar: int64_t" },
|
|
7283
|
+
{(char *) "whatsapp_Session_SetGroupName", (PyCFunction) _wrap__whatsapp_whatsapp_Session_SetGroupName, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_SetGroupName(_handle, resourceID, name)\n\ntype: _handle: int64_t\ntype: resourceID: char *\ntype: name: char *" },
|
|
7284
|
+
{(char *) "whatsapp_Session_SetGroupTopic", (PyCFunction) _wrap__whatsapp_whatsapp_Session_SetGroupTopic, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_SetGroupTopic(_handle, resourceID, topic)\n\ntype: _handle: int64_t\ntype: resourceID: char *\ntype: topic: char *" },
|
|
7285
|
+
{(char *) "whatsapp_Session_UpdateGroupParticipants", (PyCFunction) _wrap__whatsapp_whatsapp_Session_UpdateGroupParticipants, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_UpdateGroupParticipants(_handle, resourceID, participants)\n\ntype: _handle: int64_t\ntype: resourceID: char *\ntype: participants: int64_t" },
|
|
7286
|
+
{(char *) "whatsapp_Session_FindContact", (PyCFunction) _wrap__whatsapp_whatsapp_Session_FindContact, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_FindContact(_handle, phone)\n\ntype: _handle: int64_t\ntype: phone: char *" },
|
|
7287
|
+
{(char *) "whatsapp_Session_RequestMessageHistory", (PyCFunction) _wrap__whatsapp_whatsapp_Session_RequestMessageHistory, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_RequestMessageHistory(_handle, resourceID, oldestMessage)\n\ntype: _handle: int64_t\ntype: resourceID: char *\ntype: oldestMessage: int64_t" },
|
|
7288
|
+
{(char *) "whatsapp_Session_SetEventHandler", (PyCFunction) _wrap__whatsapp_whatsapp_Session_SetEventHandler, METH_KEYWORDS|METH_VARARGS, "whatsapp_Session_SetEventHandler(_handle, h, goRun)\n\ntype: _handle: int64_t\ntype: h: PyObject *\ntype: goRun: bool" },
|
|
7289
|
+
{(char *) "whatsapp_Album_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Album_CTor, METH_NOARGS, "whatsapp_Album_CTor()\n\n" },
|
|
7290
|
+
{(char *) "whatsapp_Album_IsAlbum_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Album_IsAlbum_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Album_IsAlbum_Get(handle)\n\ntype: handle: int64_t" },
|
|
7291
|
+
{(char *) "whatsapp_Album_IsAlbum_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Album_IsAlbum_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Album_IsAlbum_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: bool" },
|
|
7292
|
+
{(char *) "whatsapp_Album_ImageCount_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Album_ImageCount_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Album_ImageCount_Get(handle)\n\ntype: handle: int64_t" },
|
|
7293
|
+
{(char *) "whatsapp_Album_ImageCount_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Album_ImageCount_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Album_ImageCount_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7294
|
+
{(char *) "whatsapp_Album_VideoCount_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Album_VideoCount_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Album_VideoCount_Get(handle)\n\ntype: handle: int64_t" },
|
|
7295
|
+
{(char *) "whatsapp_Album_VideoCount_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Album_VideoCount_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Album_VideoCount_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7296
|
+
{(char *) "whatsapp_Avatar_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Avatar_CTor, METH_NOARGS, "whatsapp_Avatar_CTor()\n\n" },
|
|
7297
|
+
{(char *) "whatsapp_Avatar_ID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Avatar_ID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Avatar_ID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7298
|
+
{(char *) "whatsapp_Avatar_ID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Avatar_ID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Avatar_ID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7299
|
+
{(char *) "whatsapp_Avatar_URL_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Avatar_URL_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Avatar_URL_Get(handle)\n\ntype: handle: int64_t" },
|
|
7300
|
+
{(char *) "whatsapp_Avatar_URL_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Avatar_URL_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Avatar_URL_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7301
|
+
{(char *) "whatsapp_Call_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_Call_CTor, METH_NOARGS, "whatsapp_Call_CTor()\n\n" },
|
|
7302
|
+
{(char *) "whatsapp_Call_State_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Call_State_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_State_Get(handle)\n\ntype: handle: int64_t" },
|
|
7303
|
+
{(char *) "whatsapp_Call_State_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Call_State_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_State_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7304
|
+
{(char *) "whatsapp_Call_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Call_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7305
|
+
{(char *) "whatsapp_Call_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Call_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7306
|
+
{(char *) "whatsapp_Call_Timestamp_Get", (PyCFunction) _wrap__whatsapp_whatsapp_Call_Timestamp_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_Timestamp_Get(handle)\n\ntype: handle: int64_t" },
|
|
7307
|
+
{(char *) "whatsapp_Call_Timestamp_Set", (PyCFunction) _wrap__whatsapp_whatsapp_Call_Timestamp_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_Call_Timestamp_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7308
|
+
{(char *) "whatsapp_GroupParticipant_CTor", (PyCFunction) _wrap__whatsapp_whatsapp_GroupParticipant_CTor, METH_NOARGS, "whatsapp_GroupParticipant_CTor()\n\n" },
|
|
7309
|
+
{(char *) "whatsapp_GroupParticipant_JID_Get", (PyCFunction) _wrap__whatsapp_whatsapp_GroupParticipant_JID_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_GroupParticipant_JID_Get(handle)\n\ntype: handle: int64_t" },
|
|
7310
|
+
{(char *) "whatsapp_GroupParticipant_JID_Set", (PyCFunction) _wrap__whatsapp_whatsapp_GroupParticipant_JID_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_GroupParticipant_JID_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
|
7311
|
+
{(char *) "whatsapp_GroupParticipant_Affiliation_Get", (PyCFunction) _wrap__whatsapp_whatsapp_GroupParticipant_Affiliation_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_GroupParticipant_Affiliation_Get(handle)\n\ntype: handle: int64_t" },
|
|
7312
|
+
{(char *) "whatsapp_GroupParticipant_Affiliation_Set", (PyCFunction) _wrap__whatsapp_whatsapp_GroupParticipant_Affiliation_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_GroupParticipant_Affiliation_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
7313
|
+
{(char *) "whatsapp_GroupParticipant_Action_Get", (PyCFunction) _wrap__whatsapp_whatsapp_GroupParticipant_Action_Get, METH_KEYWORDS|METH_VARARGS, "whatsapp_GroupParticipant_Action_Get(handle)\n\ntype: handle: int64_t" },
|
|
7314
|
+
{(char *) "whatsapp_GroupParticipant_Action_Set", (PyCFunction) _wrap__whatsapp_whatsapp_GroupParticipant_Action_Set, METH_KEYWORDS|METH_VARARGS, "whatsapp_GroupParticipant_Action_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
|
6844
7315
|
{(char *) "whatsapp_NewGateway", (PyCFunction) _wrap__whatsapp_whatsapp_NewGateway, METH_NOARGS, "whatsapp_NewGateway()\n\n" },
|
|
6845
7316
|
{NULL, NULL, 0, NULL}
|
|
6846
7317
|
};
|