mirror of
https://github.com/Noratrieb/portability.git
synced 2026-01-16 00:35:03 +01:00
fixes
This commit is contained in:
parent
091e833acf
commit
dc6ef2108d
17 changed files with 221 additions and 39 deletions
18
test2/one_dll.rs
Normal file
18
test2/one_dll.rs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
#![windows_subsystem = "console"]
|
||||
|
||||
#[link(name = "small_dll", kind = "raw-dylib")]
|
||||
unsafe extern "C" {
|
||||
safe fn my_export() -> u32;
|
||||
}
|
||||
|
||||
#[panic_handler]
|
||||
fn handle_panic(_: &core::panic::PanicInfo<'_>) -> ! {
|
||||
loop {}
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub extern "stdcall" fn mainCRTStartup() -> u32 {
|
||||
my_export()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue