Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / desktop / source / minidump / minidump_upload.cxx
blob15af2643076422aff85f03f38fb152b596455b78
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include <desktop/minidump.hxx>
12 #include <iostream>
13 #include <string>
15 int main(int argc, char** argv)
17 if (argc < 2)
19 std::cerr << "minidump_upload path_to_ini_file" << std::endl;
20 return EXIT_FAILURE;
23 std::string iniPath(argv[1]);
24 std::string response;
25 if (!crashreport::readConfig(iniPath, &response))
26 return EXIT_FAILURE;
28 std::cout << "Response: " << response << std::endl;
29 return EXIT_SUCCESS;
32 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */