This commit is contained in:
2022-09-26 23:22:38 +02:00
parent 83382c4e31
commit d9b7544a04
39 changed files with 3197 additions and 9 deletions

16
include/Intellisense.h Normal file
View File

@ -0,0 +1,16 @@
#pragma once
#ifndef __INTELLISENSE_H__
#define __INTELLISENSE_H__
#if __INTELLISENSE__
#define __attribute__(q)
#define __builtin_strcmp(a, b) 0
#define __builtin_strlen(a) 0
#define __builtin_memcpy(a, b) 0
#define __builtin_va_list void *
#define __builtin_va_start(a, b)
#define __extension__
#endif
#endif //__INTELLISENSE_H__