mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
16 lines
276 B
C
16 lines
276 B
C
|
#ifndef __CRT_INTERNAL_POPEN_H
|
||
|
#define __CRT_INTERNAL_POPEN_H
|
||
|
|
||
|
#ifndef _CRT_PRECOMP_H
|
||
|
#error DO NOT INCLUDE THIS HEADER DIRECTLY
|
||
|
#endif
|
||
|
|
||
|
struct popen_handle {
|
||
|
FILE *f;
|
||
|
HANDLE proc;
|
||
|
};
|
||
|
extern struct popen_handle *popen_handles;
|
||
|
extern DWORD popen_handles_size;
|
||
|
|
||
|
#endif
|