Initial setup for CLion

This commit is contained in:
2026-03-28 16:54:11 +11:00
parent 239cc02591
commit 7b4134133c
1136 changed files with 811916 additions and 0 deletions

32
anslicensing/precomp.h Normal file
View File

@@ -0,0 +1,32 @@
#pragma once
#include "anslicensing.h"
#include <stdlib.h>
#include <stddef.h>
#include <string.h> /* memset(), memcpy() */
#include <assert.h>
#include <string>
#ifdef _WIN32
#define _WIN32_WINNT 0x0501
#define _CRT_SECURE_NO_DEPRECATE
#define _CRT_SECURE_NO_WARNINGS
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#include <WinSock2.h>
#include <windows.h>
#include <tchar.h>
#include <malloc.h>
#endif
#ifndef _WIN32
#define _alloca alloca
#define _stricmp strcasecmp
#define _snprintf snprintf
#define _atoi64(s) strtoull(s, NULL, 10)
#endif