line 5: Declaration syntax error
line 59: function containing do are not expanded inline
line 153: function containing while are not expanded inline
line 218: declaration terminated incorrectly

Recommended Answers

All 2 Replies

I removed the link to your Google Drive because it requires permission to access it, and we require content to be here on DaniWeb. Please post your code here in the forums for everyone to see so we can help you.

What I would look for causes:

1) header file syntax 
2) A semi-colon ; error
   e.g.,
      void install();
    {
    }
   e.g.,
    excuses[y=5]=excuses[y]

3) You have a function that is conflicting with another function.
  e.g.,
   void install()
    {
   void uninstall()
{
   }
}

4) There is a } bracket missing or in the wrong spot.
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.