Simulator first commit

This commit is contained in:
2019-09-18 11:11:16 +03:00
commit 6e1686be67
5028 changed files with 985331 additions and 0 deletions

36
node_modules/lame/deps/mpg123/config/win/ia32/config.h generated vendored Normal file
View File

@ -0,0 +1,36 @@
#define strcasecmp _strcmpi
#define strncasecmp _strnicmp
#define strdup _strdup
#define HAVE_STRERROR 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_STRDUP
#define HAVE_STDLIB_H
#define HAVE_STRING_H
/* We want some frame index, eh? */
#define FRAME_INDEX 1
#define INDEX_SIZE 1000
/* also gapless playback! */
#define GAPLESS 1
/* #ifdef GAPLESS
#undef GAPLESS
#endif */
/* #define DEBUG
#define EXTRA_DEBUG */
/* defined in "gyp"
#define REAL_IS_FLOAT */
#define inline __inline
/* we are on win32 */
#define HAVE_WINDOWS_H
/* use the unicode support within libmpg123 */
#ifdef UNICODE
#define WANT_WIN32_UNICODE
#endif

46
node_modules/lame/deps/mpg123/config/win/ia32/mpg123.h generated vendored Normal file
View File

@ -0,0 +1,46 @@
/*
mpg123_msvc: MPEG Audio Decoder library wrapper header for MS VC++ 2005
copyright 2008 by the mpg123 project - free software under the terms of the LGPL 2.1
initially written by Patrick Dehne and Thomas Orgis.
*/
#ifndef MPG123_MSVC_H
#define MPG123_MSVC_H
#include <tchar.h>
#include <stdlib.h>
#include <sys/types.h>
typedef intptr_t ssize_t;
// Needed for Visual Studio versions before VS 2010.
#if (_MSC_VER < 1600)
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
#else
#include <stdint.h>
#endif
#define PRIiMAX "I64i"
typedef __int64 intmax_t;
// ftell returns long, _ftelli64 returns __int64
// off_t is long, not __int64, use ftell
#define ftello ftell
#define MPG123_NO_CONFIGURE
#include "mpg123.h.in" /* Yes, .h.in; we include the configure template! */
#ifdef __cplusplus
extern "C" {
#endif
// Wrapper around mpg123_open that supports path names with unicode
// characters
EXPORT int mpg123_topen(mpg123_handle *fr, const _TCHAR *path);
EXPORT int mpg123_tclose(mpg123_handle *fr);
#ifdef __cplusplus
}
#endif
#endif

36
node_modules/lame/deps/mpg123/config/win/x64/config.h generated vendored Normal file
View File

@ -0,0 +1,36 @@
#define strcasecmp _strcmpi
#define strncasecmp _strnicmp
#define strdup _strdup
#define HAVE_STRERROR 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_STRDUP
#define HAVE_STDLIB_H
#define HAVE_STRING_H
/* We want some frame index, eh? */
#define FRAME_INDEX 1
#define INDEX_SIZE 1000
/* also gapless playback! */
#define GAPLESS 1
/* #ifdef GAPLESS
#undef GAPLESS
#endif */
/* #define DEBUG
#define EXTRA_DEBUG */
/* defined in "gyp"
#define REAL_IS_FLOAT */
#define inline __inline
/* we are on win32 */
#define HAVE_WINDOWS_H
/* use the unicode support within libmpg123 */
#ifdef UNICODE
#define WANT_WIN32_UNICODE
#endif

46
node_modules/lame/deps/mpg123/config/win/x64/mpg123.h generated vendored Normal file
View File

@ -0,0 +1,46 @@
/*
mpg123_msvc: MPEG Audio Decoder library wrapper header for MS VC++ 2005
copyright 2008 by the mpg123 project - free software under the terms of the LGPL 2.1
initially written by Patrick Dehne and Thomas Orgis.
*/
#ifndef MPG123_MSVC_H
#define MPG123_MSVC_H
#include <tchar.h>
#include <stdlib.h>
#include <sys/types.h>
typedef intptr_t ssize_t;
// Needed for Visual Studio versions before VS 2010.
#if (_MSC_VER < 1600)
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
#else
#include <stdint.h>
#endif
#define PRIiMAX "I64i"
typedef __int64 intmax_t;
// ftell returns long, _ftelli64 returns __int64
// off_t is long, not __int64, use ftell
#define ftello ftell
#define MPG123_NO_CONFIGURE
#include "mpg123.h.in" /* Yes, .h.in; we include the configure template! */
#ifdef __cplusplus
extern "C" {
#endif
// Wrapper around mpg123_open that supports path names with unicode
// characters
EXPORT int mpg123_topen(mpg123_handle *fr, const _TCHAR *path);
EXPORT int mpg123_tclose(mpg123_handle *fr);
#ifdef __cplusplus
}
#endif
#endif