Changeset 67772 in vbox for trunk/src/VBox/Additions/WINNT/VBoxCredProv/VBoxCredProvCredential.h
- Timestamp:
- Jul 4, 2017 11:42:31 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxCredProv/VBoxCredProvCredential.h
r66109 r67772 87 87 /** @} */ 88 88 89 HRESULT resetField(DWORD dwFieldID); 89 90 HRESULT Reset(void); 90 91 HRESULT Initialize(CREDENTIAL_PROVIDER_USAGE_SCENARIO cpus); … … 109 110 /** The usage scenario for which we were enumerated. */ 110 111 CREDENTIAL_PROVIDER_USAGE_SCENARIO m_enmUsageScenario; 111 /** The actual credential strings. */ 112 PRTUTF16 m_apwszCredentials[VBOXCREDPROV_NUM_FIELDS]; 112 /** The actual credential provider fields. 113 * Must be allocated as long as the credential provider is in charge. */ 114 PRTUTF16 m_apwszFields[VBOXCREDPROV_NUM_FIELDS]; 113 115 /** Pointer to event handler. */ 114 116 ICredentialProviderCredentialEvents *m_pEvents; 115 117 /** Flag indicating whether credentials already were retrieved. */ 116 118 bool m_fHaveCreds; 119 /** Flag indicating wheter a profile (user tile) current is selected or not. */ 120 bool m_fIsSelected; 117 121 }; 118 122 #endif /* !___VBOX_CREDPROV_CREDENTIAL_H___ */
Note:
See TracChangeset
for help on using the changeset viewer.