summaryrefslogtreecommitdiff
path: root/samples/inline-keyboard/src
diff options
context:
space:
mode:
authorOleg Morozenkov <reo7sp@users.noreply.github.com>2017-01-26 00:32:22 +0300
committerOleg Morozenkov <reo7sp@users.noreply.github.com>2017-01-26 00:32:22 +0300
commit85e0e991973594fb458410876a1cc09c5971b918 (patch)
tree08186c9e9f58cdb617b9b63d583f535b1c884b72 /samples/inline-keyboard/src
parent3549754e53f79e9ba0b00fb0bbded5d56a14ef51 (diff)
Helper method for loading files. Photo upload example. Fixes #24
Diffstat (limited to 'samples/inline-keyboard/src')
-rw-r--r--samples/inline-keyboard/src/main.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/samples/inline-keyboard/src/main.cpp b/samples/inline-keyboard/src/main.cpp
index 4e6fb21..440f965 100644
--- a/samples/inline-keyboard/src/main.cpp
+++ b/samples/inline-keyboard/src/main.cpp
@@ -10,11 +10,6 @@ using namespace TgBot;
bool sigintGot = false;
int main() {
- signal(SIGINT, [](int s) {
- printf("SIGINT got");
- sigintGot = true;
- });
-
Bot bot("PLACE YOUR TOKEN HERE");
// Thanks Pietro Falessi for code
@@ -40,6 +35,10 @@ int main() {
}
});
+ signal(SIGINT, [](int s) {
+ printf("SIGINT got");
+ sigintGot = true;
+ });
try {
printf("Bot username: %s\n", bot.getApi().getMe()->username.c_str());