Skip to content

Commit be2f4ca

Browse files
Marc-André Moreauawakecoding
Marc-André Moreau
authored andcommitted
add AuthenticationServiceClass, EnableFrameBufferRedirection .RDP options
1 parent 784afe7 commit be2f4ca

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

dll/RdpSettings.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -790,6 +790,13 @@ HRESULT CMsRdpExtendedSettings::ApplyRdpFile(void* rdpFilePtr)
790790
pMsRdpExtendedSettings->PutProperty(propName, &value);
791791
}
792792
}
793+
else if (MsRdpEx_RdpFileEntry_IsMatch(entry, 's', "AuthenticationServiceClass")) {
794+
bstr_t propName = _com_util::ConvertStringToBSTR("AuthServiceClass");
795+
bstr_t propValue = _com_util::ConvertStringToBSTR(entry->value);
796+
value.bstrVal = propValue;
797+
value.vt = VT_BSTR;
798+
pMsRdpExtendedSettings->put_CoreProperty(propName, &value);
799+
}
793800
else if (MsRdpEx_RdpFileEntry_IsMatch(entry, 's', "UserSpecifiedServerName")) {
794801
bstr_t propName = _com_util::ConvertStringToBSTR(entry->name);
795802
bstr_t propValue = _com_util::ConvertStringToBSTR(entry->value);
@@ -828,6 +835,12 @@ HRESULT CMsRdpExtendedSettings::ApplyRdpFile(void* rdpFilePtr)
828835
pMsRdpExtendedSettings->put_CoreProperty(propName, &value);
829836
}
830837
}
838+
else if (MsRdpEx_RdpFileEntry_IsMatch(entry, 'i', "EnableFrameBufferRedirection")) {
839+
if (MsRdpEx_RdpFileEntry_GetVBoolValue(entry, &value)) {
840+
bstr_t propName = _com_util::ConvertStringToBSTR(entry->name);
841+
pMsRdpExtendedSettings->put_Property(propName, &value);
842+
}
843+
}
831844
else if (MsRdpEx_RdpFileEntry_IsMatch(entry, 'i', "EnableHardwareMode")) {
832845
if (MsRdpEx_RdpFileEntry_GetVBoolValue(entry, &value)) {
833846
bstr_t propName = _com_util::ConvertStringToBSTR(entry->name);

0 commit comments

Comments
 (0)