11 Commits
Author SHA1 Message Date
A1m` a86fc4af91 Fix circular includes and include cleanup (#3)
* Fix circular includes and include cleanup

Fixed a bug where other *.h header files would include extension.h, which itself
was already included in those same headers, creating a circular dependency cycle.
This caused build errors and made compilation unpredictable.

To resolve this:
- Moved implementation-only includes to .cpp files where they are actually needed.
- Added forward declarations where possible to avoid pulling in unnecessary headers.
- Ensured extension.h only contains declarations that require full type definitions.

This improves build stability and compilation time.

* Clean up includes and fix build errors

- Replaced full includes with forward declarations where possible
- Moved implementation-only includes from .h to .cpp files
- Added missing includes for stdint.h and Steam interfaces
- This significantly reduces compilation time and prevents future dependency issues

* Switch to SourceMod SDK smsdk_ext instead of local copy
2026-07-13 21:43:05 +00:00
Kyle Sanderson 44430b167c Preserve sanctity of SteamWorksGameServer::Reset(void) from ba825b9a6e. 2016-04-25 15:38:13 -07:00
Kyle Sanderson ba825b9a6e CS:GO fix for unreleased SteamWorks SDK (untested). 2016-04-24 16:50:44 -07:00
Kyle Sanderson e360802700 We're using GPLv3, and only v3. 2015-01-17 14:36:24 -08:00
GoD-Tony 4e1c4b95d7 Fixed steam_api failing to open when using gamedata. 2014-11-07 13:28:18 +01:00
Ryan Stecker 3c6fb17454 Rename InitSafe detour to squash an MSVC warning about inconsistent dll linkage. 2014-04-05 14:32:23 -05:00
KyleSanderson d701f286bf Add SteamWorks_TokenRequested for authenticated GameServer logins. 2014-02-05 22:05:06 -07:00
KyleSanderson 2a622d9d26 Detour SteamGameServer_InitSafe to get interfaces earlier. 2014-02-05 22:03:52 -07:00
KyleSanderson aef58bb214 Remove WasRestartRequested Hook when pGameServer is destroyed. 2014-01-29 02:34:13 -07:00
KyleSanderson 2d85e824b0 Add GameData support to Steam Shutdown func. 2014-01-29 02:28:41 -07:00
KyleSanderson a39fdfc731 Add and enable SteamWorks GS Detours (+CDetour). 2014-01-14 17:54:32 -07:00