-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.h
27 lines (22 loc) · 1 KB
/
main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//============================================================================
// Mini Spin-X Library
//
// Copyright (c) 2024, Jarkko Lempiainen
// All rights reserved.
//============================================================================
#ifndef PFC_CORE_MAIN_H
#define PFC_CORE_MAIN_H
//----------------------------------------------------------------------------
//============================================================================
// interface
//============================================================================
#include "sxp_src/core/core.h"
#include PFC_STR(PFC_CAT2(sxp_src/platform/PFC_PLATFORM_SRC_STR/core/PFC_PLATFORM_SRC_STR, _main.h)) // expands to e.g. "sxp_src/platform/win/core/win_main.h"
namespace pfc
{
// new
int entry(const char *args_[], unsigned num_args_);
//----------------------------------------------------------------------------
//============================================================================
} // namespace pfc
#endif