Thanks Paul,
but these articles do not provide an answer, at least I fail to recognise it.
Some API functions require data structures, declarations of which are included in header files.
Example:
typedef struct 16 tagWNDCLASS
{
UINT style;
LONG ( WIN *lpfnWndProc)();
win_int cbClsExtra;
win_int cbWndExtra;
HINSTANCE hInstance;
HICON hIcon;
HCURSOR hCursor;
HBRUSH hbrBackground;
LPCSTR lpszMenuName;
LPCSTR lpszClassName;
} WNDCLASS;
As we need the same derived types to operate API, my question is, if there are includefiles, modules or whatever that may be introduced into my project to declare all these ? Or am I required to define each and every struct that I will need for myself ??
Norbert
Norbert