| 493 | } |
| 494 | |
| 495 | void SendLocation(SendAction action, float64 lat, float64 lon) { |
| 496 | SendSimpleMedia( |
| 497 | action, |
| 498 | MTP_inputMediaGeoPoint( |
| 499 | MTP_inputGeoPoint( |
| 500 | MTP_flags(0), |
| 501 | MTP_double(lat), |
| 502 | MTP_double(lon), |
| 503 | MTPint()))); // accuracy_radius |
| 504 | } |
| 505 | |
| 506 | void SendVenue(SendAction action, Data::InputVenue venue) { |
| 507 | SendSimpleMedia( |
no test coverage detected