Do away with LPCTSTR. (We're not making a Unicode build, and if

we were it's not being used everywhere it would need to be.  If we want
Unicode support, that's probably not the way to do it anyway ...)
This commit is contained in:
Glenn Maynard
2002-08-28 07:04:52 +00:00
parent 6c6b50ac6b
commit f8916ab31d
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -17,7 +17,7 @@
#pragma comment(lib, "DxErr8.lib")
RageException::RageException( LPCTSTR fmt, ...)
RageException::RageException( const char *fmt, ...)
{
va_list va;
va_start(va, fmt);
@@ -28,7 +28,7 @@ RageException::RageException( LPCTSTR fmt, ...)
#endif
}
RageException::RageException( HRESULT hr, LPCTSTR fmt, ...)
RageException::RageException( HRESULT hr, const char *fmt, ...)
{
va_list va;
va_start(va, fmt);