mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
16 lines
281 B
C
16 lines
281 B
C
|
/*
|
||
|
* COPYRIGHT: See COPYING in the top level directory
|
||
|
* PROJECT: ReactOS HTTP Daemon
|
||
|
* FILE: include/error.h
|
||
|
*/
|
||
|
#ifndef __ERROR_H
|
||
|
#define __ERROR_H
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
#define TS(x) (LPTSTR)TEXT(x)
|
||
|
|
||
|
void ReportErrorStr(LPTSTR lpsText);
|
||
|
|
||
|
#endif /* __ERROR_H */
|