2015-03-13 00:03:16 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_APP_NODE_MAIN_H_
|
|
|
|
#define ELECTRON_SHELL_APP_NODE_MAIN_H_
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
int NodeMain(int argc, char* argv[]);
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_APP_NODE_MAIN_H_
|