SQCSimulator2023/SQCSim-srv/define.h
2023-10-26 10:39:08 -04:00

22 lines
374 B
C++

#ifndef SRV_DEFINE_H__
#define SRV_DEFINE_H__
#include "../SQCSim-common/define.h"
#include <iostream>
#include <sstream>
#include <cctype>
#include <string>
#define MAX_CONNECTIONS 16
#define ID_LIST_SIZE 127
#define SRV_MANUAL_SETUP true
#ifdef _WIN32
#define strcpy strcpy_s
#endif
typedef unsigned char LogDest;
enum LOG_DEST { CONSOLE, LOGFILE, LOG_LAST };
#endif