-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HwDLL: server_static_t has been moved to a separately created header …
…in HLSDK directory
- Loading branch information
Showing
3 changed files
with
21 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#if !defined( SERVER_STATIC_H ) | ||
#define SERVER_STATIC_H | ||
|
||
#ifdef HLSDK10_BUILD | ||
struct server_static_t | ||
{ | ||
int maxclients; | ||
byte align[28684]; | ||
struct client_t *clients; | ||
}; | ||
#else | ||
struct server_static_t | ||
{ | ||
int dll_initialized; | ||
struct client_t *clients; | ||
int maxclients; | ||
}; | ||
#endif | ||
|
||
#endif |