Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
That error is from the linker, not the compiler. – Peter Hosey May 21 '12 at 10:01
How I can to fix that? – Lexandr May 21 '12 at 13:03
No idea. They're both in the same framework and both 32-bit only, so you should get an error about either both of them or neither of them. – Peter Hosey May 21 '12 at 22:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.