2015-03-12 17:03:16 -07: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 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_APP_NODE_MAIN_H_
|
|
|
|
#define ELECTRON_SHELL_APP_NODE_MAIN_H_
|
2015-03-12 17:03:16 -07:00
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
2018-04-17 21:44:10 -04:00
|
|
|
int NodeMain(int argc, char* argv[]);
|
2015-03-12 17:03:16 -07:00
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_APP_NODE_MAIN_H_
|