Loading Workspace_msvc/common.vcxproj +0 −1 Original line number Diff line number Diff line Loading @@ -125,7 +125,6 @@ <ClInclude Include="..\lib_com\basop_proto_func.h" /> <ClInclude Include="..\lib_com\basop_settings.h" /> <ClInclude Include="..\lib_com\basop_util.h" /> <ClInclude Include="..\lib_com\bastypes.h" /> <ClInclude Include="..\lib_com\cnst.h" /> <ClInclude Include="..\lib_com\control.h" /> <ClInclude Include="..\lib_com\enh1632.h" /> Loading lib_com/bastypes.h 0 → 100644 +46 −0 Original line number Diff line number Diff line /*==================================================================================== EVS Codec 3GPP TS26.443 Nov 04, 2021. Version 12.14.0 / 13.10.0 / 14.6.0 / 15.4.0 / 16.3.0 ====================================================================================*/ #ifndef __BASTYPES_H #define __BASTYPES_H typedef unsigned char BYTE; typedef unsigned short WORD; #if defined(__alpha__) || defined(__alpha) || defined(__sgi) typedef unsigned int DWORD; /* long is 64 bits on these machines */ #else typedef unsigned long DWORD; #endif typedef int BOOL; typedef signed int INT; typedef signed long LONG; typedef unsigned long ULONG; typedef unsigned int UINT; typedef float FLOAT; typedef double DOUBLE; typedef unsigned char UCHAR; typedef char CHAR; /* from uld_types.h: */ typedef short SHORT; typedef unsigned short USHORT; typedef long int LINT; typedef unsigned long int ULINT; #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif #ifndef NULL #define NULL 0 #endif #define INVALID_HANDLE NULL #endif Loading
Workspace_msvc/common.vcxproj +0 −1 Original line number Diff line number Diff line Loading @@ -125,7 +125,6 @@ <ClInclude Include="..\lib_com\basop_proto_func.h" /> <ClInclude Include="..\lib_com\basop_settings.h" /> <ClInclude Include="..\lib_com\basop_util.h" /> <ClInclude Include="..\lib_com\bastypes.h" /> <ClInclude Include="..\lib_com\cnst.h" /> <ClInclude Include="..\lib_com\control.h" /> <ClInclude Include="..\lib_com\enh1632.h" /> Loading
lib_com/bastypes.h 0 → 100644 +46 −0 Original line number Diff line number Diff line /*==================================================================================== EVS Codec 3GPP TS26.443 Nov 04, 2021. Version 12.14.0 / 13.10.0 / 14.6.0 / 15.4.0 / 16.3.0 ====================================================================================*/ #ifndef __BASTYPES_H #define __BASTYPES_H typedef unsigned char BYTE; typedef unsigned short WORD; #if defined(__alpha__) || defined(__alpha) || defined(__sgi) typedef unsigned int DWORD; /* long is 64 bits on these machines */ #else typedef unsigned long DWORD; #endif typedef int BOOL; typedef signed int INT; typedef signed long LONG; typedef unsigned long ULONG; typedef unsigned int UINT; typedef float FLOAT; typedef double DOUBLE; typedef unsigned char UCHAR; typedef char CHAR; /* from uld_types.h: */ typedef short SHORT; typedef unsigned short USHORT; typedef long int LINT; typedef unsigned long int ULINT; #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif #ifndef NULL #define NULL 0 #endif #define INVALID_HANDLE NULL #endif