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
43
44
use std::os::raw::c_char;
use status::NvAPI_Status;
use handles;
nvapi! {
pub type EnumNvidiaDisplayHandleFn = extern "C" fn(thisEnum: u32, pNvDispHandle: *mut handles::NvDisplayHandle) -> NvAPI_Status;
/// This function returns the handle of the NVIDIA display specified by the enum
/// index (thisEnum). The client should keep enumerating until it
/// returns NVAPI_END_ENUMERATION.
///
/// Note: Display handles can get invalidated on a modeset, so the calling applications need to
/// renum the handles after every modeset.
pub unsafe fn NvAPI_EnumNvidiaDisplayHandle;
}
nvapi! {
pub type EnumNvidiaUnAttachedDisplayHandleFn = extern "C" fn(thisEnum: u32, pNvUnAttachedDispHandle: *mut handles::NvUnAttachedDisplayHandle) -> NvAPI_Status;
/// This function returns the handle of the NVIDIA unattached display specified by the enum
/// index (thisEnum). The client should keep enumerating until it
/// returns error.
///
/// Note: Display handles can get invalidated on a modeset, so the calling applications need to
/// renum the handles after every modeset.
pub unsafe fn NvAPI_EnumNvidiaUnAttachedDisplayHandle;
}
nvapi! {
pub type GetAssociatedNvidiaDisplayHandleFn = extern "C" fn(szDisplayName: *const c_char, pNvDispHandle: *mut handles::NvDisplayHandle) -> NvAPI_Status;
/// This function returns the handle of the NVIDIA display that is associated
/// with the given display "name" (such as "\\.\DISPLAY1").
pub unsafe fn NvAPI_GetAssociatedNvidiaDisplayHandle;
}
nvapi! {
pub type DISP_GetAssociatedUnAttachedNvidiaDisplayHandleFn = extern "C" fn(szDisplayName: *const c_char, pNvUnAttachedDispHandle: *mut handles::NvDisplayHandle) -> NvAPI_Status;
/// This function returns the handle of an unattached NVIDIA display that is
/// associated with the given display name (such as "\\DISPLAY1").
pub unsafe fn NvAPI_DISP_GetAssociatedUnAttachedNvidiaDisplayHandle;
}