diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-07 10:53:45 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-08 07:07:09 +0200 |
commit | 9d184e2cc9a9a78a61ae9b91a66e1153f778d9a4 (patch) | |
tree | 0188444ac87406bdee5e0e35948180a745fe690a /onlineupdate | |
parent | a5cda5603c3f71851a987c24d36433ce269c66f8 (diff) |
updater: add include guard for windows process start code
Change-Id: If021a92163381f2221faa1c7121f6c4af2d51dcf
Reviewed-on: https://gerrit.libreoffice.org/40836
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'onlineupdate')
-rw-r--r-- | onlineupdate/inc/winhelper/windowsStart.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/onlineupdate/inc/winhelper/windowsStart.hxx b/onlineupdate/inc/winhelper/windowsStart.hxx index e34e7d15ca22..7a9d54a506f2 100644 --- a/onlineupdate/inc/winhelper/windowsStart.hxx +++ b/onlineupdate/inc/winhelper/windowsStart.hxx @@ -3,6 +3,9 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#ifndef INCLUDED_ONLINEUPDATE_INC_WINSTART_HXX +#define INCLUDED_ONLINEUPDATE_INC_WINSTART_HXX + #ifdef _WIN32 #include <windows.h> #endif @@ -19,3 +22,5 @@ WinLaunchChild(const wchar_t *exePath, int argc, HANDLE *hProcess = nullptr); wchar_t* MakeCommandLine(int argc, WCHAR **argv); + +#endif |