ページの改善
いますぐフォークしてオンライン編集し、このページのプルリクエストを送信します。
Github へのログインが必要です。 これは小さな変更に適しています。
大きな変更を加えたい場合は、通常の cloneの使用をお勧めします。
日本語版について
個人的な学習のために、dlang.orgを翻訳したサイトです。
翻訳に際して、様々なサイトを参考にしています。
std.windows.syserror
Convert Win32 error code to string.
License:
Authors:
Credits Based on code written by Regan Heath
- @trusted string
sysErrorString
(DWORDerrCode
, intlangId
= LANG_NEUTRAL, intsubLangId
= SUBLANG_DEFAULT); - Query the text for a Windows error code, as returned by GetLastError, as a D string.
- class
WindowsException
: object.Exception; - Thrown if errors that set GetLastError occur.
- final @property DWORD
code
(); - GetLastError's return value.
- @safe T
wenforce
(T, S)(Tvalue
, lazy Smsg
= null, stringfile
= __FILE__, size_tline
= __LINE__)
if (isSomeString!S); - If !!
value
is true,value
is returned. Otherwise, new WindowsException(GetLastError(), msg) is thrown. WindowsException assumes that the last operation set GetLastError() appropriately.Example
wenforce(DeleteFileA("junk.tmp"), "DeleteFile failed");
Copyright © 1999-2022 by the D Language Foundation | Page generated by
Ddoc on Wed Nov 23 08:34:06 2022