Bug 1943650 - Command-line --help output misformatted after --dbus-service. r=emilio
[gecko.git] / toolkit / components / remote / nsWinRemoteClient.h
blob952565c31916e35fe8f3e5241143df8d1a6144a4
1 /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:expandtab:shiftwidth=4:tabstop=4:
3 */
4 /* This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #ifndef nsWinRemoteClient_h__
9 #define nsWinRemoteClient_h__
11 #include "nscore.h"
12 #include "nsRemoteClient.h"
14 class nsWinRemoteClient : public nsRemoteClient {
15 public:
16 virtual ~nsWinRemoteClient() = default;
18 nsresult Init() override;
20 nsresult SendCommandLine(const char* aProgram, const char* aProfile,
21 int32_t argc, const char** argv,
22 bool aRaise) override;
25 #endif // nsWinRemoteClient_h__