Hello,
The errors are because of double declarations.
You should make sure that register declarations are #include only once.
The file #included should have
#ifndef XXXXXXX
#define XXXXXXX
code
#endif
in order to avoid double declaration.
Also, you may be able to pass linking by compiling in a certain order, but it's not a clean job.
Cheers,
Alban.
Message Edited by Alban on
2007-05-23 03:47 PM