ui-automation 0.1.1

Control the User Interface, cross-platform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2024 Tristan Gerritsen <tristan@thewoosh.org>
// All Rights Reserved.

use super::CFIndex;

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[repr(C)]
pub struct CFRange {
    location: CFIndex,
    length: CFIndex,
}