Author Topic: Function listing ?  (Read 4286 times)

webspy

  • Guest
Function listing ?
« on: April 14, 2006, 02:04:21 pm »
Is there any function listing feature in Code Blocks ? I mean, is it possible to display the function header after  "(" (writing "CreateWindowEx(" will display the function header) ?

sethjackson

  • Guest
Re: Function listing ?
« Reply #1 on: April 14, 2006, 05:53:01 pm »
Is there any function listing feature in Code Blocks ? I mean, is it possible to display the function header after  "(" (writing "CreateWindowEx(" will display the function header) ?

Uhh you mean the function parameters? Then yes. I think you need AutoComplete enabled, and maybe CodeCompletion......

Offline TDragon

  • Lives here!
  • ****
  • Posts: 943
    • TDM-GCC
Re: Function listing ?
« Reply #2 on: April 14, 2006, 06:51:39 pm »
Is there any function listing feature in Code Blocks ?
Yes.
Quote
I mean, is it possible to display the function header after  "("
Yes.
Quote
(writing "CreateWindowEx(" will display the function header) ?
No.

The code completion parser is a work-in-progress, and as such will not yet magically handle macros like CreateWindowEx and 90% of the rest of the Win32 API. For your own simple functions it will usually work.
https://jmeubank.github.io/tdm-gcc/ - TDM-GCC compiler suite for Windows (GCC 9.2.0 2020-03-08, 32/64-bit, no extra DLLs)

webspy

  • Guest
Re: Function listing ?
« Reply #3 on: April 14, 2006, 11:34:38 pm »
I'm a beginner in Win32 programming and code/function completion would help me very much. So is there any other way to make it easier for me to program using CodeBlocks ?

sethjackson

  • Guest
Re: Function listing ?
« Reply #4 on: April 14, 2006, 11:42:12 pm »
I'm a beginner in Win32 programming and code/function completion would help me very much. So is there any other way to make it easier for me to program using CodeBlocks ?

1. Use wxWidgets (cross-platform GUI toolkit).  :D

http://www.wxwidgets.org/

2. MSDN might help you with Win32 API calls.

http://msdn.microsoft.com/library/

3. Wait for code completion to be finished.