Compare commits

..

1 commit

Author SHA1 Message Date
Vinzenz Schroeter bfef70f686 fix many configurations
Some checks failed
Rust / build (pull_request) Failing after 3m22s
2025-05-03 19:27:25 +02:00
2 changed files with 4 additions and 0 deletions

View file

@ -225,6 +225,9 @@ typedef struct SPBitVec SPBitVec;
*/
typedef struct TypedCommand TypedCommand;
/**
* This is a type only used by cbindgen to have a type for pointers.
*/
typedef struct UdpSocket UdpSocket;
/**

View file

@ -68,4 +68,5 @@ pub(crate) unsafe fn heap_remove<T>(x: NonNull<T>) -> T {
unsafe { *Box::from_raw(x.as_ptr()) }
}
/// This is a type only used by cbindgen to have a type for pointers.
pub struct UdpSocket;