├── LICENSE ├── README.md ├── mainLinux.cc ├── webview.cc └── webview.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/whatsapp_linux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/whatsapp_linux/HEAD/README.md -------------------------------------------------------------------------------- /mainLinux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/whatsapp_linux/HEAD/mainLinux.cc -------------------------------------------------------------------------------- /webview.cc: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | #include "webview.h" 4 | -------------------------------------------------------------------------------- /webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/whatsapp_linux/HEAD/webview.h --------------------------------------------------------------------------------