1. The code lives in a library
2. The library that it lives in does not include the main() function because that will be in the users code.
3. The users code in this case is wxWindows based and so the main() function isn't actually written by the user anyway, but this is a side-issue and I don't want the library to assume that the user is wxWindows-based
4. There is no main() function available for the user to customize. This means that there is no main() function, so how can the user store the argv[] somewhere?
6. But I need to have available for my part of code all the command line arguments
Some Ideas ?