[MSVCRT][CRT]: Improvements/fixes over popen(), from Wine code and ported by Andreas...
[reactos.git] / reactos / sdk / lib / crt / include / internal / popen.h
1 #ifndef __CRT_INTERNAL_POPEN_H
2 #define __CRT_INTERNAL_POPEN_H
3
4 #ifndef _CRT_PRECOMP_H
5 #error DO NOT INCLUDE THIS HEADER DIRECTLY
6 #endif
7
8 struct popen_handle {
9 FILE *f;
10 HANDLE proc;
11 };
12 extern struct popen_handle *popen_handles;
13 extern DWORD popen_handles_size;
14
15 #endif