Skip to content

Commit 7569796

Browse files
committed
fix launcher exports
1 parent f929d25 commit 7569796

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

proxy/launcher_win.cpp

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,41 +9,34 @@ void InstallSteamProxy(const wchar_t *szBaseDir); // steam_proxy.cpp
99
EXPORT DWORD NvOptimusEnablement = 1;
1010
EXPORT int AmdPowerXpressRequestHighPerformance = 1;
1111

12-
// these are always irrelevant apparently?
12+
// most of these are only called when on a valve server (see CUserMessage_DllStatus)
1313

1414
EXPORT bool BSecureAllowed(unsigned char *a1, int a2, int a3)
1515
{
1616
return true;
1717
}
1818

19-
EXPORT int CountFilesCompletedTrustCheck()
20-
{
21-
return 0;
22-
}
23-
24-
EXPORT int CountFilesNeedTrustCheck()
19+
EXPORT int BinaryProperties_GetValue(int a1, void *a2)
2520
{
2621
return 0;
2722
}
2823

29-
EXPORT int GetTotalFilesLoaded()
24+
EXPORT int CountFilesCompletedTrustCheck()
3025
{
3126
return 0;
3227
}
3328

34-
EXPORT int RuntimeCheck(int a1, int a2)
29+
EXPORT int CountFilesNeedTrustCheck()
3530
{
3631
return 0;
3732
}
3833

39-
// these are for cs2
40-
41-
EXPORT int BinaryProperties_GetValue(int a1, void *a2)
34+
EXPORT int CountItemsToReport()
4235
{
4336
return 0;
4437
}
4538

46-
EXPORT int CountItemsToReport()
39+
EXPORT int GetTotalFilesLoaded()
4740
{
4841
return 0;
4942
}

0 commit comments

Comments
 (0)