Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- CA-Clipper 5.2 . Error Messages - <b>c1005 redefinition or duplicate definition of #define</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C1005   Redefinition or duplicate definition of #define

     Explanation:  You have attempted to #define an identifier that is
     already defined.  This happens when you redefine an identifier without
     first undefining it with #undef.  This problem can occur because you
     simply omitted the #undef directive, an unintended side effect of
     including a header file that defined the same identifier, or
     architectural problems in the use of #define directives in the current
     program file (.prg).

     Action:  Check first to see if you intended to redefine the
     specified identifier.  If you did, add a #undef directive above the
     #define directive.  If this is not the source of the problem, check to
     see if the identifier was first defined or redefined in any header file
     used by the current program file (.prg).

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson