If you are using the win32 api use this page to find information about the functions
MSDN: Microsoft Developer Network
The function CreateWindow()
Quote:
HWND CreateWindow(
LPCTSTR lpClassName,
LPCTSTR lpWindowName,
DWORD dwStyle,
int x,
int y,
int nWidth,
int nHeight,
HWND hWndParent,
HMENU hMenu,
HINSTANCE hInstance,
LPVOID lpParam
);
|
In this link you will find the description about function and the parameters
CreateWindow Function ()