1
0
Fork 0

[Docs] Add note about console wrapper to `get_stdin_type`.

This commit is contained in:
Pāvels Nadtočajevs 2025-04-02 13:55:06 +03:00
parent c7ea8614d7
commit ce2d0ac62f
No known key found for this signature in database
GPG Key ID: 8413210218EF35D2
1 changed files with 4 additions and 0 deletions

View File

@ -472,18 +472,22 @@
<return type="int" enum="OS.StdHandleType" />
<description>
Returns type of the standard error device.
[b]Note:[/b] This method is implemented on Linux, macOS, and Windows.
</description>
</method>
<method name="get_stdin_type" qualifiers="const">
<return type="int" enum="OS.StdHandleType" />
<description>
Returns type of the standard input device.
[b]Note:[/b] This method is implemented on Linux, macOS, and Windows.
[b]Note:[/b] On exported Windows builds, run the console wrapper executable to access the standard input. If you need a single executable with full console support, use a custom build compiled with the [code]windows_subsystem=console[/code] flag.
</description>
</method>
<method name="get_stdout_type" qualifiers="const">
<return type="int" enum="OS.StdHandleType" />
<description>
Returns type of the standard output device.
[b]Note:[/b] This method is implemented on Linux, macOS, and Windows.
</description>
</method>
<method name="get_system_ca_certificates">