///////////////////////////////////////////////////////////////////////////////
//  LFormat.h

#ifndef __LFORMAT_H__
#define __LFORMAT_H__

#include <string>

namespace LFormat {
	std::string __cdecl		Make(const char* pszFormat, ...);
}

#endif // __LFORMAT_H__

