Introduce localization catalog domain name

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
2020-01-15 13:45:25 +01:00
parent 0a280975fb
commit b2edd74270
3 changed files with 12 additions and 6 deletions

View File

@@ -46,8 +46,9 @@ namespace eap
/// Constructs a EAP UI peer module for the given EAP type
///
/// \param[in] eap_method EAP method type ID
/// \param[in] domain Localization catalog domain name. Usually EAP method name followed by "_UI".
///
peer_ui(_In_ winstd::eap_type_t eap_method);
peer_ui(_In_ winstd::eap_type_t eap_method, _In_opt_ LPCTSTR domain = nullptr);
///
/// Converts XML into the configuration BLOB.
@@ -146,6 +147,9 @@ namespace eap
_In_ DWORD dwUIContextDataSize,
_Inout_ BYTE **ppDataFromInteractiveUI,
_Inout_ DWORD *pdwDataFromInteractiveUISize) = 0;
public:
const winstd::tstring m_domain; ///< Localization catalog domain name
};
/// @}