nucomcore 0.1.1

Nucom, cross-platform Component Object Model implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[
    object,
    local,
    uuid(00000000-0000-0000-C000-000000000046),
]
interface IUnknown
{
    HRESULT QueryInterface(
        [in] const IID *itf_type,
        [out, retval, ptr, poly(itf_type)] void **itf
    );

    uint32_t AddRef();
    uint32_t Release();
};