13 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
Nicholas Hastings 645103735e Fix streaming HTTP response header and data callbacks 2026-07-12 21:20:00 -04:00
Kyle Sanderson 5cd391a31b Add SteamWorks_SendMessageToGC (untested as well). 2016-03-05 17:32:16 -08:00
Kyle Sanderson 3473a51e03 Add support for Steam| SIDs. 2016-03-04 12:57:55 -08:00
Kyle Sanderson 9f70645270 Add Game Coordinator Hooks (untested). 2016-03-03 20:38:00 -08:00
Kyle Sanderson 78c22072e1 Don't try to parse new Steam3 format only present in TF. 2015-04-03 21:44:18 -07:00
Ryan Stecker 313a8ffaa1 Register as a library to support the SteamWorks extension as an optional dependency. 2014-04-05 14:40:28 -05:00
KyleSanderson cff6b178f0 Add HTTP Support. 2014-02-08 12:19:32 -07:00
KyleSanderson 9b9e3d98f2 Use Client AuthString for CSteamID if available. 2014-01-29 02:31:11 -07:00
KyleSanderson a39fdfc731 Add and enable SteamWorks GS Detours (+CDetour). 2014-01-14 17:54:32 -07:00
KyleSanderson e5e3807329 Add UserStats to project. 2014-01-12 18:37:20 -07:00
KyleSanderson 0c303159a1 Move CreateCommonCSteamID to SteamWorks. 2014-01-12 18:36:42 -07:00
KyleSanderson 0854157c93 Reorganize directories. 2014-01-12 12:43:32 -07:00