Function.cpp 265 B

1234567891011121314
  1. #include "stdafx.h"
  2. #include "Function.h"
  3. SKINUI_CLASS void WINAPI OutputString(LPCTSTR lpStr, ...)
  4. {
  5. CString StrDes;
  6. va_list argList;
  7. va_start( argList, lpStr );
  8. StrDes.FormatV( lpStr, argList );
  9. va_end( argList );
  10. OutputDebugString(StrDes);
  11. }