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.
|
|
|
|
|
|
|
|
#ifndef ATOM_APP_NODE_MAIN_H_
|
|
|
|
#define ATOM_APP_NODE_MAIN_H_
|
|
|
|
|
2018-01-23 23:17:15 +00:00
|
|
|
#ifdef ENABLE_RUN_AS_NODE
|
|
|
|
|
2015-03-13 00:03:16 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
int NodeMain(int argc, char* argv[]);
|
2015-03-13 00:03:16 +00:00
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2018-01-23 23:17:15 +00:00
|
|
|
#endif // ENABLE_RUN_AS_NODE
|
|
|
|
|
2015-03-13 00:03:16 +00:00
|
|
|
#endif // ATOM_APP_NODE_MAIN_H_
|