@@ -32,6 +32,7 @@ pub type DWORD = c_ulong;
32
32
pub type HANDLE = LPVOID ;
33
33
pub type HINSTANCE = HANDLE ;
34
34
pub type HMODULE = HINSTANCE ;
35
+ pub type HRESULT = LONG ;
35
36
pub type BOOL = c_int ;
36
37
pub type BYTE = u8 ;
37
38
pub type BOOLEAN = BYTE ;
@@ -197,6 +198,8 @@ pub const ERROR_OPERATION_ABORTED: DWORD = 995;
197
198
pub const ERROR_IO_PENDING : DWORD = 997 ;
198
199
pub const ERROR_TIMEOUT : DWORD = 0x5B4 ;
199
200
201
+ pub const E_NOTIMPL : HRESULT = 0x80004001u32 as HRESULT ;
202
+
200
203
pub const INVALID_HANDLE_VALUE : HANDLE = !0 as HANDLE ;
201
204
202
205
pub const FACILITY_NT_BIT : DWORD = 0x1000_0000 ;
@@ -1163,8 +1166,8 @@ extern "system" {
1163
1166
timeout : * const timeval ) -> c_int ;
1164
1167
}
1165
1168
1166
- // Functions that aren't available on Windows XP, but we still use them and just
1167
- // provide some form of a fallback implementation.
1169
+ // Functions that aren't available on every version of Windows that we support,
1170
+ // but we still use them and just provide some form of a fallback implementation.
1168
1171
compat_fn ! {
1169
1172
kernel32:
1170
1173
@@ -1182,6 +1185,10 @@ compat_fn! {
1182
1185
pub fn SetThreadStackGuarantee ( _size: * mut c_ulong) -> BOOL {
1183
1186
SetLastError ( ERROR_CALL_NOT_IMPLEMENTED as DWORD ) ; 0
1184
1187
}
1188
+ pub fn SetThreadDescription ( hThread: HANDLE ,
1189
+ lpThreadDescription: LPCWSTR ) -> HRESULT {
1190
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED as DWORD ) ; E_NOTIMPL
1191
+ }
1185
1192
pub fn SetFileInformationByHandle ( _hFile: HANDLE ,
1186
1193
_FileInformationClass: FILE_INFO_BY_HANDLE_CLASS ,
1187
1194
_lpFileInformation: LPVOID ,
0 commit comments