You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since all the HKEY_* enums are re-exported, would it be a good idea to re-export HKEY from winapi as well? My use case it that I’m defining a list of keys to look for, and since that is used in a lot of places I’m doing it globally like this:
But that requires me to declare winapi as a dependency and extern crate. It works fine, but is not the most convenient. It would save a lot of hassle if winreg can just re-export HKEY.
The text was updated successfully, but these errors were encountered:
Since all the
HKEY_*
enums are re-exported, would it be a good idea to re-exportHKEY
from winapi as well? My use case it that I’m defining a list of keys to look for, and since that is used in a lot of places I’m doing it globally like this:But that requires me to declare winapi as a dependency and extern crate. It works fine, but is not the most convenient. It would save a lot of hassle if winreg can just re-export
HKEY
.The text was updated successfully, but these errors were encountered: