blob: e4895272c048525929175fe8661806280ba9ca69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
ipstdiowin.h
Interface for perl stdio functions
*/
#ifndef __Inc__IPerlStdIOWin___
#define __Inc__IPerlStdIOWin___
#include <ipstdio.h>
class IPerlStdIOWin : public IPerlStdIO
{
public:
virtual int OpenOSfhandle(long osfhandle, int flags) = 0;
virtual int GetOSfhandle(int filenum) = 0;
};
#endif /* __Inc__IPerlStdIOWin___ */
|