aboutsummaryrefslogtreecommitdiff
path: root/vendor/winapi/src/um/lowlevelmonitorconfigurationapi.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/winapi/src/um/lowlevelmonitorconfigurationapi.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/winapi/src/um/lowlevelmonitorconfigurationapi.rs')
-rw-r--r--vendor/winapi/src/um/lowlevelmonitorconfigurationapi.rs49
1 files changed, 0 insertions, 49 deletions
diff --git a/vendor/winapi/src/um/lowlevelmonitorconfigurationapi.rs b/vendor/winapi/src/um/lowlevelmonitorconfigurationapi.rs
deleted file mode 100644
index fe73214..0000000
--- a/vendor/winapi/src/um/lowlevelmonitorconfigurationapi.rs
+++ /dev/null
@@ -1,49 +0,0 @@
-// Licensed under the Apache License, Version 2.0
-// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
-// All files in the project carrying such notice may not be copied, modified, or distributed
-// except according to those terms.
-use shared::minwindef::{BYTE, DWORD, LPDWORD};
-use um::physicalmonitorenumerationapi::_BOOL;
-use um::winnt::{HANDLE, LPSTR};
-STRUCT!{#[repr(packed)] struct MC_TIMING_REPORT {
- dwHorizontalFrequencyInHZ: DWORD,
- dwVerticalFrequencyInHZ: DWORD,
- bTimingStatusByte: BYTE,
-}}
-pub type LPMC_TIMING_REPORT = *mut MC_TIMING_REPORT;
-ENUM!{enum MC_VCP_CODE_TYPE {
- MC_MOMENTARY,
- MC_SET_PARAMETER,
-}}
-pub type LPMC_VCP_CODE_TYPE = *mut MC_VCP_CODE_TYPE;
-extern "system" {
- pub fn GetVCPFeatureAndVCPFeatureReply(
- hMonitor: HANDLE,
- bVCPCode: BYTE,
- pvct: LPMC_VCP_CODE_TYPE,
- pdwCurrentValue: LPDWORD,
- pdwMaximumValue: LPDWORD,
- ) -> _BOOL;
- pub fn SetVCPFeature(
- hMonitor: HANDLE,
- bVCPCode: BYTE,
- dwNewValue: DWORD,
- ) -> _BOOL;
- pub fn SaveCurrentSettings(
- hMonitor: HANDLE,
- ) -> _BOOL;
- pub fn GetCapabilitiesStringLength(
- hMonitor: HANDLE,
- pdwCapabilitiesStringLengthInCharacters: LPDWORD,
- ) -> _BOOL;
- pub fn CapabilitiesRequestAndCapabilitiesReply(
- hMonitor: HANDLE,
- pszASCIICapabilitiesString: LPSTR,
- dwCapabilitiesStringLengthInCharacters: DWORD,
- ) -> _BOOL;
- pub fn GetTimingReport(
- hMonitor: HANDLE,
- pmtrMonitorTimingReport: LPMC_TIMING_REPORT,
- ) -> _BOOL;
-}