01-13-2015 05:52 PM
I use the makepathname() function found in utility.h, which I did include at the top at my code, and have shown in my list of .h files.
Also, Options>>Build Options...>>Require function prototypes is also checked.
However, I keep getting this error: error: implicit declaration of function 'MakePathName' is invalild in C99. Make sure that you include the function prototype. I need help with this.
Solved! Go to Solution.
01-13-2015 11:45 PM
Check for upper case typos. The function ist called MakePathname ( not makepathname or MakePathName) .
01-13-2015 11:51 PM
Another suggestion is to look at the sample userint\custctrl\hyperlinkctrl\simple.cws - it builds fine and should also work on your computer. If so, you can check the differences...
01-14-2015 08:38 AM
Thank you so much. It is a typo.