File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
library/std/src/sys/pal/windows Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -332,3 +332,17 @@ compat_fn_with_fallback! {
332
332
rtabort!( "unimplemented" )
333
333
}
334
334
}
335
+
336
+ #[ cfg( target_vendor = "rust9x" ) ]
337
+ compat_fn_with_fallback ! {
338
+ pub static KERNEL32 : & CStr = c"kernel32" => { load: false , unicows: false } ;
339
+ // >= XP
340
+ // https://learn.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-addvectoredexceptionhandler
341
+ pub fn AddVectoredExceptionHandler (
342
+ first: u32 ,
343
+ handler: PVECTORED_EXCEPTION_HANDLER
344
+ ) -> * mut core:: ffi:: c_void { core:: ptr:: null_mut( ) }
345
+ // >= Vista / Server 2003 SP1 / XPx64
346
+ // https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-setthreadstackguarantee
347
+ pub fn SetThreadStackGuarantee ( stacksizeinbytes: * mut u32 ) -> BOOL { TRUE }
348
+ }
You can’t perform that action at this time.
0 commit comments