Need help!!

Posts 13 of 3 · Page 1 of 1
Need help!!
Intro: been taking C++ for a few months so i have some knowledge pretty basic.

first off the /OPT:NOWIN98 ive tried /FORCE:MULTIPULE

im using the latest SDK (june 2010) and VC++ 2008

i need help this will not compile due to 9 error(s), 3 warning(s)

any help would be great!!!

Code:
Linking...
d3dbase.obj : warning LNK4229: invalid directive '/OPT:NOWIN98' encountered; ignored
d3dfont9.obj : error LNK2005: "public: long __thiscall CD3DFont::DrawTextA(float,float,unsigned long,char const *,unsigned long)" (?DrawTextA@CD3DFont@@QAEJMMKPBDK@Z) already defined in d3dbase.obj
d3dfont9.obj : error LNK2005: "public: long __thiscall CD3DFont::GetTextExtent(char const *,struct tagSIZE *)" (?GetTextExtent@CD3DFont@@QAEJPBDPAUtagSIZE@@@Z) already defined in d3dbase.obj
d3dfont9.obj : error LNK2005: "public: long __thiscall CD3DFont::DeleteDeviceObjects(void)" (?DeleteDeviceObjects@CD3DFont@@QAEJXZ) already defined in d3dbase.obj
d3dfont9.obj : error LNK2005: "public: long __thiscall CD3DFont::InvalidateDeviceObjects(void)" (?InvalidateDeviceObjects@CD3DFont@@QAEJXZ) already defined in d3dbase.obj
d3dfont9.obj : error LNK2005: "public: long __thiscall CD3DFont::RestoreDeviceObjects(void)" (?RestoreDeviceObjects@CD3DFont@@QAEJXZ) already defined in d3dbase.obj
d3dfont9.obj : error LNK2005: "public: long __thiscall CD3DFont::InitDeviceObjects(struct IDirect3DDevice9 *)" (?InitDeviceObjects@CD3DFont@@QAEJPAUIDirect3DDevice9@@@Z) already defined in d3dbase.obj
d3dfont9.obj : error LNK2005: "public: __thiscall CD3DFont::~CD3DFont(void)" (??1CD3DFont@@QAE@XZ) already defined in d3dbase.obj
d3dfont9.obj : error LNK2005: "public: __thiscall CD3DFont::CD3DFont(char const *,unsigned long,unsigned long)" (??0CD3DFont@@QAE@PBDKK@Z) already defined in d3dbase.obj
d3dmenu.obj : warning LNK4229: invalid directive '/OPT:NOWIN98' encountered; ignored
hackbase.obj : warning LNK4229: invalid directive '/OPT:NOWIN98' encountered; ignored
is the project set to use multi-byte character set?
Your missing the functions you have defined in your class...
Posts 13 of 3 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?