Skip to content
This repository was archived by the owner on Nov 2, 2020. It is now read-only.

Commit ee97e96

Browse files
committed
Upgrade to Steamworks SDK 1.33b
1 parent 23f6a5a commit ee97e96

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

Diff for: README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The primary use case for _CSteamworks_ is to act as a buffer between a scripting
88
* License: [MIT](http://www.opensource.org/licenses/mit-license.php)
99
* [Github Project](https://github.com/rlabrecque/CSteamworks)
1010
* [Reporting Issues](https://github.com/rlabrecque/CSteamworks/issues)
11-
* Currently supports Steamworks SDK v1.33a
11+
* Currently supports Steamworks SDK v1.33b
1212

1313
[![Support via Paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9TH6ELMRD9NYU)
1414

@@ -29,4 +29,3 @@ Limitations
2929

3030
* _CSteamworks_ was not intended to be used directly from C therefore it does not provide header files.
3131
* _CSteamworks_ does not currently support ISteamAppTicket or ISteamGameCoordinator as they do not provide a global interface.
32-
* _CSteamworks_ is largely obsolete as Valve now provides C bindings themselves.

Diff for: build/osx/CSteamworks-Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundleSignature</key>
1616
<string>????</string>
1717
<key>CFBundleVersion</key>
18-
<string>1.21</string>
18+
<string>1.22</string>
1919
<key>CSResourcesFileMapped</key>
2020
<string>yes</string>
2121
</dict>

Diff for: build/win/Version.rc

0 Bytes
Binary file not shown.

Diff for: src/CSteamworks.h

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ SB_API ISteamNetworking *S_CALLTYPE SteamGameServerNetworking();
6161
SB_API ISteamGameServerStats *S_CALLTYPE SteamGameServerStats();
6262
SB_API ISteamHTTP *S_CALLTYPE SteamGameServerHTTP();
6363
SB_API ISteamInventory *S_CALLTYPE SteamGameServerInventory();
64+
SB_API ISteamUGC *SteamGameServerUGC();
6465
#endif // VERSION_SAFE_STEAM_API_INTERFACES
6566

6667
#endif // CSTEAMWORKS_H

Diff for: src/steam_api.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,10 @@ SB_API ISteamHTTP *S_CALLTYPE SteamGameServerHTTP() {
124124
SB_API ISteamInventory *S_CALLTYPE SteamGameServerInventory() {
125125
return s_SteamGameServerContext.SteamInventory(); // This should have been named SteamGameServerInventory, but it's inconsistent for some reason.
126126
}
127+
128+
SB_API ISteamUGC *SteamGameServerUGC() {
129+
return s_SteamGameServerContext.SteamUGC(); // This should have been named SteamGameSteamUGC, but it's inconsistent for some reason.
130+
}
127131
#endif // VERSION_SAFE_STEAM_API_INTERFACES
128132

129133
/**********************************************************

0 commit comments

Comments
 (0)