|
From: Tor L. <tm...@ik...> - 2010-10-28 08:27:09
|
Your initial mail used the word "method", does that mean you are using C++, and that the entry point you want to use is in fact a method in a class? Hopefully at least a static method, otherwise it wouldn't make any sense, would it? Anyway, using C++ for an entry point sounds like a crazy idea to me. But I am not a C++ person. You might need to use the mangled name then in the linker option, or use extern "C" around your OmegaStartup, or something. But anyway, there might be even more complications if you use C++. (Even if you use just C, various things might break if you try to override the default entry point. You really need to know what you are doing. That you have to ask these questions indicates that you don't.) --tml |