mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
25 lines
251 B
C++
25 lines
251 B
C++
/*
|
|
** Virtual I/O library for Windows named pipes
|
|
** Written by Monty
|
|
*/
|
|
|
|
|
|
#ifdef __WIN32__
|
|
#include "vio-global.h"
|
|
|
|
#ifdef __GNUC__
|
|
#pragma implementation // gcc: Class implementation
|
|
#endif
|
|
|
|
VIO_NS_BEGIN
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
VIO_NS_END
|
|
|
|
#endif /* WIN32 */
|