1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Debug Port Protocol
//!
//! It provides the communication link between the debug agent and the remote host.

pub const PROTOCOL_GUID: crate::base::Guid = crate::base::Guid::from_fields(
    0xeba4e8d2,
    0x3858,
    0x41ec,
    0xa2,
    0x81,
    &[0x26, 0x47, 0xba, 0x96, 0x60, 0xd0],
);

pub type Reset = eficall! {fn(
    *mut Protocol,
) -> *mut crate::base::Status};

pub type Write = eficall! {fn(
    *mut Protocol,
    u32,
    *mut usize,
    *mut core::ffi::c_void
) -> *mut crate::base::Status};

pub type Read = eficall! {fn(
    *mut Protocol,
    u32,
    *mut usize,
    *mut core::ffi::c_void
) -> *mut crate::base::Status};

pub type Poll = eficall! {fn(
    *mut Protocol,
) -> *mut crate::base::Status};

#[repr(C)]
pub struct Protocol {
    pub reset: Reset,
    pub write: Write,
    pub read: Read,
    pub poll: Poll,
}