command_line_args.h 416 B

12345678910111213141516
  1. // Copyright (c) 2018 GitHub, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef SHELL_APP_COMMAND_LINE_ARGS_H_
  5. #define SHELL_APP_COMMAND_LINE_ARGS_H_
  6. #include "base/command_line.h"
  7. namespace electron {
  8. bool CheckCommandLineArguments(int argc, base::CommandLine::CharType** argv);
  9. } // namespace electron
  10. #endif // SHELL_APP_COMMAND_LINE_ARGS_H_