Added dummy entry poll for all platforms.
This commit is contained in:
parent
fec7dcdee3
commit
b9e9fb77cc
4 changed files with 44 additions and 0 deletions
examples/common
|
@ -11,6 +11,17 @@
|
|||
#include <alloca.h>
|
||||
#include <setjmp.h>
|
||||
|
||||
#include "entry.h"
|
||||
|
||||
namespace entry
|
||||
{
|
||||
Event::Enum poll()
|
||||
{
|
||||
return Event::Nop;
|
||||
}
|
||||
|
||||
} // namespace entry
|
||||
|
||||
extern int _main_(int _argc, char** _argv);
|
||||
|
||||
static jmp_buf s_main;
|
||||
|
|
Reference in a new issue