8 lines
109 B
C++
8 lines
109 B
C++
#ifndef _PRINT_HPP_
|
|
#define _PRINT_HPP_
|
|
|
|
void print(LPCSTR fmt, ...);
|
|
void printW(LPCWSTR fmt, ...);
|
|
|
|
#endif
|