16 lines
312 B
C
16 lines
312 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#ifdef __cplusplus // If used by C++ code,
|
|
extern "C" {
|
|
// we need to export the C interface
|
|
#endif
|
|
|
|
void RemoveTailLineBreak(TCHAR* pInputStr, int strSize);
|
|
int RunPipeCmd(TCHAR* pszCmd, TCHAR* pszResultBuffer, int dwResultBufferSize);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|