Guest User

Untitled

a guest
Jan 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. void DebugPrint(LPCTSTR lpctFormat, ...)
  2. {
  3. va_list va;
  4. va_start(va, lpctFormat);
  5.  
  6. boost::scoped_array<TCHAR> lptszBuffer(new TCHAR[4096]);
  7.  
  8. _vstprintf(lptszBuffer.get(), lpctFormat, va);
  9.  
  10. va_end(va);
  11. OutputDebugString(lptszBuffer.get());
  12. }
Add Comment
Please, Sign In to add comment