icrate 0.1.2

Bindings to Apple's frameworks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::os::raw::c_ushort;

extern_struct!(
    pub struct NSDecimal {
        // signed   int _exponent:8;
        // unsigned int _length:4;
        // unsigned int _isNegative:1;
        // unsigned int _isCompact:1;
        // unsigned int _reserved:18;
        _inner: i32,
        _mantissa: [c_ushort; 8],
    }
);