This works:

int main( int argc, char *argv[])
{
....
gtk_init(&argc, &argv);
....

But this doesn't:

int WINAPI WinMain (HINSTANCE p1, HINSTANCE p2, LPSTR argv, int argc) { 
....
gtk_init(&argc, &argv);
....

Can someone point out what's wrong there?

link|improve this question

49% accept rate
What's the error? Compile time? What is the signature of gtk_init()? – Mitch Wheat May 2 '10 at 10:51
gtk_init() works in the first example. – user198729 May 2 '10 at 10:53
feedback

1 Answer

WinMain does not provide you with argc and argv - see http://msdn.microsoft.com/en-us/library/ms633559%28VS.85%29.aspx. You get the command line as a single string (the third parameter) which you have to parse yourself.

link|improve this answer
1  
Oh,that's awful to have to parse myself. – user198729 May 2 '10 at 11:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.