can dll have a dos windows

what means for console??

can dll have a dos windows? -->int main(int argc, char *argv[])

is it essential for dos windows program to have (int argc, char *argv[] ) this two variables?

and what is the function of this 2 variables?

thanks
A library doesn't have an entry point
argc is the number of the arguments passed to your program, argv are the values of these arguments stored as array of C strings, they can be omitted: int main()
The console window and DOS are different things
thanks for your reply
i think i still have a long way to windows 32 picture user interface
Topic archived. No new replies allowed.