1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-21 11:54:02 +00:00

Capture doc comments for webauthn.dll function definitions

This commit is contained in:
Isaiah Inuwa
2026-02-19 07:51:46 -06:00
parent b8564facab
commit eaa955a87b

View File

@@ -9,7 +9,8 @@ use windows::{
use crate::{ErrorKind, WinWebAuthnError};
macro_rules! webauthn_call {
($symbol:literal as fn $fn_name:ident($($arg:ident: $arg_type:ty),+) -> $result_type:ty) => (
($symbol:literal as $(#[$attr:meta])* fn $fn_name:ident($($arg:ident: $arg_type:ty),+) -> $result_type:ty) => (
$(#[$attr])*
pub(super) unsafe fn $fn_name($($arg: $arg_type),*) -> Result<$result_type, crate::WinWebAuthnError> {
let library = crate::util::load_webauthn_lib()?;
let response = unsafe {