Home » Developing U++ » UppHub » Control4U to be updated
Control4U to be updated [message #44844] |
Tue, 07 July 2015 22:34  |
Sgifan
Messages: 37 Registered: February 2010 Location: France
|
Member |
|
|
Control4U does not compile anymore
it is a trivial fix were FD_ZERO must be replaced by FD_ZEROS
void VLC_Demo::UpdateInfo() {
if (!player.IsLoaded()) {
offline = "ActiveX or program not available";
return;
} else
offline = "";
int t = player.GetTime();
if (t == -1)
time <<= "-";
else
time <<= FormatDouble(t/1000., 2, FD_ZERO); ==> must be FD_ZEROS
int l = player.GetLength();
if (l == -1)
length = "-";
else
length = FormatDouble(l/1000., 2, FD_ZERO); ==> must be FD_ZEROS
}
|
|
|
|
Goto Forum:
Current Time: Fri Apr 25 12:06:27 CEST 2025
Total time taken to generate the page: 0.00522 seconds
|