nt-apiset 0.1.0

A parser for API Set Map files of Windows 10 and later
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2023 Colin Finck <colin@reactos.org>
// SPDX-License-Identifier: MIT OR Apache-2.0

macro_rules! iter_try {
    ($e:expr) => {
        match $e {
            Ok(x) => x,
            Err(e) => return Some(Err(e)),
        }
    };
}