Here is my code:
static pascal OSErr
AEOpenDocumentsHandler(const AppleEvent* event, AppleEvent* reply, long handlerRefcon)
{
...
QuitApplicationEventLoop();
}
int main(int argc, char *argv[])
{
...
RunApplicationEventLoop();
...
}
But when I compile the program, I get next error: Undefined symbols: "_QuitApplicationEventLoop", referenced from: _main in main.o. I look to the header file, RunApplicationEventLoop() and QuitApplicationEventLoop() defined under each other, but compiler can't find QuitApplicationEventLoop(). Can anyone tell me, why I get this error?
I also try next:
int main(int argc, char *argv[])
{
...
RunApplicationEventLoop();
QuitApplicationEventLoop();
...
}
But I still have the same error.
P.S.
Error text from second variant.
Thanks.