slidge-whatsapp 0.2.2__cp313-cp313-manylinux_2_36_aarch64.whl → 0.2.5__cp313-cp313-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-313-aarch64-linux-gnu.h +169 -132
- slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +135 -110
- slidge_whatsapp/generated/go.py +1 -1
- slidge_whatsapp/generated/whatsapp.c +1846 -1375
- slidge_whatsapp/generated/whatsapp.go +1079 -834
- slidge_whatsapp/generated/whatsapp.py +1392 -1072
- slidge_whatsapp/generated/whatsapp_go.h +169 -132
- 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
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/*
|
|
2
2
|
cgo stubs for package whatsapp.
|
|
3
3
|
File is generated by gopy. Do not edit.
|
|
4
|
-
gopy build -output=generated -no-make=true .
|
|
4
|
+
gopy build -output=generated -no-make=true -build-tags="mupdf extlib static" .
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
package main
|
|
8
8
|
|
|
9
9
|
/*
|
|
10
10
|
|
|
11
|
-
#cgo CFLAGS: "-I/
|
|
12
|
-
#cgo LDFLAGS: "-L/
|
|
11
|
+
#cgo CFLAGS: "-I/root/.local/share/uv/python/cpython-3.13.3-linux-aarch64-gnu/include/python3.13" -Wno-error -Wno-implicit-function-declaration -Wno-int-conversion
|
|
12
|
+
#cgo LDFLAGS: "-L/root/.local/share/uv/python/cpython-3.13.3-linux-aarch64-gnu/lib" "-lpython3.13" -lpthread -ldl -lpthread -lutil -lm
|
|
13
13
|
|
|
14
14
|
// #define Py_LIMITED_API // need full API for PyRun*
|
|
15
15
|
#include <Python.h>
|
|
@@ -1213,6 +1213,18 @@ func Slice_uint8_append(handle CGoHandle, _vl C.uchar) {
|
|
|
1213
1213
|
|
|
1214
1214
|
// ---- Types ---
|
|
1215
1215
|
|
|
1216
|
+
// Converters for pointer handles for type: *whatsapp.Album
|
|
1217
|
+
func ptrFromHandle_Ptr_whatsapp_Album(h CGoHandle) *whatsapp.Album {
|
|
1218
|
+
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "*whatsapp.Album")
|
|
1219
|
+
if p == nil {
|
|
1220
|
+
return nil
|
|
1221
|
+
}
|
|
1222
|
+
return gopyh.Embed(p, reflect.TypeOf(whatsapp.Album{})).(*whatsapp.Album)
|
|
1223
|
+
}
|
|
1224
|
+
func handleFromPtr_Ptr_whatsapp_Album(p interface{}) CGoHandle {
|
|
1225
|
+
return CGoHandle(gopyh.Register("*whatsapp.Album", p))
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1216
1228
|
// Converters for pointer handles for type: *whatsapp.Attachment
|
|
1217
1229
|
func ptrFromHandle_Ptr_whatsapp_Attachment(h CGoHandle) *whatsapp.Attachment {
|
|
1218
1230
|
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "*whatsapp.Attachment")
|
|
@@ -1381,6 +1393,30 @@ func handleFromPtr_Ptr_whatsapp_Message(p interface{}) CGoHandle {
|
|
|
1381
1393
|
return CGoHandle(gopyh.Register("*whatsapp.Message", p))
|
|
1382
1394
|
}
|
|
1383
1395
|
|
|
1396
|
+
// Converters for pointer handles for type: *whatsapp.Poll
|
|
1397
|
+
func ptrFromHandle_Ptr_whatsapp_Poll(h CGoHandle) *whatsapp.Poll {
|
|
1398
|
+
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "*whatsapp.Poll")
|
|
1399
|
+
if p == nil {
|
|
1400
|
+
return nil
|
|
1401
|
+
}
|
|
1402
|
+
return gopyh.Embed(p, reflect.TypeOf(whatsapp.Poll{})).(*whatsapp.Poll)
|
|
1403
|
+
}
|
|
1404
|
+
func handleFromPtr_Ptr_whatsapp_Poll(p interface{}) CGoHandle {
|
|
1405
|
+
return CGoHandle(gopyh.Register("*whatsapp.Poll", p))
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
// Converters for pointer handles for type: *whatsapp.PollOption
|
|
1409
|
+
func ptrFromHandle_Ptr_whatsapp_PollOption(h CGoHandle) *whatsapp.PollOption {
|
|
1410
|
+
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "*whatsapp.PollOption")
|
|
1411
|
+
if p == nil {
|
|
1412
|
+
return nil
|
|
1413
|
+
}
|
|
1414
|
+
return gopyh.Embed(p, reflect.TypeOf(whatsapp.PollOption{})).(*whatsapp.PollOption)
|
|
1415
|
+
}
|
|
1416
|
+
func handleFromPtr_Ptr_whatsapp_PollOption(p interface{}) CGoHandle {
|
|
1417
|
+
return CGoHandle(gopyh.Register("*whatsapp.PollOption", p))
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1384
1420
|
// Converters for pointer handles for type: *whatsapp.Presence
|
|
1385
1421
|
func ptrFromHandle_Ptr_whatsapp_Presence(h CGoHandle) *whatsapp.Presence {
|
|
1386
1422
|
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "*whatsapp.Presence")
|
|
@@ -1709,6 +1745,62 @@ func Slice_whatsapp_Message_append(handle CGoHandle, _vl CGoHandle) {
|
|
|
1709
1745
|
*s = append(*s, *ptrFromHandle_whatsapp_Message(_vl))
|
|
1710
1746
|
}
|
|
1711
1747
|
|
|
1748
|
+
// Converters for implicit pointer handles for type: []whatsapp.PollOption
|
|
1749
|
+
func ptrFromHandle_Slice_whatsapp_PollOption(h CGoHandle) *[]whatsapp.PollOption {
|
|
1750
|
+
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "[]whatsapp.PollOption")
|
|
1751
|
+
if p == nil {
|
|
1752
|
+
return nil
|
|
1753
|
+
}
|
|
1754
|
+
return p.(*[]whatsapp.PollOption)
|
|
1755
|
+
}
|
|
1756
|
+
func deptrFromHandle_Slice_whatsapp_PollOption(h CGoHandle) []whatsapp.PollOption {
|
|
1757
|
+
p := ptrFromHandle_Slice_whatsapp_PollOption(h)
|
|
1758
|
+
if p == nil {
|
|
1759
|
+
return nil
|
|
1760
|
+
}
|
|
1761
|
+
return *p
|
|
1762
|
+
}
|
|
1763
|
+
func handleFromPtr_Slice_whatsapp_PollOption(p interface{}) CGoHandle {
|
|
1764
|
+
return CGoHandle(gopyh.Register("[]whatsapp.PollOption", p))
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
// --- wrapping slice: []whatsapp.PollOption ---
|
|
1768
|
+
//
|
|
1769
|
+
//export Slice_whatsapp_PollOption_CTor
|
|
1770
|
+
func Slice_whatsapp_PollOption_CTor() CGoHandle {
|
|
1771
|
+
return CGoHandle(handleFromPtr_Slice_whatsapp_PollOption(&[]whatsapp.PollOption{}))
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
//export Slice_whatsapp_PollOption_len
|
|
1775
|
+
func Slice_whatsapp_PollOption_len(handle CGoHandle) int {
|
|
1776
|
+
return len(deptrFromHandle_Slice_whatsapp_PollOption(handle))
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
//export Slice_whatsapp_PollOption_elem
|
|
1780
|
+
func Slice_whatsapp_PollOption_elem(handle CGoHandle, _idx int) CGoHandle {
|
|
1781
|
+
s := deptrFromHandle_Slice_whatsapp_PollOption(handle)
|
|
1782
|
+
return handleFromPtr_whatsapp_PollOption(&(s[_idx]))
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
//export Slice_whatsapp_PollOption_subslice
|
|
1786
|
+
func Slice_whatsapp_PollOption_subslice(handle CGoHandle, _st, _ed int) CGoHandle {
|
|
1787
|
+
s := deptrFromHandle_Slice_whatsapp_PollOption(handle)
|
|
1788
|
+
ss := s[_st:_ed]
|
|
1789
|
+
return CGoHandle(handleFromPtr_Slice_whatsapp_PollOption(&ss))
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
//export Slice_whatsapp_PollOption_set
|
|
1793
|
+
func Slice_whatsapp_PollOption_set(handle CGoHandle, _idx int, _vl CGoHandle) {
|
|
1794
|
+
s := deptrFromHandle_Slice_whatsapp_PollOption(handle)
|
|
1795
|
+
s[_idx] = *ptrFromHandle_whatsapp_PollOption(_vl)
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
//export Slice_whatsapp_PollOption_append
|
|
1799
|
+
func Slice_whatsapp_PollOption_append(handle CGoHandle, _vl CGoHandle) {
|
|
1800
|
+
s := ptrFromHandle_Slice_whatsapp_PollOption(handle)
|
|
1801
|
+
*s = append(*s, *ptrFromHandle_whatsapp_PollOption(_vl))
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1712
1804
|
// Converters for implicit pointer handles for type: []whatsapp.Receipt
|
|
1713
1805
|
func ptrFromHandle_Slice_whatsapp_Receipt(h CGoHandle) *[]whatsapp.Receipt {
|
|
1714
1806
|
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "[]whatsapp.Receipt")
|
|
@@ -1765,6 +1857,18 @@ func Slice_whatsapp_Receipt_append(handle CGoHandle, _vl CGoHandle) {
|
|
|
1765
1857
|
*s = append(*s, *ptrFromHandle_whatsapp_Receipt(_vl))
|
|
1766
1858
|
}
|
|
1767
1859
|
|
|
1860
|
+
// Converters for non-pointer handles for type: whatsapp.Album
|
|
1861
|
+
func ptrFromHandle_whatsapp_Album(h CGoHandle) *whatsapp.Album {
|
|
1862
|
+
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "whatsapp.Album")
|
|
1863
|
+
if p == nil {
|
|
1864
|
+
return nil
|
|
1865
|
+
}
|
|
1866
|
+
return gopyh.Embed(p, reflect.TypeOf(whatsapp.Album{})).(*whatsapp.Album)
|
|
1867
|
+
}
|
|
1868
|
+
func handleFromPtr_whatsapp_Album(p interface{}) CGoHandle {
|
|
1869
|
+
return CGoHandle(gopyh.Register("whatsapp.Album", p))
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1768
1872
|
// Converters for non-pointer handles for type: whatsapp.Attachment
|
|
1769
1873
|
func ptrFromHandle_whatsapp_Attachment(h CGoHandle) *whatsapp.Attachment {
|
|
1770
1874
|
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "whatsapp.Attachment")
|
|
@@ -1933,6 +2037,30 @@ func handleFromPtr_whatsapp_Message(p interface{}) CGoHandle {
|
|
|
1933
2037
|
return CGoHandle(gopyh.Register("whatsapp.Message", p))
|
|
1934
2038
|
}
|
|
1935
2039
|
|
|
2040
|
+
// Converters for non-pointer handles for type: whatsapp.Poll
|
|
2041
|
+
func ptrFromHandle_whatsapp_Poll(h CGoHandle) *whatsapp.Poll {
|
|
2042
|
+
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "whatsapp.Poll")
|
|
2043
|
+
if p == nil {
|
|
2044
|
+
return nil
|
|
2045
|
+
}
|
|
2046
|
+
return gopyh.Embed(p, reflect.TypeOf(whatsapp.Poll{})).(*whatsapp.Poll)
|
|
2047
|
+
}
|
|
2048
|
+
func handleFromPtr_whatsapp_Poll(p interface{}) CGoHandle {
|
|
2049
|
+
return CGoHandle(gopyh.Register("whatsapp.Poll", p))
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
// Converters for non-pointer handles for type: whatsapp.PollOption
|
|
2053
|
+
func ptrFromHandle_whatsapp_PollOption(h CGoHandle) *whatsapp.PollOption {
|
|
2054
|
+
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "whatsapp.PollOption")
|
|
2055
|
+
if p == nil {
|
|
2056
|
+
return nil
|
|
2057
|
+
}
|
|
2058
|
+
return gopyh.Embed(p, reflect.TypeOf(whatsapp.PollOption{})).(*whatsapp.PollOption)
|
|
2059
|
+
}
|
|
2060
|
+
func handleFromPtr_whatsapp_PollOption(p interface{}) CGoHandle {
|
|
2061
|
+
return CGoHandle(gopyh.Register("whatsapp.PollOption", p))
|
|
2062
|
+
}
|
|
2063
|
+
|
|
1936
2064
|
// Converters for non-pointer handles for type: whatsapp.Presence
|
|
1937
2065
|
func ptrFromHandle_whatsapp_Presence(h CGoHandle) *whatsapp.Presence {
|
|
1938
2066
|
p := gopyh.VarFromHandle((gopyh.CGoHandle)(h), "whatsapp.Presence")
|
|
@@ -1987,154 +2115,525 @@ func handleFromPtr_whatsapp_Session(p interface{}) CGoHandle {
|
|
|
1987
2115
|
|
|
1988
2116
|
// ---- Structs ---
|
|
1989
2117
|
|
|
1990
|
-
// --- wrapping struct: whatsapp.
|
|
2118
|
+
// --- wrapping struct: whatsapp.Avatar ---
|
|
1991
2119
|
//
|
|
1992
|
-
//export
|
|
1993
|
-
func
|
|
1994
|
-
return CGoHandle(
|
|
2120
|
+
//export whatsapp_Avatar_CTor
|
|
2121
|
+
func whatsapp_Avatar_CTor() CGoHandle {
|
|
2122
|
+
return CGoHandle(handleFromPtr_whatsapp_Avatar(&whatsapp.Avatar{}))
|
|
1995
2123
|
}
|
|
1996
2124
|
|
|
1997
|
-
//export
|
|
1998
|
-
func
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
if __err != nil {
|
|
2002
|
-
return errorGoToPy(nil)
|
|
2003
|
-
}
|
|
2004
|
-
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).Login()
|
|
2005
|
-
|
|
2006
|
-
C.PyEval_RestoreThread(_saved_thread)
|
|
2007
|
-
if __err != nil {
|
|
2008
|
-
estr := C.CString(__err.Error())
|
|
2009
|
-
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
2010
|
-
return estr
|
|
2011
|
-
}
|
|
2012
|
-
return C.CString("")
|
|
2125
|
+
//export whatsapp_Avatar_ID_Get
|
|
2126
|
+
func whatsapp_Avatar_ID_Get(handle CGoHandle) *C.char {
|
|
2127
|
+
op := ptrFromHandle_whatsapp_Avatar(handle)
|
|
2128
|
+
return C.CString(op.ID)
|
|
2013
2129
|
}
|
|
2014
2130
|
|
|
2015
|
-
//export
|
|
2016
|
-
func
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
return errorGoToPy(nil)
|
|
2021
|
-
}
|
|
2022
|
-
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).Logout()
|
|
2131
|
+
//export whatsapp_Avatar_ID_Set
|
|
2132
|
+
func whatsapp_Avatar_ID_Set(handle CGoHandle, val *C.char) {
|
|
2133
|
+
op := ptrFromHandle_whatsapp_Avatar(handle)
|
|
2134
|
+
op.ID = C.GoString(val)
|
|
2135
|
+
}
|
|
2023
2136
|
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
return estr
|
|
2029
|
-
}
|
|
2030
|
-
return C.CString("")
|
|
2137
|
+
//export whatsapp_Avatar_URL_Get
|
|
2138
|
+
func whatsapp_Avatar_URL_Get(handle CGoHandle) *C.char {
|
|
2139
|
+
op := ptrFromHandle_whatsapp_Avatar(handle)
|
|
2140
|
+
return C.CString(op.URL)
|
|
2031
2141
|
}
|
|
2032
2142
|
|
|
2033
|
-
//export
|
|
2034
|
-
func
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
return errorGoToPy(nil)
|
|
2039
|
-
}
|
|
2040
|
-
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).Disconnect()
|
|
2143
|
+
//export whatsapp_Avatar_URL_Set
|
|
2144
|
+
func whatsapp_Avatar_URL_Set(handle CGoHandle, val *C.char) {
|
|
2145
|
+
op := ptrFromHandle_whatsapp_Avatar(handle)
|
|
2146
|
+
op.URL = C.GoString(val)
|
|
2147
|
+
}
|
|
2041
2148
|
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
}
|
|
2048
|
-
return C.CString("")
|
|
2149
|
+
// --- wrapping struct: whatsapp.Call ---
|
|
2150
|
+
//
|
|
2151
|
+
//export whatsapp_Call_CTor
|
|
2152
|
+
func whatsapp_Call_CTor() CGoHandle {
|
|
2153
|
+
return CGoHandle(handleFromPtr_whatsapp_Call(&whatsapp.Call{}))
|
|
2049
2154
|
}
|
|
2050
2155
|
|
|
2051
|
-
//export
|
|
2052
|
-
func
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
return C.CString("")
|
|
2057
|
-
}
|
|
2058
|
-
cret, __err := gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).PairPhone(C.GoString(phone))
|
|
2156
|
+
//export whatsapp_Call_State_Get
|
|
2157
|
+
func whatsapp_Call_State_Get(handle CGoHandle) C.longlong {
|
|
2158
|
+
op := ptrFromHandle_whatsapp_Call(handle)
|
|
2159
|
+
return C.longlong(int(op.State))
|
|
2160
|
+
}
|
|
2059
2161
|
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
C.free(unsafe.Pointer(estr))
|
|
2065
|
-
return C.CString("")
|
|
2066
|
-
}
|
|
2067
|
-
return C.CString(cret)
|
|
2162
|
+
//export whatsapp_Call_State_Set
|
|
2163
|
+
func whatsapp_Call_State_Set(handle CGoHandle, val C.longlong) {
|
|
2164
|
+
op := ptrFromHandle_whatsapp_Call(handle)
|
|
2165
|
+
op.State = whatsapp.CallState(int(val))
|
|
2068
2166
|
}
|
|
2069
2167
|
|
|
2070
|
-
//export
|
|
2071
|
-
func
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
return errorGoToPy(nil)
|
|
2076
|
-
}
|
|
2077
|
-
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).SendMessage(*ptrFromHandle_whatsapp_Message(message))
|
|
2168
|
+
//export whatsapp_Call_JID_Get
|
|
2169
|
+
func whatsapp_Call_JID_Get(handle CGoHandle) *C.char {
|
|
2170
|
+
op := ptrFromHandle_whatsapp_Call(handle)
|
|
2171
|
+
return C.CString(op.JID)
|
|
2172
|
+
}
|
|
2078
2173
|
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
return estr
|
|
2084
|
-
}
|
|
2085
|
-
return C.CString("")
|
|
2174
|
+
//export whatsapp_Call_JID_Set
|
|
2175
|
+
func whatsapp_Call_JID_Set(handle CGoHandle, val *C.char) {
|
|
2176
|
+
op := ptrFromHandle_whatsapp_Call(handle)
|
|
2177
|
+
op.JID = C.GoString(val)
|
|
2086
2178
|
}
|
|
2087
2179
|
|
|
2088
|
-
//export
|
|
2089
|
-
func
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
if __err != nil {
|
|
2094
|
-
return C.CString("")
|
|
2095
|
-
}
|
|
2096
|
-
return C.CString(gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).GenerateMessageID())
|
|
2180
|
+
//export whatsapp_Call_Timestamp_Get
|
|
2181
|
+
func whatsapp_Call_Timestamp_Get(handle CGoHandle) C.longlong {
|
|
2182
|
+
op := ptrFromHandle_whatsapp_Call(handle)
|
|
2183
|
+
return C.longlong(op.Timestamp)
|
|
2184
|
+
}
|
|
2097
2185
|
|
|
2186
|
+
//export whatsapp_Call_Timestamp_Set
|
|
2187
|
+
func whatsapp_Call_Timestamp_Set(handle CGoHandle, val C.longlong) {
|
|
2188
|
+
op := ptrFromHandle_whatsapp_Call(handle)
|
|
2189
|
+
op.Timestamp = int64(val)
|
|
2098
2190
|
}
|
|
2099
2191
|
|
|
2100
|
-
//
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
}
|
|
2107
|
-
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).SendChatState(*ptrFromHandle_whatsapp_ChatState(state))
|
|
2192
|
+
// --- wrapping struct: whatsapp.GroupParticipant ---
|
|
2193
|
+
//
|
|
2194
|
+
//export whatsapp_GroupParticipant_CTor
|
|
2195
|
+
func whatsapp_GroupParticipant_CTor() CGoHandle {
|
|
2196
|
+
return CGoHandle(handleFromPtr_whatsapp_GroupParticipant(&whatsapp.GroupParticipant{}))
|
|
2197
|
+
}
|
|
2108
2198
|
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
return estr
|
|
2114
|
-
}
|
|
2115
|
-
return C.CString("")
|
|
2199
|
+
//export whatsapp_GroupParticipant_JID_Get
|
|
2200
|
+
func whatsapp_GroupParticipant_JID_Get(handle CGoHandle) *C.char {
|
|
2201
|
+
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
2202
|
+
return C.CString(op.JID)
|
|
2116
2203
|
}
|
|
2117
2204
|
|
|
2118
|
-
//export
|
|
2119
|
-
func
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
return errorGoToPy(nil)
|
|
2124
|
-
}
|
|
2125
|
-
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).SendReceipt(*ptrFromHandle_whatsapp_Receipt(receipt))
|
|
2205
|
+
//export whatsapp_GroupParticipant_JID_Set
|
|
2206
|
+
func whatsapp_GroupParticipant_JID_Set(handle CGoHandle, val *C.char) {
|
|
2207
|
+
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
2208
|
+
op.JID = C.GoString(val)
|
|
2209
|
+
}
|
|
2126
2210
|
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
return estr
|
|
2132
|
-
}
|
|
2133
|
-
return C.CString("")
|
|
2211
|
+
//export whatsapp_GroupParticipant_Affiliation_Get
|
|
2212
|
+
func whatsapp_GroupParticipant_Affiliation_Get(handle CGoHandle) C.longlong {
|
|
2213
|
+
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
2214
|
+
return C.longlong(int(op.Affiliation))
|
|
2134
2215
|
}
|
|
2135
2216
|
|
|
2136
|
-
//export
|
|
2137
|
-
func
|
|
2217
|
+
//export whatsapp_GroupParticipant_Affiliation_Set
|
|
2218
|
+
func whatsapp_GroupParticipant_Affiliation_Set(handle CGoHandle, val C.longlong) {
|
|
2219
|
+
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
2220
|
+
op.Affiliation = whatsapp.GroupAffiliation(int(val))
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
//export whatsapp_GroupParticipant_Action_Get
|
|
2224
|
+
func whatsapp_GroupParticipant_Action_Get(handle CGoHandle) C.longlong {
|
|
2225
|
+
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
2226
|
+
return C.longlong(int(op.Action))
|
|
2227
|
+
}
|
|
2228
|
+
|
|
2229
|
+
//export whatsapp_GroupParticipant_Action_Set
|
|
2230
|
+
func whatsapp_GroupParticipant_Action_Set(handle CGoHandle, val C.longlong) {
|
|
2231
|
+
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
2232
|
+
op.Action = whatsapp.GroupParticipantAction(int(val))
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
// --- wrapping struct: whatsapp.Message ---
|
|
2236
|
+
//
|
|
2237
|
+
//export whatsapp_Message_CTor
|
|
2238
|
+
func whatsapp_Message_CTor() CGoHandle {
|
|
2239
|
+
return CGoHandle(handleFromPtr_whatsapp_Message(&whatsapp.Message{}))
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
//export whatsapp_Message_Kind_Get
|
|
2243
|
+
func whatsapp_Message_Kind_Get(handle CGoHandle) C.longlong {
|
|
2244
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2245
|
+
return C.longlong(int(op.Kind))
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
//export whatsapp_Message_Kind_Set
|
|
2249
|
+
func whatsapp_Message_Kind_Set(handle CGoHandle, val C.longlong) {
|
|
2250
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2251
|
+
op.Kind = whatsapp.MessageKind(int(val))
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
//export whatsapp_Message_ID_Get
|
|
2255
|
+
func whatsapp_Message_ID_Get(handle CGoHandle) *C.char {
|
|
2256
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2257
|
+
return C.CString(op.ID)
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
//export whatsapp_Message_ID_Set
|
|
2261
|
+
func whatsapp_Message_ID_Set(handle CGoHandle, val *C.char) {
|
|
2262
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2263
|
+
op.ID = C.GoString(val)
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
//export whatsapp_Message_JID_Get
|
|
2267
|
+
func whatsapp_Message_JID_Get(handle CGoHandle) *C.char {
|
|
2268
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2269
|
+
return C.CString(op.JID)
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
//export whatsapp_Message_JID_Set
|
|
2273
|
+
func whatsapp_Message_JID_Set(handle CGoHandle, val *C.char) {
|
|
2274
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2275
|
+
op.JID = C.GoString(val)
|
|
2276
|
+
}
|
|
2277
|
+
|
|
2278
|
+
//export whatsapp_Message_GroupJID_Get
|
|
2279
|
+
func whatsapp_Message_GroupJID_Get(handle CGoHandle) *C.char {
|
|
2280
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2281
|
+
return C.CString(op.GroupJID)
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
//export whatsapp_Message_GroupJID_Set
|
|
2285
|
+
func whatsapp_Message_GroupJID_Set(handle CGoHandle, val *C.char) {
|
|
2286
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2287
|
+
op.GroupJID = C.GoString(val)
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
//export whatsapp_Message_OriginJID_Get
|
|
2291
|
+
func whatsapp_Message_OriginJID_Get(handle CGoHandle) *C.char {
|
|
2292
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2293
|
+
return C.CString(op.OriginJID)
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
//export whatsapp_Message_OriginJID_Set
|
|
2297
|
+
func whatsapp_Message_OriginJID_Set(handle CGoHandle, val *C.char) {
|
|
2298
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2299
|
+
op.OriginJID = C.GoString(val)
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2302
|
+
//export whatsapp_Message_Body_Get
|
|
2303
|
+
func whatsapp_Message_Body_Get(handle CGoHandle) *C.char {
|
|
2304
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2305
|
+
return C.CString(op.Body)
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2308
|
+
//export whatsapp_Message_Body_Set
|
|
2309
|
+
func whatsapp_Message_Body_Set(handle CGoHandle, val *C.char) {
|
|
2310
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2311
|
+
op.Body = C.GoString(val)
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
//export whatsapp_Message_Timestamp_Get
|
|
2315
|
+
func whatsapp_Message_Timestamp_Get(handle CGoHandle) C.longlong {
|
|
2316
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2317
|
+
return C.longlong(op.Timestamp)
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
//export whatsapp_Message_Timestamp_Set
|
|
2321
|
+
func whatsapp_Message_Timestamp_Set(handle CGoHandle, val C.longlong) {
|
|
2322
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2323
|
+
op.Timestamp = int64(val)
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2326
|
+
//export whatsapp_Message_IsCarbon_Get
|
|
2327
|
+
func whatsapp_Message_IsCarbon_Get(handle CGoHandle) C.char {
|
|
2328
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2329
|
+
return boolGoToPy(op.IsCarbon)
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
//export whatsapp_Message_IsCarbon_Set
|
|
2333
|
+
func whatsapp_Message_IsCarbon_Set(handle CGoHandle, val C.char) {
|
|
2334
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2335
|
+
op.IsCarbon = boolPyToGo(val)
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
//export whatsapp_Message_IsForwarded_Get
|
|
2339
|
+
func whatsapp_Message_IsForwarded_Get(handle CGoHandle) C.char {
|
|
2340
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2341
|
+
return boolGoToPy(op.IsForwarded)
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
//export whatsapp_Message_IsForwarded_Set
|
|
2345
|
+
func whatsapp_Message_IsForwarded_Set(handle CGoHandle, val C.char) {
|
|
2346
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2347
|
+
op.IsForwarded = boolPyToGo(val)
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
//export whatsapp_Message_ReplyID_Get
|
|
2351
|
+
func whatsapp_Message_ReplyID_Get(handle CGoHandle) *C.char {
|
|
2352
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2353
|
+
return C.CString(op.ReplyID)
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
//export whatsapp_Message_ReplyID_Set
|
|
2357
|
+
func whatsapp_Message_ReplyID_Set(handle CGoHandle, val *C.char) {
|
|
2358
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2359
|
+
op.ReplyID = C.GoString(val)
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
//export whatsapp_Message_ReplyBody_Get
|
|
2363
|
+
func whatsapp_Message_ReplyBody_Get(handle CGoHandle) *C.char {
|
|
2364
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2365
|
+
return C.CString(op.ReplyBody)
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
//export whatsapp_Message_ReplyBody_Set
|
|
2369
|
+
func whatsapp_Message_ReplyBody_Set(handle CGoHandle, val *C.char) {
|
|
2370
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2371
|
+
op.ReplyBody = C.GoString(val)
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2374
|
+
//export whatsapp_Message_Attachments_Get
|
|
2375
|
+
func whatsapp_Message_Attachments_Get(handle CGoHandle) CGoHandle {
|
|
2376
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2377
|
+
return handleFromPtr_Slice_whatsapp_Attachment(&op.Attachments)
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
//export whatsapp_Message_Attachments_Set
|
|
2381
|
+
func whatsapp_Message_Attachments_Set(handle CGoHandle, val CGoHandle) {
|
|
2382
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2383
|
+
op.Attachments = deptrFromHandle_Slice_whatsapp_Attachment(val)
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
//export whatsapp_Message_Preview_Get
|
|
2387
|
+
func whatsapp_Message_Preview_Get(handle CGoHandle) CGoHandle {
|
|
2388
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2389
|
+
return handleFromPtr_whatsapp_Preview(&op.Preview)
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
//export whatsapp_Message_Preview_Set
|
|
2393
|
+
func whatsapp_Message_Preview_Set(handle CGoHandle, val CGoHandle) {
|
|
2394
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2395
|
+
op.Preview = *ptrFromHandle_whatsapp_Preview(val)
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
//export whatsapp_Message_Location_Get
|
|
2399
|
+
func whatsapp_Message_Location_Get(handle CGoHandle) CGoHandle {
|
|
2400
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2401
|
+
return handleFromPtr_whatsapp_Location(&op.Location)
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
//export whatsapp_Message_Location_Set
|
|
2405
|
+
func whatsapp_Message_Location_Set(handle CGoHandle, val CGoHandle) {
|
|
2406
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2407
|
+
op.Location = *ptrFromHandle_whatsapp_Location(val)
|
|
2408
|
+
}
|
|
2409
|
+
|
|
2410
|
+
//export whatsapp_Message_Poll_Get
|
|
2411
|
+
func whatsapp_Message_Poll_Get(handle CGoHandle) CGoHandle {
|
|
2412
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2413
|
+
return handleFromPtr_whatsapp_Poll(&op.Poll)
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
//export whatsapp_Message_Poll_Set
|
|
2417
|
+
func whatsapp_Message_Poll_Set(handle CGoHandle, val CGoHandle) {
|
|
2418
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2419
|
+
op.Poll = *ptrFromHandle_whatsapp_Poll(val)
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
//export whatsapp_Message_Album_Get
|
|
2423
|
+
func whatsapp_Message_Album_Get(handle CGoHandle) CGoHandle {
|
|
2424
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2425
|
+
return handleFromPtr_whatsapp_Album(&op.Album)
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
//export whatsapp_Message_Album_Set
|
|
2429
|
+
func whatsapp_Message_Album_Set(handle CGoHandle, val CGoHandle) {
|
|
2430
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2431
|
+
op.Album = *ptrFromHandle_whatsapp_Album(val)
|
|
2432
|
+
}
|
|
2433
|
+
|
|
2434
|
+
//export whatsapp_Message_MentionJIDs_Get
|
|
2435
|
+
func whatsapp_Message_MentionJIDs_Get(handle CGoHandle) CGoHandle {
|
|
2436
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2437
|
+
return handleFromPtr_Slice_string(&op.MentionJIDs)
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
//export whatsapp_Message_MentionJIDs_Set
|
|
2441
|
+
func whatsapp_Message_MentionJIDs_Set(handle CGoHandle, val CGoHandle) {
|
|
2442
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2443
|
+
op.MentionJIDs = deptrFromHandle_Slice_string(val)
|
|
2444
|
+
}
|
|
2445
|
+
|
|
2446
|
+
//export whatsapp_Message_Receipts_Get
|
|
2447
|
+
func whatsapp_Message_Receipts_Get(handle CGoHandle) CGoHandle {
|
|
2448
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2449
|
+
return handleFromPtr_Slice_whatsapp_Receipt(&op.Receipts)
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
//export whatsapp_Message_Receipts_Set
|
|
2453
|
+
func whatsapp_Message_Receipts_Set(handle CGoHandle, val CGoHandle) {
|
|
2454
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2455
|
+
op.Receipts = deptrFromHandle_Slice_whatsapp_Receipt(val)
|
|
2456
|
+
}
|
|
2457
|
+
|
|
2458
|
+
//export whatsapp_Message_Reactions_Get
|
|
2459
|
+
func whatsapp_Message_Reactions_Get(handle CGoHandle) CGoHandle {
|
|
2460
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2461
|
+
return handleFromPtr_Slice_whatsapp_Message(&op.Reactions)
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
//export whatsapp_Message_Reactions_Set
|
|
2465
|
+
func whatsapp_Message_Reactions_Set(handle CGoHandle, val CGoHandle) {
|
|
2466
|
+
op := ptrFromHandle_whatsapp_Message(handle)
|
|
2467
|
+
op.Reactions = deptrFromHandle_Slice_whatsapp_Message(val)
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2470
|
+
// --- wrapping struct: whatsapp.PollOption ---
|
|
2471
|
+
//
|
|
2472
|
+
//export whatsapp_PollOption_CTor
|
|
2473
|
+
func whatsapp_PollOption_CTor() CGoHandle {
|
|
2474
|
+
return CGoHandle(handleFromPtr_whatsapp_PollOption(&whatsapp.PollOption{}))
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
//export whatsapp_PollOption_Title_Get
|
|
2478
|
+
func whatsapp_PollOption_Title_Get(handle CGoHandle) *C.char {
|
|
2479
|
+
op := ptrFromHandle_whatsapp_PollOption(handle)
|
|
2480
|
+
return C.CString(op.Title)
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
//export whatsapp_PollOption_Title_Set
|
|
2484
|
+
func whatsapp_PollOption_Title_Set(handle CGoHandle, val *C.char) {
|
|
2485
|
+
op := ptrFromHandle_whatsapp_PollOption(handle)
|
|
2486
|
+
op.Title = C.GoString(val)
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
// --- wrapping struct: whatsapp.Session ---
|
|
2490
|
+
//
|
|
2491
|
+
//export whatsapp_Session_CTor
|
|
2492
|
+
func whatsapp_Session_CTor() CGoHandle {
|
|
2493
|
+
return CGoHandle(handleFromPtr_whatsapp_Session(&whatsapp.Session{}))
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
//export whatsapp_Session_Login
|
|
2497
|
+
func whatsapp_Session_Login(_handle CGoHandle) *C.char {
|
|
2498
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
2499
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Session")
|
|
2500
|
+
if __err != nil {
|
|
2501
|
+
return errorGoToPy(nil)
|
|
2502
|
+
}
|
|
2503
|
+
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).Login()
|
|
2504
|
+
|
|
2505
|
+
C.PyEval_RestoreThread(_saved_thread)
|
|
2506
|
+
if __err != nil {
|
|
2507
|
+
estr := C.CString(__err.Error())
|
|
2508
|
+
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
2509
|
+
return estr
|
|
2510
|
+
}
|
|
2511
|
+
return C.CString("")
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
//export whatsapp_Session_Logout
|
|
2515
|
+
func whatsapp_Session_Logout(_handle CGoHandle) *C.char {
|
|
2516
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
2517
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Session")
|
|
2518
|
+
if __err != nil {
|
|
2519
|
+
return errorGoToPy(nil)
|
|
2520
|
+
}
|
|
2521
|
+
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).Logout()
|
|
2522
|
+
|
|
2523
|
+
C.PyEval_RestoreThread(_saved_thread)
|
|
2524
|
+
if __err != nil {
|
|
2525
|
+
estr := C.CString(__err.Error())
|
|
2526
|
+
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
2527
|
+
return estr
|
|
2528
|
+
}
|
|
2529
|
+
return C.CString("")
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2532
|
+
//export whatsapp_Session_Disconnect
|
|
2533
|
+
func whatsapp_Session_Disconnect(_handle CGoHandle) *C.char {
|
|
2534
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
2535
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Session")
|
|
2536
|
+
if __err != nil {
|
|
2537
|
+
return errorGoToPy(nil)
|
|
2538
|
+
}
|
|
2539
|
+
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).Disconnect()
|
|
2540
|
+
|
|
2541
|
+
C.PyEval_RestoreThread(_saved_thread)
|
|
2542
|
+
if __err != nil {
|
|
2543
|
+
estr := C.CString(__err.Error())
|
|
2544
|
+
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
2545
|
+
return estr
|
|
2546
|
+
}
|
|
2547
|
+
return C.CString("")
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
//export whatsapp_Session_PairPhone
|
|
2551
|
+
func whatsapp_Session_PairPhone(_handle CGoHandle, phone *C.char) *C.char {
|
|
2552
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
2553
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Session")
|
|
2554
|
+
if __err != nil {
|
|
2555
|
+
return C.CString("")
|
|
2556
|
+
}
|
|
2557
|
+
cret, __err := gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).PairPhone(C.GoString(phone))
|
|
2558
|
+
|
|
2559
|
+
C.PyEval_RestoreThread(_saved_thread)
|
|
2560
|
+
if __err != nil {
|
|
2561
|
+
estr := C.CString(__err.Error())
|
|
2562
|
+
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
2563
|
+
C.free(unsafe.Pointer(estr))
|
|
2564
|
+
return C.CString("")
|
|
2565
|
+
}
|
|
2566
|
+
return C.CString(cret)
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
//export whatsapp_Session_SendMessage
|
|
2570
|
+
func whatsapp_Session_SendMessage(_handle CGoHandle, message CGoHandle) *C.char {
|
|
2571
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
2572
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Session")
|
|
2573
|
+
if __err != nil {
|
|
2574
|
+
return errorGoToPy(nil)
|
|
2575
|
+
}
|
|
2576
|
+
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).SendMessage(*ptrFromHandle_whatsapp_Message(message))
|
|
2577
|
+
|
|
2578
|
+
C.PyEval_RestoreThread(_saved_thread)
|
|
2579
|
+
if __err != nil {
|
|
2580
|
+
estr := C.CString(__err.Error())
|
|
2581
|
+
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
2582
|
+
return estr
|
|
2583
|
+
}
|
|
2584
|
+
return C.CString("")
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
//export whatsapp_Session_GenerateMessageID
|
|
2588
|
+
func whatsapp_Session_GenerateMessageID(_handle CGoHandle) *C.char {
|
|
2589
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
2590
|
+
defer C.PyEval_RestoreThread(_saved_thread)
|
|
2591
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Session")
|
|
2592
|
+
if __err != nil {
|
|
2593
|
+
return C.CString("")
|
|
2594
|
+
}
|
|
2595
|
+
return C.CString(gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).GenerateMessageID())
|
|
2596
|
+
|
|
2597
|
+
}
|
|
2598
|
+
|
|
2599
|
+
//export whatsapp_Session_SendChatState
|
|
2600
|
+
func whatsapp_Session_SendChatState(_handle CGoHandle, state CGoHandle) *C.char {
|
|
2601
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
2602
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Session")
|
|
2603
|
+
if __err != nil {
|
|
2604
|
+
return errorGoToPy(nil)
|
|
2605
|
+
}
|
|
2606
|
+
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).SendChatState(*ptrFromHandle_whatsapp_ChatState(state))
|
|
2607
|
+
|
|
2608
|
+
C.PyEval_RestoreThread(_saved_thread)
|
|
2609
|
+
if __err != nil {
|
|
2610
|
+
estr := C.CString(__err.Error())
|
|
2611
|
+
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
2612
|
+
return estr
|
|
2613
|
+
}
|
|
2614
|
+
return C.CString("")
|
|
2615
|
+
}
|
|
2616
|
+
|
|
2617
|
+
//export whatsapp_Session_SendReceipt
|
|
2618
|
+
func whatsapp_Session_SendReceipt(_handle CGoHandle, receipt CGoHandle) *C.char {
|
|
2619
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
2620
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Session")
|
|
2621
|
+
if __err != nil {
|
|
2622
|
+
return errorGoToPy(nil)
|
|
2623
|
+
}
|
|
2624
|
+
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Session{})).(*whatsapp.Session).SendReceipt(*ptrFromHandle_whatsapp_Receipt(receipt))
|
|
2625
|
+
|
|
2626
|
+
C.PyEval_RestoreThread(_saved_thread)
|
|
2627
|
+
if __err != nil {
|
|
2628
|
+
estr := C.CString(__err.Error())
|
|
2629
|
+
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
2630
|
+
return estr
|
|
2631
|
+
}
|
|
2632
|
+
return C.CString("")
|
|
2633
|
+
}
|
|
2634
|
+
|
|
2635
|
+
//export whatsapp_Session_SendPresence
|
|
2636
|
+
func whatsapp_Session_SendPresence(_handle CGoHandle, presence C.longlong, statusMessage *C.char) *C.char {
|
|
2138
2637
|
_saved_thread := C.PyEval_SaveThread()
|
|
2139
2638
|
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Session")
|
|
2140
2639
|
if __err != nil {
|
|
@@ -2396,411 +2895,390 @@ func whatsapp_Session_SetEventHandler(_handle CGoHandle, h *C.PyObject, goRun C.
|
|
|
2396
2895
|
}
|
|
2397
2896
|
}
|
|
2398
2897
|
|
|
2399
|
-
// --- wrapping struct: whatsapp.
|
|
2898
|
+
// --- wrapping struct: whatsapp.Album ---
|
|
2400
2899
|
//
|
|
2401
|
-
//export
|
|
2402
|
-
func
|
|
2403
|
-
return CGoHandle(
|
|
2900
|
+
//export whatsapp_Album_CTor
|
|
2901
|
+
func whatsapp_Album_CTor() CGoHandle {
|
|
2902
|
+
return CGoHandle(handleFromPtr_whatsapp_Album(&whatsapp.Album{}))
|
|
2404
2903
|
}
|
|
2405
2904
|
|
|
2406
|
-
//export
|
|
2407
|
-
func
|
|
2408
|
-
op :=
|
|
2409
|
-
return
|
|
2905
|
+
//export whatsapp_Album_IsAlbum_Get
|
|
2906
|
+
func whatsapp_Album_IsAlbum_Get(handle CGoHandle) C.char {
|
|
2907
|
+
op := ptrFromHandle_whatsapp_Album(handle)
|
|
2908
|
+
return boolGoToPy(op.IsAlbum)
|
|
2410
2909
|
}
|
|
2411
2910
|
|
|
2412
|
-
//export
|
|
2413
|
-
func
|
|
2414
|
-
op :=
|
|
2415
|
-
op.
|
|
2911
|
+
//export whatsapp_Album_IsAlbum_Set
|
|
2912
|
+
func whatsapp_Album_IsAlbum_Set(handle CGoHandle, val C.char) {
|
|
2913
|
+
op := ptrFromHandle_whatsapp_Album(handle)
|
|
2914
|
+
op.IsAlbum = boolPyToGo(val)
|
|
2416
2915
|
}
|
|
2417
2916
|
|
|
2418
|
-
//export
|
|
2419
|
-
func
|
|
2420
|
-
op :=
|
|
2421
|
-
return C.
|
|
2917
|
+
//export whatsapp_Album_ImageCount_Get
|
|
2918
|
+
func whatsapp_Album_ImageCount_Get(handle CGoHandle) C.longlong {
|
|
2919
|
+
op := ptrFromHandle_whatsapp_Album(handle)
|
|
2920
|
+
return C.longlong(op.ImageCount)
|
|
2422
2921
|
}
|
|
2423
2922
|
|
|
2424
|
-
//export
|
|
2425
|
-
func
|
|
2426
|
-
op :=
|
|
2427
|
-
op.
|
|
2923
|
+
//export whatsapp_Album_ImageCount_Set
|
|
2924
|
+
func whatsapp_Album_ImageCount_Set(handle CGoHandle, val C.longlong) {
|
|
2925
|
+
op := ptrFromHandle_whatsapp_Album(handle)
|
|
2926
|
+
op.ImageCount = int(val)
|
|
2428
2927
|
}
|
|
2429
2928
|
|
|
2430
|
-
//
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
return CGoHandle(handleFromPtr_whatsapp_Contact(&whatsapp.Contact{}))
|
|
2929
|
+
//export whatsapp_Album_VideoCount_Get
|
|
2930
|
+
func whatsapp_Album_VideoCount_Get(handle CGoHandle) C.longlong {
|
|
2931
|
+
op := ptrFromHandle_whatsapp_Album(handle)
|
|
2932
|
+
return C.longlong(op.VideoCount)
|
|
2435
2933
|
}
|
|
2436
2934
|
|
|
2437
|
-
//export
|
|
2438
|
-
func
|
|
2439
|
-
op :=
|
|
2440
|
-
|
|
2935
|
+
//export whatsapp_Album_VideoCount_Set
|
|
2936
|
+
func whatsapp_Album_VideoCount_Set(handle CGoHandle, val C.longlong) {
|
|
2937
|
+
op := ptrFromHandle_whatsapp_Album(handle)
|
|
2938
|
+
op.VideoCount = int(val)
|
|
2441
2939
|
}
|
|
2442
2940
|
|
|
2443
|
-
//
|
|
2444
|
-
func whatsapp_Contact_JID_Set(handle CGoHandle, val *C.char) {
|
|
2445
|
-
op := ptrFromHandle_whatsapp_Contact(handle)
|
|
2446
|
-
op.JID = C.GoString(val)
|
|
2447
|
-
}
|
|
2448
|
-
|
|
2449
|
-
//export whatsapp_Contact_Name_Get
|
|
2450
|
-
func whatsapp_Contact_Name_Get(handle CGoHandle) *C.char {
|
|
2451
|
-
op := ptrFromHandle_whatsapp_Contact(handle)
|
|
2452
|
-
return C.CString(op.Name)
|
|
2453
|
-
}
|
|
2454
|
-
|
|
2455
|
-
//export whatsapp_Contact_Name_Set
|
|
2456
|
-
func whatsapp_Contact_Name_Set(handle CGoHandle, val *C.char) {
|
|
2457
|
-
op := ptrFromHandle_whatsapp_Contact(handle)
|
|
2458
|
-
op.Name = C.GoString(val)
|
|
2459
|
-
}
|
|
2460
|
-
|
|
2461
|
-
// --- wrapping struct: whatsapp.Location ---
|
|
2941
|
+
// --- wrapping struct: whatsapp.ChatState ---
|
|
2462
2942
|
//
|
|
2463
|
-
//export
|
|
2464
|
-
func
|
|
2465
|
-
return CGoHandle(
|
|
2466
|
-
}
|
|
2467
|
-
|
|
2468
|
-
//export whatsapp_Location_Latitude_Get
|
|
2469
|
-
func whatsapp_Location_Latitude_Get(handle CGoHandle) C.double {
|
|
2470
|
-
op := ptrFromHandle_whatsapp_Location(handle)
|
|
2471
|
-
return C.double(op.Latitude)
|
|
2472
|
-
}
|
|
2473
|
-
|
|
2474
|
-
//export whatsapp_Location_Latitude_Set
|
|
2475
|
-
func whatsapp_Location_Latitude_Set(handle CGoHandle, val C.double) {
|
|
2476
|
-
op := ptrFromHandle_whatsapp_Location(handle)
|
|
2477
|
-
op.Latitude = float64(val)
|
|
2478
|
-
}
|
|
2479
|
-
|
|
2480
|
-
//export whatsapp_Location_Longitude_Get
|
|
2481
|
-
func whatsapp_Location_Longitude_Get(handle CGoHandle) C.double {
|
|
2482
|
-
op := ptrFromHandle_whatsapp_Location(handle)
|
|
2483
|
-
return C.double(op.Longitude)
|
|
2484
|
-
}
|
|
2485
|
-
|
|
2486
|
-
//export whatsapp_Location_Longitude_Set
|
|
2487
|
-
func whatsapp_Location_Longitude_Set(handle CGoHandle, val C.double) {
|
|
2488
|
-
op := ptrFromHandle_whatsapp_Location(handle)
|
|
2489
|
-
op.Longitude = float64(val)
|
|
2490
|
-
}
|
|
2491
|
-
|
|
2492
|
-
//export whatsapp_Location_Accuracy_Get
|
|
2493
|
-
func whatsapp_Location_Accuracy_Get(handle CGoHandle) C.longlong {
|
|
2494
|
-
op := ptrFromHandle_whatsapp_Location(handle)
|
|
2495
|
-
return C.longlong(op.Accuracy)
|
|
2496
|
-
}
|
|
2497
|
-
|
|
2498
|
-
//export whatsapp_Location_Accuracy_Set
|
|
2499
|
-
func whatsapp_Location_Accuracy_Set(handle CGoHandle, val C.longlong) {
|
|
2500
|
-
op := ptrFromHandle_whatsapp_Location(handle)
|
|
2501
|
-
op.Accuracy = int(val)
|
|
2502
|
-
}
|
|
2503
|
-
|
|
2504
|
-
//export whatsapp_Location_IsLive_Get
|
|
2505
|
-
func whatsapp_Location_IsLive_Get(handle CGoHandle) C.char {
|
|
2506
|
-
op := ptrFromHandle_whatsapp_Location(handle)
|
|
2507
|
-
return boolGoToPy(op.IsLive)
|
|
2943
|
+
//export whatsapp_ChatState_CTor
|
|
2944
|
+
func whatsapp_ChatState_CTor() CGoHandle {
|
|
2945
|
+
return CGoHandle(handleFromPtr_whatsapp_ChatState(&whatsapp.ChatState{}))
|
|
2508
2946
|
}
|
|
2509
2947
|
|
|
2510
|
-
//export
|
|
2511
|
-
func
|
|
2512
|
-
op :=
|
|
2513
|
-
op.
|
|
2948
|
+
//export whatsapp_ChatState_Kind_Get
|
|
2949
|
+
func whatsapp_ChatState_Kind_Get(handle CGoHandle) C.longlong {
|
|
2950
|
+
op := ptrFromHandle_whatsapp_ChatState(handle)
|
|
2951
|
+
return C.longlong(int(op.Kind))
|
|
2514
2952
|
}
|
|
2515
2953
|
|
|
2516
|
-
//export
|
|
2517
|
-
func
|
|
2518
|
-
op :=
|
|
2519
|
-
|
|
2954
|
+
//export whatsapp_ChatState_Kind_Set
|
|
2955
|
+
func whatsapp_ChatState_Kind_Set(handle CGoHandle, val C.longlong) {
|
|
2956
|
+
op := ptrFromHandle_whatsapp_ChatState(handle)
|
|
2957
|
+
op.Kind = whatsapp.ChatStateKind(int(val))
|
|
2520
2958
|
}
|
|
2521
2959
|
|
|
2522
|
-
//export
|
|
2523
|
-
func
|
|
2524
|
-
op :=
|
|
2525
|
-
|
|
2960
|
+
//export whatsapp_ChatState_JID_Get
|
|
2961
|
+
func whatsapp_ChatState_JID_Get(handle CGoHandle) *C.char {
|
|
2962
|
+
op := ptrFromHandle_whatsapp_ChatState(handle)
|
|
2963
|
+
return C.CString(op.JID)
|
|
2526
2964
|
}
|
|
2527
2965
|
|
|
2528
|
-
//export
|
|
2529
|
-
func
|
|
2530
|
-
op :=
|
|
2531
|
-
|
|
2966
|
+
//export whatsapp_ChatState_JID_Set
|
|
2967
|
+
func whatsapp_ChatState_JID_Set(handle CGoHandle, val *C.char) {
|
|
2968
|
+
op := ptrFromHandle_whatsapp_ChatState(handle)
|
|
2969
|
+
op.JID = C.GoString(val)
|
|
2532
2970
|
}
|
|
2533
2971
|
|
|
2534
|
-
//export
|
|
2535
|
-
func
|
|
2536
|
-
op :=
|
|
2537
|
-
|
|
2972
|
+
//export whatsapp_ChatState_GroupJID_Get
|
|
2973
|
+
func whatsapp_ChatState_GroupJID_Get(handle CGoHandle) *C.char {
|
|
2974
|
+
op := ptrFromHandle_whatsapp_ChatState(handle)
|
|
2975
|
+
return C.CString(op.GroupJID)
|
|
2538
2976
|
}
|
|
2539
2977
|
|
|
2540
|
-
//export
|
|
2541
|
-
func
|
|
2542
|
-
op :=
|
|
2543
|
-
|
|
2978
|
+
//export whatsapp_ChatState_GroupJID_Set
|
|
2979
|
+
func whatsapp_ChatState_GroupJID_Set(handle CGoHandle, val *C.char) {
|
|
2980
|
+
op := ptrFromHandle_whatsapp_ChatState(handle)
|
|
2981
|
+
op.GroupJID = C.GoString(val)
|
|
2544
2982
|
}
|
|
2545
2983
|
|
|
2546
|
-
//
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2984
|
+
// --- wrapping struct: whatsapp.Connect ---
|
|
2985
|
+
//
|
|
2986
|
+
//export whatsapp_Connect_CTor
|
|
2987
|
+
func whatsapp_Connect_CTor() CGoHandle {
|
|
2988
|
+
return CGoHandle(handleFromPtr_whatsapp_Connect(&whatsapp.Connect{}))
|
|
2550
2989
|
}
|
|
2551
2990
|
|
|
2552
|
-
//
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
return CGoHandle(handleFromPtr_whatsapp_Message(&whatsapp.Message{}))
|
|
2991
|
+
//export whatsapp_Connect_JID_Get
|
|
2992
|
+
func whatsapp_Connect_JID_Get(handle CGoHandle) *C.char {
|
|
2993
|
+
op := ptrFromHandle_whatsapp_Connect(handle)
|
|
2994
|
+
return C.CString(op.JID)
|
|
2557
2995
|
}
|
|
2558
2996
|
|
|
2559
|
-
//export
|
|
2560
|
-
func
|
|
2561
|
-
op :=
|
|
2562
|
-
|
|
2997
|
+
//export whatsapp_Connect_JID_Set
|
|
2998
|
+
func whatsapp_Connect_JID_Set(handle CGoHandle, val *C.char) {
|
|
2999
|
+
op := ptrFromHandle_whatsapp_Connect(handle)
|
|
3000
|
+
op.JID = C.GoString(val)
|
|
2563
3001
|
}
|
|
2564
3002
|
|
|
2565
|
-
//export
|
|
2566
|
-
func
|
|
2567
|
-
op :=
|
|
2568
|
-
|
|
3003
|
+
//export whatsapp_Connect_Error_Get
|
|
3004
|
+
func whatsapp_Connect_Error_Get(handle CGoHandle) *C.char {
|
|
3005
|
+
op := ptrFromHandle_whatsapp_Connect(handle)
|
|
3006
|
+
return C.CString(op.Error)
|
|
2569
3007
|
}
|
|
2570
3008
|
|
|
2571
|
-
//export
|
|
2572
|
-
func
|
|
2573
|
-
op :=
|
|
2574
|
-
|
|
3009
|
+
//export whatsapp_Connect_Error_Set
|
|
3010
|
+
func whatsapp_Connect_Error_Set(handle CGoHandle, val *C.char) {
|
|
3011
|
+
op := ptrFromHandle_whatsapp_Connect(handle)
|
|
3012
|
+
op.Error = C.GoString(val)
|
|
2575
3013
|
}
|
|
2576
3014
|
|
|
2577
|
-
//
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
3015
|
+
// --- wrapping struct: whatsapp.Gateway ---
|
|
3016
|
+
//
|
|
3017
|
+
//export whatsapp_Gateway_CTor
|
|
3018
|
+
func whatsapp_Gateway_CTor() CGoHandle {
|
|
3019
|
+
return CGoHandle(handleFromPtr_whatsapp_Gateway(&whatsapp.Gateway{}))
|
|
2581
3020
|
}
|
|
2582
3021
|
|
|
2583
|
-
//export
|
|
2584
|
-
func
|
|
2585
|
-
op :=
|
|
2586
|
-
return C.CString(op.
|
|
3022
|
+
//export whatsapp_Gateway_DBPath_Get
|
|
3023
|
+
func whatsapp_Gateway_DBPath_Get(handle CGoHandle) *C.char {
|
|
3024
|
+
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3025
|
+
return C.CString(op.DBPath)
|
|
2587
3026
|
}
|
|
2588
3027
|
|
|
2589
|
-
//export
|
|
2590
|
-
func
|
|
2591
|
-
op :=
|
|
2592
|
-
op.
|
|
3028
|
+
//export whatsapp_Gateway_DBPath_Set
|
|
3029
|
+
func whatsapp_Gateway_DBPath_Set(handle CGoHandle, val *C.char) {
|
|
3030
|
+
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3031
|
+
op.DBPath = C.GoString(val)
|
|
2593
3032
|
}
|
|
2594
3033
|
|
|
2595
|
-
//export
|
|
2596
|
-
func
|
|
2597
|
-
op :=
|
|
2598
|
-
return C.CString(op.
|
|
3034
|
+
//export whatsapp_Gateway_Name_Get
|
|
3035
|
+
func whatsapp_Gateway_Name_Get(handle CGoHandle) *C.char {
|
|
3036
|
+
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3037
|
+
return C.CString(op.Name)
|
|
2599
3038
|
}
|
|
2600
3039
|
|
|
2601
|
-
//export
|
|
2602
|
-
func
|
|
2603
|
-
op :=
|
|
2604
|
-
op.
|
|
3040
|
+
//export whatsapp_Gateway_Name_Set
|
|
3041
|
+
func whatsapp_Gateway_Name_Set(handle CGoHandle, val *C.char) {
|
|
3042
|
+
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3043
|
+
op.Name = C.GoString(val)
|
|
2605
3044
|
}
|
|
2606
3045
|
|
|
2607
|
-
//export
|
|
2608
|
-
func
|
|
2609
|
-
op :=
|
|
2610
|
-
return C.CString(op.
|
|
3046
|
+
//export whatsapp_Gateway_LogLevel_Get
|
|
3047
|
+
func whatsapp_Gateway_LogLevel_Get(handle CGoHandle) *C.char {
|
|
3048
|
+
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3049
|
+
return C.CString(op.LogLevel)
|
|
2611
3050
|
}
|
|
2612
3051
|
|
|
2613
|
-
//export
|
|
2614
|
-
func
|
|
2615
|
-
op :=
|
|
2616
|
-
op.
|
|
3052
|
+
//export whatsapp_Gateway_LogLevel_Set
|
|
3053
|
+
func whatsapp_Gateway_LogLevel_Set(handle CGoHandle, val *C.char) {
|
|
3054
|
+
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3055
|
+
op.LogLevel = C.GoString(val)
|
|
2617
3056
|
}
|
|
2618
3057
|
|
|
2619
|
-
//export
|
|
2620
|
-
func
|
|
2621
|
-
op :=
|
|
2622
|
-
return C.CString(op.
|
|
3058
|
+
//export whatsapp_Gateway_TempDir_Get
|
|
3059
|
+
func whatsapp_Gateway_TempDir_Get(handle CGoHandle) *C.char {
|
|
3060
|
+
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3061
|
+
return C.CString(op.TempDir)
|
|
2623
3062
|
}
|
|
2624
3063
|
|
|
2625
|
-
//export
|
|
2626
|
-
func
|
|
2627
|
-
op :=
|
|
2628
|
-
op.
|
|
3064
|
+
//export whatsapp_Gateway_TempDir_Set
|
|
3065
|
+
func whatsapp_Gateway_TempDir_Set(handle CGoHandle, val *C.char) {
|
|
3066
|
+
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3067
|
+
op.TempDir = C.GoString(val)
|
|
2629
3068
|
}
|
|
2630
3069
|
|
|
2631
|
-
//export
|
|
2632
|
-
func
|
|
2633
|
-
|
|
2634
|
-
|
|
3070
|
+
//export whatsapp_Gateway_Init
|
|
3071
|
+
func whatsapp_Gateway_Init(_handle CGoHandle) *C.char {
|
|
3072
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
3073
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Gateway")
|
|
3074
|
+
if __err != nil {
|
|
3075
|
+
return errorGoToPy(nil)
|
|
3076
|
+
}
|
|
3077
|
+
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Gateway{})).(*whatsapp.Gateway).Init()
|
|
3078
|
+
|
|
3079
|
+
C.PyEval_RestoreThread(_saved_thread)
|
|
3080
|
+
if __err != nil {
|
|
3081
|
+
estr := C.CString(__err.Error())
|
|
3082
|
+
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
3083
|
+
return estr
|
|
3084
|
+
}
|
|
3085
|
+
return C.CString("")
|
|
2635
3086
|
}
|
|
2636
3087
|
|
|
2637
|
-
//export
|
|
2638
|
-
func
|
|
2639
|
-
|
|
2640
|
-
|
|
3088
|
+
//export whatsapp_Gateway_NewSession
|
|
3089
|
+
func whatsapp_Gateway_NewSession(_handle CGoHandle, device CGoHandle) CGoHandle {
|
|
3090
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
3091
|
+
defer C.PyEval_RestoreThread(_saved_thread)
|
|
3092
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Gateway")
|
|
3093
|
+
if __err != nil {
|
|
3094
|
+
return handleFromPtr_Ptr_whatsapp_Session(nil)
|
|
3095
|
+
}
|
|
3096
|
+
return handleFromPtr_Ptr_whatsapp_Session(gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Gateway{})).(*whatsapp.Gateway).NewSession(*ptrFromHandle_whatsapp_LinkedDevice(device)))
|
|
3097
|
+
|
|
2641
3098
|
}
|
|
2642
3099
|
|
|
2643
|
-
//export
|
|
2644
|
-
func
|
|
2645
|
-
|
|
2646
|
-
|
|
3100
|
+
//export whatsapp_Gateway_CleanupSession
|
|
3101
|
+
func whatsapp_Gateway_CleanupSession(_handle CGoHandle, device CGoHandle) *C.char {
|
|
3102
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
3103
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Gateway")
|
|
3104
|
+
if __err != nil {
|
|
3105
|
+
return errorGoToPy(nil)
|
|
3106
|
+
}
|
|
3107
|
+
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Gateway{})).(*whatsapp.Gateway).CleanupSession(*ptrFromHandle_whatsapp_LinkedDevice(device))
|
|
3108
|
+
|
|
3109
|
+
C.PyEval_RestoreThread(_saved_thread)
|
|
3110
|
+
if __err != nil {
|
|
3111
|
+
estr := C.CString(__err.Error())
|
|
3112
|
+
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
3113
|
+
return estr
|
|
3114
|
+
}
|
|
3115
|
+
return C.CString("")
|
|
2647
3116
|
}
|
|
2648
3117
|
|
|
2649
|
-
//
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
3118
|
+
// --- wrapping struct: whatsapp.LinkedDevice ---
|
|
3119
|
+
//
|
|
3120
|
+
//export whatsapp_LinkedDevice_CTor
|
|
3121
|
+
func whatsapp_LinkedDevice_CTor() CGoHandle {
|
|
3122
|
+
return CGoHandle(handleFromPtr_whatsapp_LinkedDevice(&whatsapp.LinkedDevice{}))
|
|
2653
3123
|
}
|
|
2654
3124
|
|
|
2655
|
-
//export
|
|
2656
|
-
func
|
|
2657
|
-
op :=
|
|
2658
|
-
return
|
|
3125
|
+
//export whatsapp_LinkedDevice_ID_Get
|
|
3126
|
+
func whatsapp_LinkedDevice_ID_Get(handle CGoHandle) *C.char {
|
|
3127
|
+
op := ptrFromHandle_whatsapp_LinkedDevice(handle)
|
|
3128
|
+
return C.CString(op.ID)
|
|
2659
3129
|
}
|
|
2660
3130
|
|
|
2661
|
-
//export
|
|
2662
|
-
func
|
|
2663
|
-
op :=
|
|
2664
|
-
op.
|
|
3131
|
+
//export whatsapp_LinkedDevice_ID_Set
|
|
3132
|
+
func whatsapp_LinkedDevice_ID_Set(handle CGoHandle, val *C.char) {
|
|
3133
|
+
op := ptrFromHandle_whatsapp_LinkedDevice(handle)
|
|
3134
|
+
op.ID = C.GoString(val)
|
|
2665
3135
|
}
|
|
2666
3136
|
|
|
2667
|
-
//export
|
|
2668
|
-
func
|
|
2669
|
-
|
|
2670
|
-
|
|
3137
|
+
//export whatsapp_LinkedDevice_JID
|
|
3138
|
+
func whatsapp_LinkedDevice_JID(_handle CGoHandle) CGoHandle {
|
|
3139
|
+
_saved_thread := C.PyEval_SaveThread()
|
|
3140
|
+
defer C.PyEval_RestoreThread(_saved_thread)
|
|
3141
|
+
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.LinkedDevice")
|
|
3142
|
+
if __err != nil {
|
|
3143
|
+
return handleFromPtr_types_JID(nil)
|
|
3144
|
+
}
|
|
3145
|
+
cret := gopyh.Embed(vifc, reflect.TypeOf(whatsapp.LinkedDevice{})).(*whatsapp.LinkedDevice).JID()
|
|
3146
|
+
|
|
3147
|
+
return handleFromPtr_types_JID(&cret)
|
|
2671
3148
|
}
|
|
2672
3149
|
|
|
2673
|
-
//
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
3150
|
+
// --- wrapping struct: whatsapp.Location ---
|
|
3151
|
+
//
|
|
3152
|
+
//export whatsapp_Location_CTor
|
|
3153
|
+
func whatsapp_Location_CTor() CGoHandle {
|
|
3154
|
+
return CGoHandle(handleFromPtr_whatsapp_Location(&whatsapp.Location{}))
|
|
2677
3155
|
}
|
|
2678
3156
|
|
|
2679
|
-
//export
|
|
2680
|
-
func
|
|
2681
|
-
op :=
|
|
2682
|
-
return C.
|
|
3157
|
+
//export whatsapp_Location_Latitude_Get
|
|
3158
|
+
func whatsapp_Location_Latitude_Get(handle CGoHandle) C.double {
|
|
3159
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3160
|
+
return C.double(op.Latitude)
|
|
2683
3161
|
}
|
|
2684
3162
|
|
|
2685
|
-
//export
|
|
2686
|
-
func
|
|
2687
|
-
op :=
|
|
2688
|
-
op.
|
|
3163
|
+
//export whatsapp_Location_Latitude_Set
|
|
3164
|
+
func whatsapp_Location_Latitude_Set(handle CGoHandle, val C.double) {
|
|
3165
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3166
|
+
op.Latitude = float64(val)
|
|
2689
3167
|
}
|
|
2690
3168
|
|
|
2691
|
-
//export
|
|
2692
|
-
func
|
|
2693
|
-
op :=
|
|
2694
|
-
return
|
|
3169
|
+
//export whatsapp_Location_Longitude_Get
|
|
3170
|
+
func whatsapp_Location_Longitude_Get(handle CGoHandle) C.double {
|
|
3171
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3172
|
+
return C.double(op.Longitude)
|
|
2695
3173
|
}
|
|
2696
3174
|
|
|
2697
|
-
//export
|
|
2698
|
-
func
|
|
2699
|
-
op :=
|
|
2700
|
-
op.
|
|
3175
|
+
//export whatsapp_Location_Longitude_Set
|
|
3176
|
+
func whatsapp_Location_Longitude_Set(handle CGoHandle, val C.double) {
|
|
3177
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3178
|
+
op.Longitude = float64(val)
|
|
2701
3179
|
}
|
|
2702
3180
|
|
|
2703
|
-
//export
|
|
2704
|
-
func
|
|
2705
|
-
op :=
|
|
2706
|
-
return
|
|
3181
|
+
//export whatsapp_Location_Accuracy_Get
|
|
3182
|
+
func whatsapp_Location_Accuracy_Get(handle CGoHandle) C.longlong {
|
|
3183
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3184
|
+
return C.longlong(op.Accuracy)
|
|
2707
3185
|
}
|
|
2708
3186
|
|
|
2709
|
-
//export
|
|
2710
|
-
func
|
|
2711
|
-
op :=
|
|
2712
|
-
op.
|
|
3187
|
+
//export whatsapp_Location_Accuracy_Set
|
|
3188
|
+
func whatsapp_Location_Accuracy_Set(handle CGoHandle, val C.longlong) {
|
|
3189
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3190
|
+
op.Accuracy = int(val)
|
|
2713
3191
|
}
|
|
2714
3192
|
|
|
2715
|
-
//export
|
|
2716
|
-
func
|
|
2717
|
-
op :=
|
|
2718
|
-
return
|
|
3193
|
+
//export whatsapp_Location_IsLive_Get
|
|
3194
|
+
func whatsapp_Location_IsLive_Get(handle CGoHandle) C.char {
|
|
3195
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3196
|
+
return boolGoToPy(op.IsLive)
|
|
2719
3197
|
}
|
|
2720
3198
|
|
|
2721
|
-
//export
|
|
2722
|
-
func
|
|
2723
|
-
op :=
|
|
2724
|
-
op.
|
|
3199
|
+
//export whatsapp_Location_IsLive_Set
|
|
3200
|
+
func whatsapp_Location_IsLive_Set(handle CGoHandle, val C.char) {
|
|
3201
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3202
|
+
op.IsLive = boolPyToGo(val)
|
|
2725
3203
|
}
|
|
2726
3204
|
|
|
2727
|
-
//export
|
|
2728
|
-
func
|
|
2729
|
-
op :=
|
|
2730
|
-
return
|
|
3205
|
+
//export whatsapp_Location_Name_Get
|
|
3206
|
+
func whatsapp_Location_Name_Get(handle CGoHandle) *C.char {
|
|
3207
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3208
|
+
return C.CString(op.Name)
|
|
2731
3209
|
}
|
|
2732
3210
|
|
|
2733
|
-
//export
|
|
2734
|
-
func
|
|
2735
|
-
op :=
|
|
2736
|
-
op.
|
|
3211
|
+
//export whatsapp_Location_Name_Set
|
|
3212
|
+
func whatsapp_Location_Name_Set(handle CGoHandle, val *C.char) {
|
|
3213
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3214
|
+
op.Name = C.GoString(val)
|
|
2737
3215
|
}
|
|
2738
3216
|
|
|
2739
|
-
//export
|
|
2740
|
-
func
|
|
2741
|
-
op :=
|
|
2742
|
-
return
|
|
3217
|
+
//export whatsapp_Location_Address_Get
|
|
3218
|
+
func whatsapp_Location_Address_Get(handle CGoHandle) *C.char {
|
|
3219
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3220
|
+
return C.CString(op.Address)
|
|
2743
3221
|
}
|
|
2744
3222
|
|
|
2745
|
-
//export
|
|
2746
|
-
func
|
|
2747
|
-
op :=
|
|
2748
|
-
op.
|
|
3223
|
+
//export whatsapp_Location_Address_Set
|
|
3224
|
+
func whatsapp_Location_Address_Set(handle CGoHandle, val *C.char) {
|
|
3225
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3226
|
+
op.Address = C.GoString(val)
|
|
2749
3227
|
}
|
|
2750
3228
|
|
|
2751
|
-
//export
|
|
2752
|
-
func
|
|
2753
|
-
op :=
|
|
2754
|
-
return
|
|
3229
|
+
//export whatsapp_Location_URL_Get
|
|
3230
|
+
func whatsapp_Location_URL_Get(handle CGoHandle) *C.char {
|
|
3231
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3232
|
+
return C.CString(op.URL)
|
|
2755
3233
|
}
|
|
2756
3234
|
|
|
2757
|
-
//export
|
|
2758
|
-
func
|
|
2759
|
-
op :=
|
|
2760
|
-
op.
|
|
3235
|
+
//export whatsapp_Location_URL_Set
|
|
3236
|
+
func whatsapp_Location_URL_Set(handle CGoHandle, val *C.char) {
|
|
3237
|
+
op := ptrFromHandle_whatsapp_Location(handle)
|
|
3238
|
+
op.URL = C.GoString(val)
|
|
2761
3239
|
}
|
|
2762
3240
|
|
|
2763
|
-
// --- wrapping struct: whatsapp.
|
|
3241
|
+
// --- wrapping struct: whatsapp.Presence ---
|
|
2764
3242
|
//
|
|
2765
|
-
//export
|
|
2766
|
-
func
|
|
2767
|
-
return CGoHandle(
|
|
3243
|
+
//export whatsapp_Presence_CTor
|
|
3244
|
+
func whatsapp_Presence_CTor() CGoHandle {
|
|
3245
|
+
return CGoHandle(handleFromPtr_whatsapp_Presence(&whatsapp.Presence{}))
|
|
2768
3246
|
}
|
|
2769
3247
|
|
|
2770
|
-
//export
|
|
2771
|
-
func
|
|
2772
|
-
op :=
|
|
2773
|
-
return C.CString(op.
|
|
3248
|
+
//export whatsapp_Presence_JID_Get
|
|
3249
|
+
func whatsapp_Presence_JID_Get(handle CGoHandle) *C.char {
|
|
3250
|
+
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3251
|
+
return C.CString(op.JID)
|
|
2774
3252
|
}
|
|
2775
3253
|
|
|
2776
|
-
//export
|
|
2777
|
-
func
|
|
2778
|
-
op :=
|
|
2779
|
-
op.
|
|
3254
|
+
//export whatsapp_Presence_JID_Set
|
|
3255
|
+
func whatsapp_Presence_JID_Set(handle CGoHandle, val *C.char) {
|
|
3256
|
+
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3257
|
+
op.JID = C.GoString(val)
|
|
2780
3258
|
}
|
|
2781
3259
|
|
|
2782
|
-
//export
|
|
2783
|
-
func
|
|
2784
|
-
op :=
|
|
2785
|
-
return C.longlong(op.
|
|
3260
|
+
//export whatsapp_Presence_Kind_Get
|
|
3261
|
+
func whatsapp_Presence_Kind_Get(handle CGoHandle) C.longlong {
|
|
3262
|
+
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3263
|
+
return C.longlong(int(op.Kind))
|
|
2786
3264
|
}
|
|
2787
3265
|
|
|
2788
|
-
//export
|
|
2789
|
-
func
|
|
2790
|
-
op :=
|
|
2791
|
-
op.
|
|
3266
|
+
//export whatsapp_Presence_Kind_Set
|
|
3267
|
+
func whatsapp_Presence_Kind_Set(handle CGoHandle, val C.longlong) {
|
|
3268
|
+
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3269
|
+
op.Kind = whatsapp.PresenceKind(int(val))
|
|
2792
3270
|
}
|
|
2793
3271
|
|
|
2794
|
-
//export
|
|
2795
|
-
func
|
|
2796
|
-
op :=
|
|
2797
|
-
return C.
|
|
3272
|
+
//export whatsapp_Presence_LastSeen_Get
|
|
3273
|
+
func whatsapp_Presence_LastSeen_Get(handle CGoHandle) C.longlong {
|
|
3274
|
+
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3275
|
+
return C.longlong(op.LastSeen)
|
|
2798
3276
|
}
|
|
2799
3277
|
|
|
2800
|
-
//export
|
|
2801
|
-
func
|
|
2802
|
-
op :=
|
|
2803
|
-
op.
|
|
3278
|
+
//export whatsapp_Presence_LastSeen_Set
|
|
3279
|
+
func whatsapp_Presence_LastSeen_Set(handle CGoHandle, val C.longlong) {
|
|
3280
|
+
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3281
|
+
op.LastSeen = int64(val)
|
|
2804
3282
|
}
|
|
2805
3283
|
|
|
2806
3284
|
// --- wrapping struct: whatsapp.Preview ---
|
|
@@ -2840,34 +3318,113 @@ func whatsapp_Preview_Title_Get(handle CGoHandle) *C.char {
|
|
|
2840
3318
|
return C.CString(op.Title)
|
|
2841
3319
|
}
|
|
2842
3320
|
|
|
2843
|
-
//export whatsapp_Preview_Title_Set
|
|
2844
|
-
func whatsapp_Preview_Title_Set(handle CGoHandle, val *C.char) {
|
|
2845
|
-
op := ptrFromHandle_whatsapp_Preview(handle)
|
|
2846
|
-
op.Title = C.GoString(val)
|
|
3321
|
+
//export whatsapp_Preview_Title_Set
|
|
3322
|
+
func whatsapp_Preview_Title_Set(handle CGoHandle, val *C.char) {
|
|
3323
|
+
op := ptrFromHandle_whatsapp_Preview(handle)
|
|
3324
|
+
op.Title = C.GoString(val)
|
|
3325
|
+
}
|
|
3326
|
+
|
|
3327
|
+
//export whatsapp_Preview_Description_Get
|
|
3328
|
+
func whatsapp_Preview_Description_Get(handle CGoHandle) *C.char {
|
|
3329
|
+
op := ptrFromHandle_whatsapp_Preview(handle)
|
|
3330
|
+
return C.CString(op.Description)
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3333
|
+
//export whatsapp_Preview_Description_Set
|
|
3334
|
+
func whatsapp_Preview_Description_Set(handle CGoHandle, val *C.char) {
|
|
3335
|
+
op := ptrFromHandle_whatsapp_Preview(handle)
|
|
3336
|
+
op.Description = C.GoString(val)
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3339
|
+
//export whatsapp_Preview_Thumbnail_Get
|
|
3340
|
+
func whatsapp_Preview_Thumbnail_Get(handle CGoHandle) CGoHandle {
|
|
3341
|
+
op := ptrFromHandle_whatsapp_Preview(handle)
|
|
3342
|
+
return handleFromPtr_Slice_byte(&op.Thumbnail)
|
|
3343
|
+
}
|
|
3344
|
+
|
|
3345
|
+
//export whatsapp_Preview_Thumbnail_Set
|
|
3346
|
+
func whatsapp_Preview_Thumbnail_Set(handle CGoHandle, val CGoHandle) {
|
|
3347
|
+
op := ptrFromHandle_whatsapp_Preview(handle)
|
|
3348
|
+
op.Thumbnail = deptrFromHandle_Slice_byte(val)
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3351
|
+
// --- wrapping struct: whatsapp.Receipt ---
|
|
3352
|
+
//
|
|
3353
|
+
//export whatsapp_Receipt_CTor
|
|
3354
|
+
func whatsapp_Receipt_CTor() CGoHandle {
|
|
3355
|
+
return CGoHandle(handleFromPtr_whatsapp_Receipt(&whatsapp.Receipt{}))
|
|
3356
|
+
}
|
|
3357
|
+
|
|
3358
|
+
//export whatsapp_Receipt_Kind_Get
|
|
3359
|
+
func whatsapp_Receipt_Kind_Get(handle CGoHandle) C.longlong {
|
|
3360
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3361
|
+
return C.longlong(int(op.Kind))
|
|
3362
|
+
}
|
|
3363
|
+
|
|
3364
|
+
//export whatsapp_Receipt_Kind_Set
|
|
3365
|
+
func whatsapp_Receipt_Kind_Set(handle CGoHandle, val C.longlong) {
|
|
3366
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3367
|
+
op.Kind = whatsapp.ReceiptKind(int(val))
|
|
3368
|
+
}
|
|
3369
|
+
|
|
3370
|
+
//export whatsapp_Receipt_MessageIDs_Get
|
|
3371
|
+
func whatsapp_Receipt_MessageIDs_Get(handle CGoHandle) CGoHandle {
|
|
3372
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3373
|
+
return handleFromPtr_Slice_string(&op.MessageIDs)
|
|
3374
|
+
}
|
|
3375
|
+
|
|
3376
|
+
//export whatsapp_Receipt_MessageIDs_Set
|
|
3377
|
+
func whatsapp_Receipt_MessageIDs_Set(handle CGoHandle, val CGoHandle) {
|
|
3378
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3379
|
+
op.MessageIDs = deptrFromHandle_Slice_string(val)
|
|
3380
|
+
}
|
|
3381
|
+
|
|
3382
|
+
//export whatsapp_Receipt_JID_Get
|
|
3383
|
+
func whatsapp_Receipt_JID_Get(handle CGoHandle) *C.char {
|
|
3384
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3385
|
+
return C.CString(op.JID)
|
|
3386
|
+
}
|
|
3387
|
+
|
|
3388
|
+
//export whatsapp_Receipt_JID_Set
|
|
3389
|
+
func whatsapp_Receipt_JID_Set(handle CGoHandle, val *C.char) {
|
|
3390
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3391
|
+
op.JID = C.GoString(val)
|
|
3392
|
+
}
|
|
3393
|
+
|
|
3394
|
+
//export whatsapp_Receipt_GroupJID_Get
|
|
3395
|
+
func whatsapp_Receipt_GroupJID_Get(handle CGoHandle) *C.char {
|
|
3396
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3397
|
+
return C.CString(op.GroupJID)
|
|
3398
|
+
}
|
|
3399
|
+
|
|
3400
|
+
//export whatsapp_Receipt_GroupJID_Set
|
|
3401
|
+
func whatsapp_Receipt_GroupJID_Set(handle CGoHandle, val *C.char) {
|
|
3402
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3403
|
+
op.GroupJID = C.GoString(val)
|
|
2847
3404
|
}
|
|
2848
3405
|
|
|
2849
|
-
//export
|
|
2850
|
-
func
|
|
2851
|
-
op :=
|
|
2852
|
-
return C.
|
|
3406
|
+
//export whatsapp_Receipt_Timestamp_Get
|
|
3407
|
+
func whatsapp_Receipt_Timestamp_Get(handle CGoHandle) C.longlong {
|
|
3408
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3409
|
+
return C.longlong(op.Timestamp)
|
|
2853
3410
|
}
|
|
2854
3411
|
|
|
2855
|
-
//export
|
|
2856
|
-
func
|
|
2857
|
-
op :=
|
|
2858
|
-
op.
|
|
3412
|
+
//export whatsapp_Receipt_Timestamp_Set
|
|
3413
|
+
func whatsapp_Receipt_Timestamp_Set(handle CGoHandle, val C.longlong) {
|
|
3414
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3415
|
+
op.Timestamp = int64(val)
|
|
2859
3416
|
}
|
|
2860
3417
|
|
|
2861
|
-
//export
|
|
2862
|
-
func
|
|
2863
|
-
op :=
|
|
2864
|
-
return
|
|
3418
|
+
//export whatsapp_Receipt_IsCarbon_Get
|
|
3419
|
+
func whatsapp_Receipt_IsCarbon_Get(handle CGoHandle) C.char {
|
|
3420
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3421
|
+
return boolGoToPy(op.IsCarbon)
|
|
2865
3422
|
}
|
|
2866
3423
|
|
|
2867
|
-
//export
|
|
2868
|
-
func
|
|
2869
|
-
op :=
|
|
2870
|
-
op.
|
|
3424
|
+
//export whatsapp_Receipt_IsCarbon_Set
|
|
3425
|
+
func whatsapp_Receipt_IsCarbon_Set(handle CGoHandle, val C.char) {
|
|
3426
|
+
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3427
|
+
op.IsCarbon = boolPyToGo(val)
|
|
2871
3428
|
}
|
|
2872
3429
|
|
|
2873
3430
|
// --- wrapping struct: whatsapp.Attachment ---
|
|
@@ -2944,80 +3501,6 @@ func whatsapp_Attachment_GetSpec(_handle CGoHandle, ctx CGoHandle) CGoHandle {
|
|
|
2944
3501
|
return handleFromPtr_Ptr_media_Spec(cret)
|
|
2945
3502
|
}
|
|
2946
3503
|
|
|
2947
|
-
// --- wrapping struct: whatsapp.Avatar ---
|
|
2948
|
-
//
|
|
2949
|
-
//export whatsapp_Avatar_CTor
|
|
2950
|
-
func whatsapp_Avatar_CTor() CGoHandle {
|
|
2951
|
-
return CGoHandle(handleFromPtr_whatsapp_Avatar(&whatsapp.Avatar{}))
|
|
2952
|
-
}
|
|
2953
|
-
|
|
2954
|
-
//export whatsapp_Avatar_ID_Get
|
|
2955
|
-
func whatsapp_Avatar_ID_Get(handle CGoHandle) *C.char {
|
|
2956
|
-
op := ptrFromHandle_whatsapp_Avatar(handle)
|
|
2957
|
-
return C.CString(op.ID)
|
|
2958
|
-
}
|
|
2959
|
-
|
|
2960
|
-
//export whatsapp_Avatar_ID_Set
|
|
2961
|
-
func whatsapp_Avatar_ID_Set(handle CGoHandle, val *C.char) {
|
|
2962
|
-
op := ptrFromHandle_whatsapp_Avatar(handle)
|
|
2963
|
-
op.ID = C.GoString(val)
|
|
2964
|
-
}
|
|
2965
|
-
|
|
2966
|
-
//export whatsapp_Avatar_URL_Get
|
|
2967
|
-
func whatsapp_Avatar_URL_Get(handle CGoHandle) *C.char {
|
|
2968
|
-
op := ptrFromHandle_whatsapp_Avatar(handle)
|
|
2969
|
-
return C.CString(op.URL)
|
|
2970
|
-
}
|
|
2971
|
-
|
|
2972
|
-
//export whatsapp_Avatar_URL_Set
|
|
2973
|
-
func whatsapp_Avatar_URL_Set(handle CGoHandle, val *C.char) {
|
|
2974
|
-
op := ptrFromHandle_whatsapp_Avatar(handle)
|
|
2975
|
-
op.URL = C.GoString(val)
|
|
2976
|
-
}
|
|
2977
|
-
|
|
2978
|
-
// --- wrapping struct: whatsapp.GroupParticipant ---
|
|
2979
|
-
//
|
|
2980
|
-
//export whatsapp_GroupParticipant_CTor
|
|
2981
|
-
func whatsapp_GroupParticipant_CTor() CGoHandle {
|
|
2982
|
-
return CGoHandle(handleFromPtr_whatsapp_GroupParticipant(&whatsapp.GroupParticipant{}))
|
|
2983
|
-
}
|
|
2984
|
-
|
|
2985
|
-
//export whatsapp_GroupParticipant_JID_Get
|
|
2986
|
-
func whatsapp_GroupParticipant_JID_Get(handle CGoHandle) *C.char {
|
|
2987
|
-
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
2988
|
-
return C.CString(op.JID)
|
|
2989
|
-
}
|
|
2990
|
-
|
|
2991
|
-
//export whatsapp_GroupParticipant_JID_Set
|
|
2992
|
-
func whatsapp_GroupParticipant_JID_Set(handle CGoHandle, val *C.char) {
|
|
2993
|
-
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
2994
|
-
op.JID = C.GoString(val)
|
|
2995
|
-
}
|
|
2996
|
-
|
|
2997
|
-
//export whatsapp_GroupParticipant_Affiliation_Get
|
|
2998
|
-
func whatsapp_GroupParticipant_Affiliation_Get(handle CGoHandle) C.longlong {
|
|
2999
|
-
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
3000
|
-
return C.longlong(int(op.Affiliation))
|
|
3001
|
-
}
|
|
3002
|
-
|
|
3003
|
-
//export whatsapp_GroupParticipant_Affiliation_Set
|
|
3004
|
-
func whatsapp_GroupParticipant_Affiliation_Set(handle CGoHandle, val C.longlong) {
|
|
3005
|
-
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
3006
|
-
op.Affiliation = whatsapp.GroupAffiliation(int(val))
|
|
3007
|
-
}
|
|
3008
|
-
|
|
3009
|
-
//export whatsapp_GroupParticipant_Action_Get
|
|
3010
|
-
func whatsapp_GroupParticipant_Action_Get(handle CGoHandle) C.longlong {
|
|
3011
|
-
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
3012
|
-
return C.longlong(int(op.Action))
|
|
3013
|
-
}
|
|
3014
|
-
|
|
3015
|
-
//export whatsapp_GroupParticipant_Action_Set
|
|
3016
|
-
func whatsapp_GroupParticipant_Action_Set(handle CGoHandle, val C.longlong) {
|
|
3017
|
-
op := ptrFromHandle_whatsapp_GroupParticipant(handle)
|
|
3018
|
-
op.Action = whatsapp.GroupParticipantAction(int(val))
|
|
3019
|
-
}
|
|
3020
|
-
|
|
3021
3504
|
// --- wrapping struct: whatsapp.Group ---
|
|
3022
3505
|
//
|
|
3023
3506
|
//export whatsapp_Group_CTor
|
|
@@ -3057,272 +3540,137 @@ func whatsapp_Group_Subject_Get(handle CGoHandle) CGoHandle {
|
|
|
3057
3540
|
|
|
3058
3541
|
//export whatsapp_Group_Subject_Set
|
|
3059
3542
|
func whatsapp_Group_Subject_Set(handle CGoHandle, val CGoHandle) {
|
|
3060
|
-
op := ptrFromHandle_whatsapp_Group(handle)
|
|
3061
|
-
op.Subject = *ptrFromHandle_whatsapp_GroupSubject(val)
|
|
3062
|
-
}
|
|
3063
|
-
|
|
3064
|
-
//export whatsapp_Group_Nickname_Get
|
|
3065
|
-
func whatsapp_Group_Nickname_Get(handle CGoHandle) *C.char {
|
|
3066
|
-
op := ptrFromHandle_whatsapp_Group(handle)
|
|
3067
|
-
return C.CString(op.Nickname)
|
|
3068
|
-
}
|
|
3069
|
-
|
|
3070
|
-
//export whatsapp_Group_Nickname_Set
|
|
3071
|
-
func whatsapp_Group_Nickname_Set(handle CGoHandle, val *C.char) {
|
|
3072
|
-
op := ptrFromHandle_whatsapp_Group(handle)
|
|
3073
|
-
op.Nickname = C.GoString(val)
|
|
3074
|
-
}
|
|
3075
|
-
|
|
3076
|
-
//export whatsapp_Group_Participants_Get
|
|
3077
|
-
func whatsapp_Group_Participants_Get(handle CGoHandle) CGoHandle {
|
|
3078
|
-
op := ptrFromHandle_whatsapp_Group(handle)
|
|
3079
|
-
return handleFromPtr_Slice_whatsapp_GroupParticipant(&op.Participants)
|
|
3080
|
-
}
|
|
3081
|
-
|
|
3082
|
-
//export whatsapp_Group_Participants_Set
|
|
3083
|
-
func whatsapp_Group_Participants_Set(handle CGoHandle, val CGoHandle) {
|
|
3084
|
-
op := ptrFromHandle_whatsapp_Group(handle)
|
|
3085
|
-
op.Participants = deptrFromHandle_Slice_whatsapp_GroupParticipant(val)
|
|
3086
|
-
}
|
|
3087
|
-
|
|
3088
|
-
// --- wrapping struct: whatsapp.LinkedDevice ---
|
|
3089
|
-
//
|
|
3090
|
-
//export whatsapp_LinkedDevice_CTor
|
|
3091
|
-
func whatsapp_LinkedDevice_CTor() CGoHandle {
|
|
3092
|
-
return CGoHandle(handleFromPtr_whatsapp_LinkedDevice(&whatsapp.LinkedDevice{}))
|
|
3093
|
-
}
|
|
3094
|
-
|
|
3095
|
-
//export whatsapp_LinkedDevice_ID_Get
|
|
3096
|
-
func whatsapp_LinkedDevice_ID_Get(handle CGoHandle) *C.char {
|
|
3097
|
-
op := ptrFromHandle_whatsapp_LinkedDevice(handle)
|
|
3098
|
-
return C.CString(op.ID)
|
|
3099
|
-
}
|
|
3100
|
-
|
|
3101
|
-
//export whatsapp_LinkedDevice_ID_Set
|
|
3102
|
-
func whatsapp_LinkedDevice_ID_Set(handle CGoHandle, val *C.char) {
|
|
3103
|
-
op := ptrFromHandle_whatsapp_LinkedDevice(handle)
|
|
3104
|
-
op.ID = C.GoString(val)
|
|
3105
|
-
}
|
|
3106
|
-
|
|
3107
|
-
//export whatsapp_LinkedDevice_JID
|
|
3108
|
-
func whatsapp_LinkedDevice_JID(_handle CGoHandle) CGoHandle {
|
|
3109
|
-
_saved_thread := C.PyEval_SaveThread()
|
|
3110
|
-
defer C.PyEval_RestoreThread(_saved_thread)
|
|
3111
|
-
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.LinkedDevice")
|
|
3112
|
-
if __err != nil {
|
|
3113
|
-
return handleFromPtr_types_JID(nil)
|
|
3114
|
-
}
|
|
3115
|
-
cret := gopyh.Embed(vifc, reflect.TypeOf(whatsapp.LinkedDevice{})).(*whatsapp.LinkedDevice).JID()
|
|
3116
|
-
|
|
3117
|
-
return handleFromPtr_types_JID(&cret)
|
|
3118
|
-
}
|
|
3119
|
-
|
|
3120
|
-
// --- wrapping struct: whatsapp.Presence ---
|
|
3121
|
-
//
|
|
3122
|
-
//export whatsapp_Presence_CTor
|
|
3123
|
-
func whatsapp_Presence_CTor() CGoHandle {
|
|
3124
|
-
return CGoHandle(handleFromPtr_whatsapp_Presence(&whatsapp.Presence{}))
|
|
3125
|
-
}
|
|
3126
|
-
|
|
3127
|
-
//export whatsapp_Presence_JID_Get
|
|
3128
|
-
func whatsapp_Presence_JID_Get(handle CGoHandle) *C.char {
|
|
3129
|
-
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3130
|
-
return C.CString(op.JID)
|
|
3131
|
-
}
|
|
3132
|
-
|
|
3133
|
-
//export whatsapp_Presence_JID_Set
|
|
3134
|
-
func whatsapp_Presence_JID_Set(handle CGoHandle, val *C.char) {
|
|
3135
|
-
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3136
|
-
op.JID = C.GoString(val)
|
|
3137
|
-
}
|
|
3138
|
-
|
|
3139
|
-
//export whatsapp_Presence_Kind_Get
|
|
3140
|
-
func whatsapp_Presence_Kind_Get(handle CGoHandle) C.longlong {
|
|
3141
|
-
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3142
|
-
return C.longlong(int(op.Kind))
|
|
3143
|
-
}
|
|
3144
|
-
|
|
3145
|
-
//export whatsapp_Presence_Kind_Set
|
|
3146
|
-
func whatsapp_Presence_Kind_Set(handle CGoHandle, val C.longlong) {
|
|
3147
|
-
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3148
|
-
op.Kind = whatsapp.PresenceKind(int(val))
|
|
3149
|
-
}
|
|
3150
|
-
|
|
3151
|
-
//export whatsapp_Presence_LastSeen_Get
|
|
3152
|
-
func whatsapp_Presence_LastSeen_Get(handle CGoHandle) C.longlong {
|
|
3153
|
-
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3154
|
-
return C.longlong(op.LastSeen)
|
|
3155
|
-
}
|
|
3156
|
-
|
|
3157
|
-
//export whatsapp_Presence_LastSeen_Set
|
|
3158
|
-
func whatsapp_Presence_LastSeen_Set(handle CGoHandle, val C.longlong) {
|
|
3159
|
-
op := ptrFromHandle_whatsapp_Presence(handle)
|
|
3160
|
-
op.LastSeen = int64(val)
|
|
3161
|
-
}
|
|
3162
|
-
|
|
3163
|
-
// --- wrapping struct: whatsapp.Receipt ---
|
|
3164
|
-
//
|
|
3165
|
-
//export whatsapp_Receipt_CTor
|
|
3166
|
-
func whatsapp_Receipt_CTor() CGoHandle {
|
|
3167
|
-
return CGoHandle(handleFromPtr_whatsapp_Receipt(&whatsapp.Receipt{}))
|
|
3168
|
-
}
|
|
3169
|
-
|
|
3170
|
-
//export whatsapp_Receipt_Kind_Get
|
|
3171
|
-
func whatsapp_Receipt_Kind_Get(handle CGoHandle) C.longlong {
|
|
3172
|
-
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3173
|
-
return C.longlong(int(op.Kind))
|
|
3174
|
-
}
|
|
3175
|
-
|
|
3176
|
-
//export whatsapp_Receipt_Kind_Set
|
|
3177
|
-
func whatsapp_Receipt_Kind_Set(handle CGoHandle, val C.longlong) {
|
|
3178
|
-
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3179
|
-
op.Kind = whatsapp.ReceiptKind(int(val))
|
|
3180
|
-
}
|
|
3181
|
-
|
|
3182
|
-
//export whatsapp_Receipt_MessageIDs_Get
|
|
3183
|
-
func whatsapp_Receipt_MessageIDs_Get(handle CGoHandle) CGoHandle {
|
|
3184
|
-
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3185
|
-
return handleFromPtr_Slice_string(&op.MessageIDs)
|
|
3186
|
-
}
|
|
3187
|
-
|
|
3188
|
-
//export whatsapp_Receipt_MessageIDs_Set
|
|
3189
|
-
func whatsapp_Receipt_MessageIDs_Set(handle CGoHandle, val CGoHandle) {
|
|
3190
|
-
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3191
|
-
op.MessageIDs = deptrFromHandle_Slice_string(val)
|
|
3192
|
-
}
|
|
3193
|
-
|
|
3194
|
-
//export whatsapp_Receipt_JID_Get
|
|
3195
|
-
func whatsapp_Receipt_JID_Get(handle CGoHandle) *C.char {
|
|
3196
|
-
op := ptrFromHandle_whatsapp_Receipt(handle)
|
|
3197
|
-
return C.CString(op.JID)
|
|
3543
|
+
op := ptrFromHandle_whatsapp_Group(handle)
|
|
3544
|
+
op.Subject = *ptrFromHandle_whatsapp_GroupSubject(val)
|
|
3198
3545
|
}
|
|
3199
3546
|
|
|
3200
|
-
//export
|
|
3201
|
-
func
|
|
3202
|
-
op :=
|
|
3203
|
-
|
|
3547
|
+
//export whatsapp_Group_Nickname_Get
|
|
3548
|
+
func whatsapp_Group_Nickname_Get(handle CGoHandle) *C.char {
|
|
3549
|
+
op := ptrFromHandle_whatsapp_Group(handle)
|
|
3550
|
+
return C.CString(op.Nickname)
|
|
3204
3551
|
}
|
|
3205
3552
|
|
|
3206
|
-
//export
|
|
3207
|
-
func
|
|
3208
|
-
op :=
|
|
3209
|
-
|
|
3553
|
+
//export whatsapp_Group_Nickname_Set
|
|
3554
|
+
func whatsapp_Group_Nickname_Set(handle CGoHandle, val *C.char) {
|
|
3555
|
+
op := ptrFromHandle_whatsapp_Group(handle)
|
|
3556
|
+
op.Nickname = C.GoString(val)
|
|
3210
3557
|
}
|
|
3211
3558
|
|
|
3212
|
-
//export
|
|
3213
|
-
func
|
|
3214
|
-
op :=
|
|
3215
|
-
op.
|
|
3559
|
+
//export whatsapp_Group_Participants_Get
|
|
3560
|
+
func whatsapp_Group_Participants_Get(handle CGoHandle) CGoHandle {
|
|
3561
|
+
op := ptrFromHandle_whatsapp_Group(handle)
|
|
3562
|
+
return handleFromPtr_Slice_whatsapp_GroupParticipant(&op.Participants)
|
|
3216
3563
|
}
|
|
3217
3564
|
|
|
3218
|
-
//export
|
|
3219
|
-
func
|
|
3220
|
-
op :=
|
|
3221
|
-
|
|
3565
|
+
//export whatsapp_Group_Participants_Set
|
|
3566
|
+
func whatsapp_Group_Participants_Set(handle CGoHandle, val CGoHandle) {
|
|
3567
|
+
op := ptrFromHandle_whatsapp_Group(handle)
|
|
3568
|
+
op.Participants = deptrFromHandle_Slice_whatsapp_GroupParticipant(val)
|
|
3222
3569
|
}
|
|
3223
3570
|
|
|
3224
|
-
//
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3571
|
+
// --- wrapping struct: whatsapp.GroupSubject ---
|
|
3572
|
+
//
|
|
3573
|
+
//export whatsapp_GroupSubject_CTor
|
|
3574
|
+
func whatsapp_GroupSubject_CTor() CGoHandle {
|
|
3575
|
+
return CGoHandle(handleFromPtr_whatsapp_GroupSubject(&whatsapp.GroupSubject{}))
|
|
3228
3576
|
}
|
|
3229
3577
|
|
|
3230
|
-
//export
|
|
3231
|
-
func
|
|
3232
|
-
op :=
|
|
3233
|
-
return
|
|
3578
|
+
//export whatsapp_GroupSubject_Subject_Get
|
|
3579
|
+
func whatsapp_GroupSubject_Subject_Get(handle CGoHandle) *C.char {
|
|
3580
|
+
op := ptrFromHandle_whatsapp_GroupSubject(handle)
|
|
3581
|
+
return C.CString(op.Subject)
|
|
3234
3582
|
}
|
|
3235
3583
|
|
|
3236
|
-
//export
|
|
3237
|
-
func
|
|
3238
|
-
op :=
|
|
3239
|
-
op.
|
|
3584
|
+
//export whatsapp_GroupSubject_Subject_Set
|
|
3585
|
+
func whatsapp_GroupSubject_Subject_Set(handle CGoHandle, val *C.char) {
|
|
3586
|
+
op := ptrFromHandle_whatsapp_GroupSubject(handle)
|
|
3587
|
+
op.Subject = C.GoString(val)
|
|
3240
3588
|
}
|
|
3241
3589
|
|
|
3242
|
-
//
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
return CGoHandle(handleFromPtr_whatsapp_Call(&whatsapp.Call{}))
|
|
3590
|
+
//export whatsapp_GroupSubject_SetAt_Get
|
|
3591
|
+
func whatsapp_GroupSubject_SetAt_Get(handle CGoHandle) C.longlong {
|
|
3592
|
+
op := ptrFromHandle_whatsapp_GroupSubject(handle)
|
|
3593
|
+
return C.longlong(op.SetAt)
|
|
3247
3594
|
}
|
|
3248
3595
|
|
|
3249
|
-
//export
|
|
3250
|
-
func
|
|
3251
|
-
op :=
|
|
3252
|
-
|
|
3596
|
+
//export whatsapp_GroupSubject_SetAt_Set
|
|
3597
|
+
func whatsapp_GroupSubject_SetAt_Set(handle CGoHandle, val C.longlong) {
|
|
3598
|
+
op := ptrFromHandle_whatsapp_GroupSubject(handle)
|
|
3599
|
+
op.SetAt = int64(val)
|
|
3253
3600
|
}
|
|
3254
3601
|
|
|
3255
|
-
//export
|
|
3256
|
-
func
|
|
3257
|
-
op :=
|
|
3258
|
-
|
|
3602
|
+
//export whatsapp_GroupSubject_SetByJID_Get
|
|
3603
|
+
func whatsapp_GroupSubject_SetByJID_Get(handle CGoHandle) *C.char {
|
|
3604
|
+
op := ptrFromHandle_whatsapp_GroupSubject(handle)
|
|
3605
|
+
return C.CString(op.SetByJID)
|
|
3259
3606
|
}
|
|
3260
3607
|
|
|
3261
|
-
//export
|
|
3262
|
-
func
|
|
3263
|
-
op :=
|
|
3264
|
-
|
|
3608
|
+
//export whatsapp_GroupSubject_SetByJID_Set
|
|
3609
|
+
func whatsapp_GroupSubject_SetByJID_Set(handle CGoHandle, val *C.char) {
|
|
3610
|
+
op := ptrFromHandle_whatsapp_GroupSubject(handle)
|
|
3611
|
+
op.SetByJID = C.GoString(val)
|
|
3265
3612
|
}
|
|
3266
3613
|
|
|
3267
|
-
//
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3614
|
+
// --- wrapping struct: whatsapp.Poll ---
|
|
3615
|
+
//
|
|
3616
|
+
//export whatsapp_Poll_CTor
|
|
3617
|
+
func whatsapp_Poll_CTor() CGoHandle {
|
|
3618
|
+
return CGoHandle(handleFromPtr_whatsapp_Poll(&whatsapp.Poll{}))
|
|
3271
3619
|
}
|
|
3272
3620
|
|
|
3273
|
-
//export
|
|
3274
|
-
func
|
|
3275
|
-
op :=
|
|
3276
|
-
return C.
|
|
3621
|
+
//export whatsapp_Poll_Title_Get
|
|
3622
|
+
func whatsapp_Poll_Title_Get(handle CGoHandle) *C.char {
|
|
3623
|
+
op := ptrFromHandle_whatsapp_Poll(handle)
|
|
3624
|
+
return C.CString(op.Title)
|
|
3277
3625
|
}
|
|
3278
3626
|
|
|
3279
|
-
//export
|
|
3280
|
-
func
|
|
3281
|
-
op :=
|
|
3282
|
-
op.
|
|
3627
|
+
//export whatsapp_Poll_Title_Set
|
|
3628
|
+
func whatsapp_Poll_Title_Set(handle CGoHandle, val *C.char) {
|
|
3629
|
+
op := ptrFromHandle_whatsapp_Poll(handle)
|
|
3630
|
+
op.Title = C.GoString(val)
|
|
3283
3631
|
}
|
|
3284
3632
|
|
|
3285
|
-
//
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
return CGoHandle(handleFromPtr_whatsapp_ChatState(&whatsapp.ChatState{}))
|
|
3633
|
+
//export whatsapp_Poll_Options_Get
|
|
3634
|
+
func whatsapp_Poll_Options_Get(handle CGoHandle) CGoHandle {
|
|
3635
|
+
op := ptrFromHandle_whatsapp_Poll(handle)
|
|
3636
|
+
return handleFromPtr_Slice_whatsapp_PollOption(&op.Options)
|
|
3290
3637
|
}
|
|
3291
3638
|
|
|
3292
|
-
//export
|
|
3293
|
-
func
|
|
3294
|
-
op :=
|
|
3295
|
-
|
|
3639
|
+
//export whatsapp_Poll_Options_Set
|
|
3640
|
+
func whatsapp_Poll_Options_Set(handle CGoHandle, val CGoHandle) {
|
|
3641
|
+
op := ptrFromHandle_whatsapp_Poll(handle)
|
|
3642
|
+
op.Options = deptrFromHandle_Slice_whatsapp_PollOption(val)
|
|
3296
3643
|
}
|
|
3297
3644
|
|
|
3298
|
-
//
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3645
|
+
// --- wrapping struct: whatsapp.Contact ---
|
|
3646
|
+
//
|
|
3647
|
+
//export whatsapp_Contact_CTor
|
|
3648
|
+
func whatsapp_Contact_CTor() CGoHandle {
|
|
3649
|
+
return CGoHandle(handleFromPtr_whatsapp_Contact(&whatsapp.Contact{}))
|
|
3302
3650
|
}
|
|
3303
3651
|
|
|
3304
|
-
//export
|
|
3305
|
-
func
|
|
3306
|
-
op :=
|
|
3652
|
+
//export whatsapp_Contact_JID_Get
|
|
3653
|
+
func whatsapp_Contact_JID_Get(handle CGoHandle) *C.char {
|
|
3654
|
+
op := ptrFromHandle_whatsapp_Contact(handle)
|
|
3307
3655
|
return C.CString(op.JID)
|
|
3308
3656
|
}
|
|
3309
3657
|
|
|
3310
|
-
//export
|
|
3311
|
-
func
|
|
3312
|
-
op :=
|
|
3658
|
+
//export whatsapp_Contact_JID_Set
|
|
3659
|
+
func whatsapp_Contact_JID_Set(handle CGoHandle, val *C.char) {
|
|
3660
|
+
op := ptrFromHandle_whatsapp_Contact(handle)
|
|
3313
3661
|
op.JID = C.GoString(val)
|
|
3314
3662
|
}
|
|
3315
3663
|
|
|
3316
|
-
//export
|
|
3317
|
-
func
|
|
3318
|
-
op :=
|
|
3319
|
-
return C.CString(op.
|
|
3664
|
+
//export whatsapp_Contact_Name_Get
|
|
3665
|
+
func whatsapp_Contact_Name_Get(handle CGoHandle) *C.char {
|
|
3666
|
+
op := ptrFromHandle_whatsapp_Contact(handle)
|
|
3667
|
+
return C.CString(op.Name)
|
|
3320
3668
|
}
|
|
3321
3669
|
|
|
3322
|
-
//export
|
|
3323
|
-
func
|
|
3324
|
-
op :=
|
|
3325
|
-
op.
|
|
3670
|
+
//export whatsapp_Contact_Name_Set
|
|
3671
|
+
func whatsapp_Contact_Name_Set(handle CGoHandle, val *C.char) {
|
|
3672
|
+
op := ptrFromHandle_whatsapp_Contact(handle)
|
|
3673
|
+
op.Name = C.GoString(val)
|
|
3326
3674
|
}
|
|
3327
3675
|
|
|
3328
3676
|
// --- wrapping struct: whatsapp.EventPayload ---
|
|
@@ -3452,109 +3800,6 @@ func whatsapp_EventPayload_Call_Set(handle CGoHandle, val CGoHandle) {
|
|
|
3452
3800
|
op.Call = *ptrFromHandle_whatsapp_Call(val)
|
|
3453
3801
|
}
|
|
3454
3802
|
|
|
3455
|
-
// --- wrapping struct: whatsapp.Gateway ---
|
|
3456
|
-
//
|
|
3457
|
-
//export whatsapp_Gateway_CTor
|
|
3458
|
-
func whatsapp_Gateway_CTor() CGoHandle {
|
|
3459
|
-
return CGoHandle(handleFromPtr_whatsapp_Gateway(&whatsapp.Gateway{}))
|
|
3460
|
-
}
|
|
3461
|
-
|
|
3462
|
-
//export whatsapp_Gateway_DBPath_Get
|
|
3463
|
-
func whatsapp_Gateway_DBPath_Get(handle CGoHandle) *C.char {
|
|
3464
|
-
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3465
|
-
return C.CString(op.DBPath)
|
|
3466
|
-
}
|
|
3467
|
-
|
|
3468
|
-
//export whatsapp_Gateway_DBPath_Set
|
|
3469
|
-
func whatsapp_Gateway_DBPath_Set(handle CGoHandle, val *C.char) {
|
|
3470
|
-
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3471
|
-
op.DBPath = C.GoString(val)
|
|
3472
|
-
}
|
|
3473
|
-
|
|
3474
|
-
//export whatsapp_Gateway_Name_Get
|
|
3475
|
-
func whatsapp_Gateway_Name_Get(handle CGoHandle) *C.char {
|
|
3476
|
-
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3477
|
-
return C.CString(op.Name)
|
|
3478
|
-
}
|
|
3479
|
-
|
|
3480
|
-
//export whatsapp_Gateway_Name_Set
|
|
3481
|
-
func whatsapp_Gateway_Name_Set(handle CGoHandle, val *C.char) {
|
|
3482
|
-
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3483
|
-
op.Name = C.GoString(val)
|
|
3484
|
-
}
|
|
3485
|
-
|
|
3486
|
-
//export whatsapp_Gateway_LogLevel_Get
|
|
3487
|
-
func whatsapp_Gateway_LogLevel_Get(handle CGoHandle) *C.char {
|
|
3488
|
-
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3489
|
-
return C.CString(op.LogLevel)
|
|
3490
|
-
}
|
|
3491
|
-
|
|
3492
|
-
//export whatsapp_Gateway_LogLevel_Set
|
|
3493
|
-
func whatsapp_Gateway_LogLevel_Set(handle CGoHandle, val *C.char) {
|
|
3494
|
-
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3495
|
-
op.LogLevel = C.GoString(val)
|
|
3496
|
-
}
|
|
3497
|
-
|
|
3498
|
-
//export whatsapp_Gateway_TempDir_Get
|
|
3499
|
-
func whatsapp_Gateway_TempDir_Get(handle CGoHandle) *C.char {
|
|
3500
|
-
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3501
|
-
return C.CString(op.TempDir)
|
|
3502
|
-
}
|
|
3503
|
-
|
|
3504
|
-
//export whatsapp_Gateway_TempDir_Set
|
|
3505
|
-
func whatsapp_Gateway_TempDir_Set(handle CGoHandle, val *C.char) {
|
|
3506
|
-
op := ptrFromHandle_whatsapp_Gateway(handle)
|
|
3507
|
-
op.TempDir = C.GoString(val)
|
|
3508
|
-
}
|
|
3509
|
-
|
|
3510
|
-
//export whatsapp_Gateway_Init
|
|
3511
|
-
func whatsapp_Gateway_Init(_handle CGoHandle) *C.char {
|
|
3512
|
-
_saved_thread := C.PyEval_SaveThread()
|
|
3513
|
-
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Gateway")
|
|
3514
|
-
if __err != nil {
|
|
3515
|
-
return errorGoToPy(nil)
|
|
3516
|
-
}
|
|
3517
|
-
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Gateway{})).(*whatsapp.Gateway).Init()
|
|
3518
|
-
|
|
3519
|
-
C.PyEval_RestoreThread(_saved_thread)
|
|
3520
|
-
if __err != nil {
|
|
3521
|
-
estr := C.CString(__err.Error())
|
|
3522
|
-
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
3523
|
-
return estr
|
|
3524
|
-
}
|
|
3525
|
-
return C.CString("")
|
|
3526
|
-
}
|
|
3527
|
-
|
|
3528
|
-
//export whatsapp_Gateway_NewSession
|
|
3529
|
-
func whatsapp_Gateway_NewSession(_handle CGoHandle, device CGoHandle) CGoHandle {
|
|
3530
|
-
_saved_thread := C.PyEval_SaveThread()
|
|
3531
|
-
defer C.PyEval_RestoreThread(_saved_thread)
|
|
3532
|
-
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Gateway")
|
|
3533
|
-
if __err != nil {
|
|
3534
|
-
return handleFromPtr_Ptr_whatsapp_Session(nil)
|
|
3535
|
-
}
|
|
3536
|
-
return handleFromPtr_Ptr_whatsapp_Session(gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Gateway{})).(*whatsapp.Gateway).NewSession(*ptrFromHandle_whatsapp_LinkedDevice(device)))
|
|
3537
|
-
|
|
3538
|
-
}
|
|
3539
|
-
|
|
3540
|
-
//export whatsapp_Gateway_CleanupSession
|
|
3541
|
-
func whatsapp_Gateway_CleanupSession(_handle CGoHandle, device CGoHandle) *C.char {
|
|
3542
|
-
_saved_thread := C.PyEval_SaveThread()
|
|
3543
|
-
vifc, __err := gopyh.VarFromHandleTry((gopyh.CGoHandle)(_handle), "*whatsapp.Gateway")
|
|
3544
|
-
if __err != nil {
|
|
3545
|
-
return errorGoToPy(nil)
|
|
3546
|
-
}
|
|
3547
|
-
__err = gopyh.Embed(vifc, reflect.TypeOf(whatsapp.Gateway{})).(*whatsapp.Gateway).CleanupSession(*ptrFromHandle_whatsapp_LinkedDevice(device))
|
|
3548
|
-
|
|
3549
|
-
C.PyEval_RestoreThread(_saved_thread)
|
|
3550
|
-
if __err != nil {
|
|
3551
|
-
estr := C.CString(__err.Error())
|
|
3552
|
-
C.PyErr_SetString(C.PyExc_RuntimeError, estr)
|
|
3553
|
-
return estr
|
|
3554
|
-
}
|
|
3555
|
-
return C.CString("")
|
|
3556
|
-
}
|
|
3557
|
-
|
|
3558
3803
|
// ---- Slices ---
|
|
3559
3804
|
|
|
3560
3805
|
// ---- Maps ---
|