snippets / outputdebugstring

All snippets tagged outputdebugstring (1)

  1. [Win32] OutputDebugString with printf formating

    Use OutputDebugString with printf formating

     1 void DebugDisplayFmt( const char *str, ... ) 
    2 {
    3 char buf[2048];
    4
    5 va_list ptr;
    6 va_start(ptr,str);
    7 vsprintf(buf,str,ptr);
    8
    9 ::OutputDebugString( buf );
    10 }
    11
    12 //Use
    13 int value = 123;
    14 DebugDisplayFmt( "in %s(%d) : val = %d\n", __FILE__, __LINE__, value );
    Posted by themadmax to c++ outputdebugstring printf format variable ... saved by 1 person ... 0 comments ... 5 months, 3 weeks
showing 10, 25, 50 items per pages

Pages : 1

Flux RSS friendsnippetLatest snippets


More...