Skip to content

feat: improve constants #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed

feat: improve constants #27

wants to merge 1 commit into from

Conversation

septs
Copy link

@septs septs commented Mar 27, 2025

expose some shorthand function, simplify checking logical

for example:

if card.ActiveProtocol()&scard.ProtocolT0 != 0 {
}
if readerState.EventState&scard.StatePresent != 0 {
}

v.s.

if card.ActiveProtocol().T0() {
}
if readerState.EventState.Present() {
}

@septs septs force-pushed the constants branch 2 times, most recently from bc3e3da to bd2050d Compare March 27, 2025 07:40
@septs septs closed this by deleting the head repository Apr 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant