Pelles C > Add-ins

Function prototype add-in

<< < (2/3) > >>

migf1:
2 thumbs up!

CLR:
Hello. I'm getting strange errors with poide.exe (doesn't exit), I guess it is related to the key shortcut "F12" I have put in the add-in. If you're having the same problem you can remove the WANT_SHORTCUT symbol from the pre-processor and then recompile the project.

Finally, the parser may get confused if the code is like this..


--- Code: ---
int foo(int bar){
...code...
}

--- End code ---


or


--- Code: ---
int foo(int
   bar){
...code...
}

--- End code ---


It works fine in most cases if the code is like this

--- Code: ---
int foo(int bar)
{
...code...
}

--- End code ---



migf1:
Thanks :)

ps.. sorry for my English.

Anonymous:

--- Quote from: "CLR" ---Hello. I'm getting strange errors with poide.exe (doesn't exit), I guess it is related to the key shortcut "F12" I have put in the add-in.
--- End quote ---


That's probably because POIDE already uses F12 to find matching braces.

CLR:

--- Quote from: "ldblake" ---
--- Quote from: "CLR" ---Hello. I'm getting strange errors with poide.exe (doesn't exit), I guess it is related to the key shortcut "F12" I have put in the add-in.
--- End quote ---


That's probably because POIDE already uses F12 to find matching braces.
--- End quote ---


Hello ldblake. Thanks!

There is another update.

2005-05-28  - new key VK_F6
            - bugfix in parser
            ******************************************
                #directive blabla // comment
                void foo(void)                
                {
                }
            ******************************************
            function foo missing

EDIT:
Get the latest version in
http://www.johnfindlay.plus.com/pellesc/index.html
Thanks.

RJP Computing:
Nice work!
 =D>  =D>  =D>  =D>
I use this everyday. It is so helpful to just program the functions and then use your Addin to make my .h file.

Thanks!

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version