?? auxiliary.cpp
字號:
//------------------------------------------------------------------------------
// File: Auxiliary.cpp
//
// Desc: Useful auxiliaries for the Win32 Application.
//
// Author : JiyoungShin(idon.shin@samsung.com)
//
// Copyright 2007 Samsung System LSI, All rights reserved.
//------------------------------------------------------------------------------
#include "stdafx.h"
#ifdef _DEBUG
#include <stdio.h>
#include <assert.h>
void TRACE(LPCTSTR lpszFormat, ...)
{
va_list args ;
va_start(args, lpszFormat) ;
int nBuf ;
TCHAR szBuffer[1024] ; // Large buffer for very long filenames (like with HTTP)
nBuf = vsprintf(szBuffer, lpszFormat, args) ;
// was there an error? was the expanded string too long?
assert(nBuf >= 0) ;
va_end(args) ;
}
#else
void TRACE(LPCTSTR lpszFormat, ...)
{
// TODO: Place code here.
}
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -