├── .gitignore ├── LICENSE ├── README-CN.md ├── README.md ├── coolq-telegram-bot-x.sln ├── ctbx ├── cqsdk │ ├── api.cpp │ ├── api.h │ ├── api_funcs.h │ ├── app.cpp │ ├── app.h │ ├── common.h │ ├── cqsdk.h │ ├── def.h │ ├── dir.cpp │ ├── dir.h │ ├── dllmain.cpp │ ├── enums.h │ ├── event.cpp │ ├── event.h │ ├── exception.h │ ├── logging.h │ ├── menu.h │ ├── message.cpp │ ├── message.h │ ├── target.h │ ├── types.h │ └── utils │ │ ├── base64.cpp │ │ ├── base64.h │ │ ├── binpack.h │ │ ├── emoji_data.inc │ │ ├── function.h │ │ ├── memory.h │ │ ├── string.cpp │ │ ├── string.h │ │ └── vendor │ │ ├── base64.cpp │ │ └── base64.h ├── ctbx.vcxproj ├── ctbx.vcxproj.filters ├── ctbx │ ├── Bot.cpp │ ├── Bot.h │ ├── cards │ │ ├── Cards.cpp │ │ └── Cards.h │ ├── config │ │ ├── Config.cpp │ │ └── Config.h │ ├── image │ │ ├── Image.cpp │ │ ├── Image.h │ │ └── imageio │ │ │ ├── image_dec.c │ │ │ ├── image_dec.h │ │ │ ├── image_enc.c │ │ │ ├── image_enc.h │ │ │ ├── imageio_util.c │ │ │ ├── imageio_util.h │ │ │ ├── jpegdec.c │ │ │ ├── jpegdec.h │ │ │ ├── metadata.c │ │ │ ├── metadata.h │ │ │ ├── pngdec.c │ │ │ ├── pngdec.h │ │ │ ├── pnmdec.c │ │ │ ├── pnmdec.h │ │ │ ├── tiffdec.c │ │ │ ├── tiffdec.h │ │ │ ├── webpdec.c │ │ │ ├── webpdec.h │ │ │ ├── wicdec.c │ │ │ └── wicdec.h │ ├── localization │ │ ├── Localization.cpp │ │ └── Localization.h │ ├── logging │ │ ├── Locale.h │ │ └── Logging.h │ ├── main.cpp │ ├── stdafx.h │ ├── types │ │ └── Types.h │ ├── unifiedmessage │ │ ├── UnifiedMessage.cpp │ │ └── UnifiedMessage.h │ └── utils │ │ └── utils.h └── tgbot │ ├── Api.cpp │ ├── Api.h │ ├── Bot.h │ ├── EventBroadcaster.h │ ├── EventHandler.cpp │ ├── EventHandler.h │ ├── TgException.cpp │ ├── TgException.h │ ├── TgTypeParser.cpp │ ├── TgTypeParser.h │ ├── net │ ├── HttpClient.cpp │ ├── HttpClient.h │ ├── HttpParser.cpp │ ├── HttpParser.h │ ├── HttpReqArg.h │ ├── HttpServer.h │ ├── TgLongPoll.cpp │ ├── TgLongPoll.h │ ├── TgWebhookLocalServer.h │ ├── TgWebhookServer.h │ ├── TgWebhookTcpServer.h │ ├── Url.cpp │ └── Url.h │ ├── tgbot.h │ ├── tools │ ├── FileTools.cpp │ ├── FileTools.h │ ├── StringTools.cpp │ └── StringTools.h │ └── types │ ├── Audio.h │ ├── CallbackQuery.h │ ├── Chat.h │ ├── ChatMember.h │ ├── ChosenInlineResult.h │ ├── Contact.h │ ├── Document.h │ ├── File.h │ ├── ForceReply.h │ ├── GenericReply.h │ ├── InlineKeyboardButton.h │ ├── InlineKeyboardMarkup.h │ ├── InlineQuery.h │ ├── InlineQueryResult.cpp │ ├── InlineQueryResult.h │ ├── InlineQueryResultArticle.h │ ├── InlineQueryResultAudio.h │ ├── InlineQueryResultCachedAudio.h │ ├── InlineQueryResultCachedDocument.h │ ├── InlineQueryResultCachedGif.h │ ├── InlineQueryResultCachedMpeg4Gif.h │ ├── InlineQueryResultCachedPhoto.h │ ├── InlineQueryResultCachedSticker.h │ ├── InlineQueryResultCachedVideo.h │ ├── InlineQueryResultCachedVoice.h │ ├── InlineQueryResultContact.h │ ├── InlineQueryResultDocument.h │ ├── InlineQueryResultGame.h │ ├── InlineQueryResultGif.h │ ├── InlineQueryResultLocation.h │ ├── InlineQueryResultMpeg4Gif.h │ ├── InlineQueryResultPhoto.h │ ├── InlineQueryResultVenue.h │ ├── InlineQueryResultVideo.h │ ├── InlineQueryResultVoice.h │ ├── InputContactMessageContent.h │ ├── InputFile.cpp │ ├── InputFile.h │ ├── InputLocationMessageContent.h │ ├── InputMessageContent.h │ ├── InputTextMessageContent.h │ ├── InputVenueMessageContent.h │ ├── KeyboardButton.h │ ├── Location.h │ ├── Message.h │ ├── MessageEntity.h │ ├── PhotoSize.h │ ├── ReplyKeyboardMarkup.h │ ├── ReplyKeyboardRemove.h │ ├── ResponseParameters.h │ ├── Sticker.h │ ├── Update.h │ ├── User.h │ ├── UserProfilePhotos.h │ ├── Venue.h │ ├── Video.h │ ├── Voice.h │ └── WebhookInfo.h └── top.jogle.ctbx.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/README.md -------------------------------------------------------------------------------- /coolq-telegram-bot-x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/coolq-telegram-bot-x.sln -------------------------------------------------------------------------------- /ctbx/cqsdk/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/api.cpp -------------------------------------------------------------------------------- /ctbx/cqsdk/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/api.h -------------------------------------------------------------------------------- /ctbx/cqsdk/api_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/api_funcs.h -------------------------------------------------------------------------------- /ctbx/cqsdk/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/app.cpp -------------------------------------------------------------------------------- /ctbx/cqsdk/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/app.h -------------------------------------------------------------------------------- /ctbx/cqsdk/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/common.h -------------------------------------------------------------------------------- /ctbx/cqsdk/cqsdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/cqsdk.h -------------------------------------------------------------------------------- /ctbx/cqsdk/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/def.h -------------------------------------------------------------------------------- /ctbx/cqsdk/dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/dir.cpp -------------------------------------------------------------------------------- /ctbx/cqsdk/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/dir.h -------------------------------------------------------------------------------- /ctbx/cqsdk/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/dllmain.cpp -------------------------------------------------------------------------------- /ctbx/cqsdk/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/enums.h -------------------------------------------------------------------------------- /ctbx/cqsdk/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/event.cpp -------------------------------------------------------------------------------- /ctbx/cqsdk/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/event.h -------------------------------------------------------------------------------- /ctbx/cqsdk/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/exception.h -------------------------------------------------------------------------------- /ctbx/cqsdk/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/logging.h -------------------------------------------------------------------------------- /ctbx/cqsdk/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/menu.h -------------------------------------------------------------------------------- /ctbx/cqsdk/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/message.cpp -------------------------------------------------------------------------------- /ctbx/cqsdk/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/message.h -------------------------------------------------------------------------------- /ctbx/cqsdk/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/target.h -------------------------------------------------------------------------------- /ctbx/cqsdk/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/types.h -------------------------------------------------------------------------------- /ctbx/cqsdk/utils/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/utils/base64.cpp -------------------------------------------------------------------------------- /ctbx/cqsdk/utils/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/utils/base64.h -------------------------------------------------------------------------------- /ctbx/cqsdk/utils/binpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/utils/binpack.h -------------------------------------------------------------------------------- /ctbx/cqsdk/utils/emoji_data.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/utils/emoji_data.inc -------------------------------------------------------------------------------- /ctbx/cqsdk/utils/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/utils/function.h -------------------------------------------------------------------------------- /ctbx/cqsdk/utils/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/utils/memory.h -------------------------------------------------------------------------------- /ctbx/cqsdk/utils/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/utils/string.cpp -------------------------------------------------------------------------------- /ctbx/cqsdk/utils/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/utils/string.h -------------------------------------------------------------------------------- /ctbx/cqsdk/utils/vendor/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/utils/vendor/base64.cpp -------------------------------------------------------------------------------- /ctbx/cqsdk/utils/vendor/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/cqsdk/utils/vendor/base64.h -------------------------------------------------------------------------------- /ctbx/ctbx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx.vcxproj -------------------------------------------------------------------------------- /ctbx/ctbx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx.vcxproj.filters -------------------------------------------------------------------------------- /ctbx/ctbx/Bot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/Bot.cpp -------------------------------------------------------------------------------- /ctbx/ctbx/Bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/Bot.h -------------------------------------------------------------------------------- /ctbx/ctbx/cards/Cards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/cards/Cards.cpp -------------------------------------------------------------------------------- /ctbx/ctbx/cards/Cards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/cards/Cards.h -------------------------------------------------------------------------------- /ctbx/ctbx/config/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/config/Config.cpp -------------------------------------------------------------------------------- /ctbx/ctbx/config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/config/Config.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/Image.cpp -------------------------------------------------------------------------------- /ctbx/ctbx/image/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/Image.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/image_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/image_dec.c -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/image_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/image_dec.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/image_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/image_enc.c -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/image_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/image_enc.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/imageio_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/imageio_util.c -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/imageio_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/imageio_util.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/jpegdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/jpegdec.c -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/jpegdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/jpegdec.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/metadata.c -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/metadata.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/pngdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/pngdec.c -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/pngdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/pngdec.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/pnmdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/pnmdec.c -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/pnmdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/pnmdec.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/tiffdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/tiffdec.c -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/tiffdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/tiffdec.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/webpdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/webpdec.c -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/webpdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/webpdec.h -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/wicdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/wicdec.c -------------------------------------------------------------------------------- /ctbx/ctbx/image/imageio/wicdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/image/imageio/wicdec.h -------------------------------------------------------------------------------- /ctbx/ctbx/localization/Localization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/localization/Localization.cpp -------------------------------------------------------------------------------- /ctbx/ctbx/localization/Localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/localization/Localization.h -------------------------------------------------------------------------------- /ctbx/ctbx/logging/Locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/logging/Locale.h -------------------------------------------------------------------------------- /ctbx/ctbx/logging/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/logging/Logging.h -------------------------------------------------------------------------------- /ctbx/ctbx/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/main.cpp -------------------------------------------------------------------------------- /ctbx/ctbx/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/stdafx.h -------------------------------------------------------------------------------- /ctbx/ctbx/types/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/types/Types.h -------------------------------------------------------------------------------- /ctbx/ctbx/unifiedmessage/UnifiedMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/unifiedmessage/UnifiedMessage.cpp -------------------------------------------------------------------------------- /ctbx/ctbx/unifiedmessage/UnifiedMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/unifiedmessage/UnifiedMessage.h -------------------------------------------------------------------------------- /ctbx/ctbx/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/ctbx/utils/utils.h -------------------------------------------------------------------------------- /ctbx/tgbot/Api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/Api.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/Api.h -------------------------------------------------------------------------------- /ctbx/tgbot/Bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/Bot.h -------------------------------------------------------------------------------- /ctbx/tgbot/EventBroadcaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/EventBroadcaster.h -------------------------------------------------------------------------------- /ctbx/tgbot/EventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/EventHandler.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/EventHandler.h -------------------------------------------------------------------------------- /ctbx/tgbot/TgException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/TgException.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/TgException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/TgException.h -------------------------------------------------------------------------------- /ctbx/tgbot/TgTypeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/TgTypeParser.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/TgTypeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/TgTypeParser.h -------------------------------------------------------------------------------- /ctbx/tgbot/net/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/HttpClient.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/net/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/HttpClient.h -------------------------------------------------------------------------------- /ctbx/tgbot/net/HttpParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/HttpParser.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/net/HttpParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/HttpParser.h -------------------------------------------------------------------------------- /ctbx/tgbot/net/HttpReqArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/HttpReqArg.h -------------------------------------------------------------------------------- /ctbx/tgbot/net/HttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/HttpServer.h -------------------------------------------------------------------------------- /ctbx/tgbot/net/TgLongPoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/TgLongPoll.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/net/TgLongPoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/TgLongPoll.h -------------------------------------------------------------------------------- /ctbx/tgbot/net/TgWebhookLocalServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/TgWebhookLocalServer.h -------------------------------------------------------------------------------- /ctbx/tgbot/net/TgWebhookServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/TgWebhookServer.h -------------------------------------------------------------------------------- /ctbx/tgbot/net/TgWebhookTcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/TgWebhookTcpServer.h -------------------------------------------------------------------------------- /ctbx/tgbot/net/Url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/Url.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/net/Url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/net/Url.h -------------------------------------------------------------------------------- /ctbx/tgbot/tgbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/tgbot.h -------------------------------------------------------------------------------- /ctbx/tgbot/tools/FileTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/tools/FileTools.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/tools/FileTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/tools/FileTools.h -------------------------------------------------------------------------------- /ctbx/tgbot/tools/StringTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/tools/StringTools.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/tools/StringTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/tools/StringTools.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Audio.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/CallbackQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/CallbackQuery.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Chat.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/ChatMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/ChatMember.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/ChosenInlineResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/ChosenInlineResult.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Contact.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Document.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/File.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/ForceReply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/ForceReply.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/GenericReply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/GenericReply.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineKeyboardButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineKeyboardButton.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineKeyboardMarkup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineKeyboardMarkup.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQuery.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResult.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResult.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultArticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultArticle.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultAudio.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultCachedAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultCachedAudio.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultCachedDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultCachedDocument.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultCachedGif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultCachedGif.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultCachedMpeg4Gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultCachedMpeg4Gif.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultCachedPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultCachedPhoto.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultCachedSticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultCachedSticker.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultCachedVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultCachedVideo.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultCachedVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultCachedVoice.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultContact.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultDocument.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultGame.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultGif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultGif.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultLocation.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultMpeg4Gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultMpeg4Gif.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultPhoto.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultVenue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultVenue.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultVideo.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InlineQueryResultVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InlineQueryResultVoice.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InputContactMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InputContactMessageContent.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InputFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InputFile.cpp -------------------------------------------------------------------------------- /ctbx/tgbot/types/InputFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InputFile.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InputLocationMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InputLocationMessageContent.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InputMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InputMessageContent.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InputTextMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InputTextMessageContent.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/InputVenueMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/InputVenueMessageContent.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/KeyboardButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/KeyboardButton.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Location.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Message.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/MessageEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/MessageEntity.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/PhotoSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/PhotoSize.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/ReplyKeyboardMarkup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/ReplyKeyboardMarkup.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/ReplyKeyboardRemove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/ReplyKeyboardRemove.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/ResponseParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/ResponseParameters.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Sticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Sticker.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Update.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/User.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/UserProfilePhotos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/UserProfilePhotos.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Venue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Venue.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Video.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/Voice.h -------------------------------------------------------------------------------- /ctbx/tgbot/types/WebhookInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/ctbx/tgbot/types/WebhookInfo.h -------------------------------------------------------------------------------- /top.jogle.ctbx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JogleLew/coolq-telegram-bot-x/HEAD/top.jogle.ctbx.json --------------------------------------------------------------------------------