mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 22:21:09 +03:00
30 lines
516 B
D
30 lines
516 B
D
|
|
/**
|
|
* C's <stdio.h> for the D programming language
|
|
* Authors: Walter Bright, Digital Mars, http://www.digitalmars.com
|
|
* License: Public Domain
|
|
* Macros:
|
|
* WIKI=Phobos/StdCStdio
|
|
*/
|
|
|
|
|
|
|
|
module std.c.stdio;
|
|
|
|
public import core.stdc.stdio;
|
|
|
|
extern (C):
|
|
|
|
version (Windows)
|
|
{
|
|
extern shared ubyte[_NFILE] __fhnd_info;
|
|
|
|
enum
|
|
{
|
|
FHND_APPEND = 0x04,
|
|
FHND_DEVICE = 0x08,
|
|
FHND_TEXT = 0x10,
|
|
FHND_BYTE = 0x20,
|
|
FHND_WCHAR = 0x40,
|
|
}
|
|
}
|