SDK Help

Zebra 9

Emperor
Joined
May 17, 2006
Messages
1,554
Location
Middle of Cyberspace
Ok, as alot of you know I have been working on a name changer sort of thing. Well I keep getting errors (Probably 30, ask cotdamn:lol:). So I finally decided to ask for help. Here is the code. Thanks for any help.:goodjob:
 
Here is the latest error:
Code:
CvPlayer.cpp(2031) : error C2440: '=' : cannot convert from 'wchar' to 'wchar *'
        Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
Process terminated with status 1 (2 minutes, 20 seconds)
1 errors, 0 warnings
Like I said there where a ton of errors after about a month of work.
 
Try the following changes:

CvPlayer.cpp

Code:
void CvPlayer::setName (wchar* name)

CvPlayer.h

Code:
	DllExport void setName(wchar* name);

CyPlayer.cpp

Code:
void CyPlayer::setName(wchar* name)

CyPlayer.h

Code:
	void setName(wchar* name);
 
Back
Top Bottom