os: move LIMITCLIENTS define into private header

Not used by any external modules, and an implementation
detail anyways, so no need to keep it in public header.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-02-25 13:08:16 +01:00
parent fe847bc559
commit 3d60cfbb68
2 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,6 @@ OF THIS SOFTWARE.
#define MAXGPUSCREENS 16
#endif
#define MAXCLIENTS 2048
#define LIMITCLIENTS 256 /* Must be a power of 2 and <= MAXCLIENTS */
#define MAXFORMATS 8
#ifndef MAXDEVICES
#define MAXDEVICES 256 /* input devices */

View File

@ -225,4 +225,6 @@ Ones(unsigned long mask)
}
#endif
#define LIMITCLIENTS 256 /* Must be a power of 2 and <= MAXCLIENTS */
#endif /* _OSDEP_H_ */