We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6930e3 commit 42f7fe2Copy full SHA for 42f7fe2
Cargo.lock
crates/ironrdp-cliprdr-native/src/windows/mod.rs
@@ -162,7 +162,7 @@ impl WinClipboard {
162
// SAFETY: low-level WinAPI call
163
let atom = unsafe { RegisterClassA(&wc) };
164
if atom == 0 {
165
- return Err(WinCliprdrError::from(Error::from_win32()));
+ return Err(WinCliprdrError::from(Error::from_thread()));
166
}
167
168
@@ -184,7 +184,7 @@ impl WinClipboard {
184
};
185
186
if window.is_invalid() {
187
188
189
// Init clipboard processing for WinAPI event loop
190
//
0 commit comments