blob: 9ece6a1a6a727589d5b0ba07583e0e809c7c0ad9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// NSObject_llappviewermacosx_objc.h
// SecondLife
//
// Created by Geenz on 12/16/12.
//
//
#include <boost/tr1/functional.hpp>
typedef std::tr1::function<void()> VoidCallback;
typedef void* ViewerAppRef;
int createNSApp(int argc, const char **argv);
bool initViewer();
void handleQuit();
bool runMainLoop();
void initMainLoop();
void destroyMainLoop();
|