Hi,
I am new to Code::Blocks. I tried to find the answer to my questions but i think it's too precise for the search engine to find proper answers.
I have two questions:
- When i type the beginning of a function name, the list of possible functions appears. If i continue typing the end of the function name then "(", the help on function parameters appears. This is what i want. However sometime when i make use of the completion by pressing TAB or ENTER, Code::Blocks automatically completes the function name then adds "()", and the function parameters help doesn't appear. I have to erase the "(" in order to have the help. Are there any condition for that help to appear?
- In the below code:
LRESULT CALLBACK WindowProc(HWND hWnd,
UINT message,
WPARAM wParam,
LPARAM lParam);
#define WindowProcDefined WindowProc
When i type the WindowProc function name, i get the function parameters help.
When i type the WindowProcDefined function name i don't get the function parameters help.
Is there a way to activate the function parameters help even when i call it through a define?
Thanks in advance for your help.