From 1126c5f60855acad387ede1854195b40e9e326db Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Mon, 19 May 2025 22:02:38 -0400 Subject: [PATCH] PM-19255: interface update --- .../src/pluginauthenticator.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/desktop/desktop_native/windows_plugin_authenticator/src/pluginauthenticator.rs b/apps/desktop/desktop_native/windows_plugin_authenticator/src/pluginauthenticator.rs index 75cf48885b0..5824f39ce92 100644 --- a/apps/desktop/desktop_native/windows_plugin_authenticator/src/pluginauthenticator.rs +++ b/apps/desktop/desktop_native/windows_plugin_authenticator/src/pluginauthenticator.rs @@ -80,8 +80,8 @@ pub struct Factory; impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Impl { unsafe fn EXPERIMENTAL_PluginMakeCredential( &self, - _request: *const ExperimentalWebAuthnPluginOperationRequest, - _response: *mut *mut ExperimentalWebAuthnPluginOperationResponse, + request: *const ExperimentalWebAuthnPluginOperationRequest, + response: *mut *mut ExperimentalWebAuthnPluginOperationResponse, ) -> HRESULT { util::message(String::from("EXPERIMENTAL_PluginMakeCredential() called")); HRESULT(0) @@ -89,8 +89,8 @@ impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Imp unsafe fn EXPERIMENTAL_PluginGetAssertion( &self, - _request: *const ExperimentalWebAuthnPluginOperationRequest, - _response: *mut *mut ExperimentalWebAuthnPluginOperationResponse, + request: *const ExperimentalWebAuthnPluginOperationRequest, + response: *mut *mut ExperimentalWebAuthnPluginOperationResponse, ) -> HRESULT { util::message(String::from("EXPERIMENTAL_PluginGetAssertion() called")); HRESULT(0) @@ -98,7 +98,7 @@ impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Imp unsafe fn EXPERIMENTAL_PluginCancelOperation( &self, - _request: *const ExperimentalWebAuthnPluginCancelOperationRequest, + request: *const ExperimentalWebAuthnPluginCancelOperationRequest, ) -> HRESULT { util::message(String::from("EXPERIMENTAL_PluginCancelOperation() called")); HRESULT(0)