Im writing a program for win32 console using the dev-bloodsehd compiler.

i need the console to open at a bigger size then default (so ascii art can be correctly displayed).

I searched here, and found a thread saying to use SetWindowPos() for this, but no other info on the code. I googled it and didnt find anything helpful there either. I did find this line of code though it didn't work:

Code:
SetWindowPos(SELF:handle(), HWND_TOP, liX,liY, 0, 0, _Or(SWP_NOSIZE))
How does this function work(meanig parameters/arguments and what they mean), and what is the exact code for it?