VaKeR CYBER ARMY
Logo of a company Server : Apache/2.4.41 (Ubuntu)
System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Directory :  /proc/thread-self/root/usr/share/emscripten/system/include/emscripten/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/thread-self/root/usr/share/emscripten/system/include/emscripten/emscripten.h
#ifndef __emscripten_h__
#define __emscripten_h__

/**
 * This file contains a few useful things for compiling C/C++ code
 * with Emscripten, an LLVM-to-JavaScript compiler.
 *
 * The code can be used permissively under the MIT license.
 *
 * http://emscripten.org
 */

#ifdef __cplusplus
extern "C" {
#endif

#include <stdio.h>

#if !__EMSCRIPTEN__
#include <SDL/SDL.h> /* for SDL_Delay in async_call */
#endif


/* Typedefs */

/*
 * Unaligned types, helpful to force LLVM to emit unaligned
 * loads/stores in places in your code where SAFE_HEAP found
 * an unaligned operation. (It's better to avoid unaligned
 * operations, but if you are reading from a packed stream of
 * bytes or such, these types may be useful.)
 */

typedef short __attribute__((aligned(1))) emscripten_align1_short;

typedef int __attribute__((aligned(2))) emscripten_align2_int;
typedef int __attribute__((aligned(1))) emscripten_align1_int;

typedef float __attribute__((aligned(2))) emscripten_align2_float;
typedef float __attribute__((aligned(1))) emscripten_align1_float;

typedef double __attribute__((aligned(4))) emscripten_align4_double;
typedef double __attribute__((aligned(2))) emscripten_align2_double;
typedef double __attribute__((aligned(1))) emscripten_align1_double;

/*
 * Function pointer types
 */

typedef void (*em_callback_func)(void);
typedef void (*em_arg_callback_func)(void*);
typedef void (*em_str_callback_func)(const char *);

/* Functions */

/*
 * Convenient syntax for inline assembly/js. Allows stuff like
 *
 *    EM_ASM(window.alert('hai'));
 *
 * This also works with asm.js, as it outlines the code (it
 * does a function call to reach it). It supports newlines,
 *
 *    EM_ASM(
 *      window.alert('hai');
 *      window.alert('bai');
 *    )
 *
 * Notes: Double-quotes (") are not supported, but you can use
 *        single-quotes (') in js anyhow.
 *
 *        You can't access C variables with EM_ASM, nor receive
 *        a value back. use EM_ASM_INT or EM_ASM_DOUBLE for that
 */
#define EM_ASM(...) emscripten_asm_const(#__VA_ARGS__)

/*
 * Input-output versions of EM_ASM.
 *
 * EM_ASM_ (an extra _ is added) or EM_ASM_ARGS allow sending values
 * (ints or doubles) into the code. If you also want a return value,
 * EM_ASM_INT receives arguments (of int or double type)
 * and returns an int; EM_ASM_DOUBLE does the same and returns
 * a double.
 *
 * Arguments arrive as $0, $1 etc. The output value should be returned:
 *
 *    int x = EM_ASM_INT({
 *      console.log('I received: ' + [$0, $1]);
 *      return $0 + $1;
 *    }, calc(), otherCalc());
 *
 * Note the { and }. If you just want to receive an output value
 * (int or double) but *not* to pass any values, you can use
 * EM_ASM_INT_V and EM_ASM_DOUBLE_V respectively.
 */
#define EM_ASM_(code, ...) emscripten_asm_const_int(#code, __VA_ARGS__)
#define EM_ASM_ARGS(code, ...) emscripten_asm_const_int(#code, __VA_ARGS__)
#define EM_ASM_INT(code, ...) emscripten_asm_const_int(#code, __VA_ARGS__)
#define EM_ASM_DOUBLE(code, ...) emscripten_asm_const_double(#code, __VA_ARGS__)
#define EM_ASM_INT_V(code) emscripten_asm_const_int(#code)
#define EM_ASM_DOUBLE_V(code) emscripten_asm_const_double(#code)

/*
 * Forces LLVM to not dead-code-eliminate a function. This also
 * exports the function, as if you added it to EXPORTED_FUNCTIONS.
 */
#define EMSCRIPTEN_KEEPALIVE __attribute__((used))

/*
 * Interface to the underlying JS engine. This function will
 * eval() the given script.
 */
extern void emscripten_run_script(const char *script);
extern int emscripten_run_script_int(const char *script);
extern char *emscripten_run_script_string(const char *script); // uses a single buffer - shared between calls!

/*
 * Asynchronously run a script, after a specified amount of
 * time.
 */
extern void emscripten_async_run_script(const char *script, int millis);

/*
 * Asynchronously loads a script from a URL.
 *
 * This integrates with the run dependencies system, so your
 * script can call addRunDependency multiple times, prepare
 * various asynchronous tasks, and call removeRunDependency
 * on them; when all are complete (or there were no run
 * dependencies to begin with), onload is called. An example use
 * for this is to load an asset module, that is, the output of the
 * file packager.
 */
extern void emscripten_async_load_script(const char *script, em_callback_func onload, em_callback_func onerror);

/*
 * Set a C function as the main event loop. The JS environment
 * will call that function at a specified number of frames per
 * second. Setting 0 or a negative value as the fps will use
 * the browser's requestAnimationFrame mechanism. This is
 * *HIGHLY* recommended if you are doing rendering, as
 * the browser's requestAnimationFrame will make sure you
 * render at a proper smooth rate that lines up with the
 * the browser and monitor in a proper way. (If you do not
 * render at all in your application, then you should pick a
 * specific frame rate that makes sense for your code.)
 *
 * Pausing and resuming the main loop is useful if your app
 * needs to perform some synchronous operation, for example
 * to load a file from the network. It might be wrong to
 * run the main loop before that finishes (the original
 * code assumes that), so you can break the code up into
 * asynchronous callbacks, but you must pause the main
 * loop until they complete.
 *
 * If you want your main loop function to receive a void*
 * argument, use emscripten_set_main_loop_arg.
 *
 * There can be only *one* main loop function at a time. You
 * can cancel the current one and set another, if you want to
 * change it.
 *
 * @simulate_infinite_loop If true, this function will throw an
 *    exception in order to stop execution of the caller. This
 *    will lead to the main loop being entered instead of code
 *    after the call to emscripten_set_main_loop being run, which
 *    is the closest we can get to simulating an infinite loop
 *    (we do something similar in glutMainLoop in GLUT). If this
 *    parameter is false, then the behavior is the same as it
 *    was before this parameter was added to the API, which is
 *    that execution continues normally. Note that in both cases
 *    we do not run global destructors, atexit, etc., since we
 *    know the main loop will still be running, but if we do
 *    not simulate an infinite loop then the stack will be unwound.
 *    That means that if simulate_infinite_loop is false, and
 *    you created an object on the stack, it will be cleaned up
 *    before the main loop will be called the first time.
 */
#if __EMSCRIPTEN__
extern void emscripten_set_main_loop(em_callback_func func, int fps, int simulate_infinite_loop);
extern void emscripten_set_main_loop_arg(em_arg_callback_func func, void *arg, int fps, int simulate_infinite_loop);
extern void emscripten_pause_main_loop(void);
extern void emscripten_resume_main_loop(void);
extern void emscripten_cancel_main_loop(void);
#else
#define emscripten_set_main_loop(func, fps, simulateInfiniteLoop) \
  while (1) { func(); usleep(1000000/fps); }
#define emscripten_cancel_main_loop() exit(1);
#endif

/*
 * Registers callback functions for receiving socket events.
 * These events are analogous to WebSocket events but are emitted
 * *after* the internal emscripten socket processing has occurred
 * so, for example, the message callback will be triggered after
 * the data has been added to the recv_queue. This means that an
 * application receiving this callback can simply read/recv the data
 * using the file descriptor passed as a parameter to the callback.
 * All of the callbacks are passed a file descriptor representing
 * the fd that the notified activity took place on. The error
 * callback also takes an int representing errno and a char* that
 * represents the error message.
 *
 * Only a single callback function may be registered to handle any
 * given Event, so calling a given registration function more than
 * once will cause the first callback to be replaced by the second.
 * Similarly passing a NULL callback function to any
 * emscripten_set_socket_*_callback call will deregister the callback
 * registered for that Event.
 *
 * The userData pointer allows arbitrary data specified during Event
 * registration to be passed to the callback, this is particularly
 * useful for passing "this" pointers around in Object Oriented code.
 *
 * In addition to being able to register network callbacks from C
 * it is also possible for native JavaScript code to directly use the
 * underlying mechanism used to implement the callback registration.
 * For example, the following are the simple logging callbacks that
 * are registered by default when SOCKET_DEBUG is enabled
 * Module['websocket']['on']('error', function(error) {console.log('Socket error ' + error);});
 * Module['websocket']['on']('open', function(fd) {console.log('Socket open fd = ' + fd);});
 * Module['websocket']['on']('listen', function(fd) {console.log('Socket listen fd = ' + fd);});
 * Module['websocket']['on']('connection', function(fd) {console.log('Socket connection fd = ' + fd);});
 * Module['websocket']['on']('message', function(fd) {console.log('Socket message fd = ' + fd);});
 * Module['websocket']['on']('close', function(fd) {console.log('Socket close fd = ' + fd);});
 *
 * Most of the JavaScript callback functions above get passed the
 * file descriptor of the socket that triggered the callback, the
 * on error callback however gets passed an *array* that contains
 * the file descriptor, the error code and an error message.
 *
 * Note that the underlying JavaScript implementation doesn't pass
 * userData, this is actually mostly of use to C/C++ code and the
 * emscripten_set_socket_*_callback calls actually create a closure
 * containing the userData and pass that as the callback to the
 * underlying JavaScript Event registration mechanism.
 */
typedef void (*em_socket_callback)(int fd, void *userData);
typedef void (*em_socket_error_callback)(int fd, int err, const char* msg, void *userData);
// Triggered by a WebSocket error.
extern void emscripten_set_socket_error_callback(void *userData, em_socket_error_callback *callback);
// Triggered when the WebSocket has actually opened.
extern void emscripten_set_socket_open_callback(void *userData, em_socket_callback callback);
// Triggered when listen has been called (synthetic event).
extern void emscripten_set_socket_listen_callback(void *userData, em_socket_callback callback);
// Triggered when the connection has actually been established.
extern void emscripten_set_socket_connection_callback(void *userData, em_socket_callback callback);
// Triggered when data is available to be read from the socket.
extern void emscripten_set_socket_message_callback(void *userData, em_socket_callback callback);
// Triggered when the WebSocket has actually closed.
extern void emscripten_set_socket_close_callback(void *userData, em_socket_callback callback);

/*
 * Add a function to a queue of events that will execute
 * before the main loop will continue. The event is pushed
 * into the back of the queue. (Note that in the native version
 * of this we simply execute the function, so to keep semantics
 * identical be careful to not push while the queue is being
 * used.)
 *
 * Main loop blockers block the main loop from running, and
 * can be counted to show progress. In contrast, emscripten_async_calls
 * are not counted, do not block the main loop, and can fire
 * at specific time in the future.
 */
#if __EMSCRIPTEN__
extern void _emscripten_push_main_loop_blocker(em_arg_callback_func func, void *arg, const char *name);
extern void _emscripten_push_uncounted_main_loop_blocker(em_arg_callback_func func, void *arg, const char *name);
#else
inline void _emscripten_push_main_loop_blocker(em_arg_callback_func func, void *arg, const char *name) {
  func(arg);
}
inline void _emscripten_push_uncounted_main_loop_blocker(em_arg_callback_func func, void *arg, const char *name) {
  func(arg);
}
#endif
#define emscripten_push_main_loop_blocker(func, arg) \
  _emscripten_push_main_loop_blocker(func, arg, #func)
#define emscripten_push_uncounted_main_loop_blocker(func, arg) \
  _emscripten_push_uncounted_main_loop_blocker(func, arg, #func)

/*
 * Sets the number of blockers remaining until some user-relevant
 * event. This affects how we show progress. So if you set this
 * to 10, then push 10 blockers, as they complete the user will
 * see x/10 and so forth.
 */
#if __EMSCRIPTEN__
extern void emscripten_set_main_loop_expected_blockers(int num);
#else
inline void emscripten_set_main_loop_expected_blockers(int num) {}
#endif

/*
 * Call a C function asynchronously, that is, after returning
 * control to the JS event loop. This is done by a setTimeout.
 * When building natively this becomes a simple direct call,
 * after SDL_Delay (you must include SDL.h for that).
 *
 * If millis is negative, the browser's requestAnimationFrame
 * mechanism is used.
 */
#if __EMSCRIPTEN__
extern void emscripten_async_call(em_arg_callback_func func, void *arg, int millis);
#else
inline void emscripten_async_call(em_arg_callback_func func, void *arg, int millis) {
  if (millis) SDL_Delay(millis);
  func(arg);
}
#endif

/*
 * Exits the program immediately, but leaves the runtime alive
 * so that you can continue to run code later (so global destructors
 * etc. are not run). Note that the runtime is kept alive automatically
 * when you do an asynchronous operation like emscripten_async_call,
 * so you don't need to call this function in that case.
 */
extern void emscripten_exit_with_live_runtime(void);

/*
 * Shuts down the runtime and exits (terminates) the program, as if
 * you called exit(). The difference is that emscripten_force_exit
 * will shut down the runtime even if you previously called
 * emscripten_exit_with_live_runtime or otherwise kept the
 * runtime alive. In other words, this method gives you the
 * option to completely shut down the runtime after it was
 * kept alive beyond the completion of main().
 */
extern void emscripten_force_exit(int status);

/*
 * Hide the OS mouse cursor over the canvas. Note that SDL's
 * SDL_ShowCursor command shows and hides the SDL cursor, not
 * the OS one. This command is useful to hide the OS cursor
 * if your app draws its own cursor.
 */
void emscripten_hide_mouse(void);

/*
 * Resizes the pixel width and height of the <canvas> element
 * on the Emscripten web page.
 */
void emscripten_set_canvas_size(int width, int height);

/*
 * Get the current pixel width and height of the <canvas> element
 * as well as whether the canvas is fullscreen or not.
 */
void emscripten_get_canvas_size(int *width, int *height, int *isFullscreen);

/*
 * Returns the highest-precision representation of the
 * current time that the browser provides. This uses either
 * Date.now or performance.now. The result is *not* an
 * absolute time, and is only meaningful in comparison to
 * other calls to this function. The unit is ms.
 */
#if __EMSCRIPTEN__
double emscripten_get_now(void);
#else
#include <time.h>
static inline double emscripten_get_now(void) {
  return (1000*clock())/(double)CLOCKS_PER_SEC;
}
#endif

/*
 * Simple random number generation in [0, 1), maps to Math.random().
 */
float emscripten_random(void);

/*
 * This macro-looking function will cause Emscripten to
 * generate a comment in the generated code.
 * XXX This is deprecated for now, because it requires us to
 *     hold all global vars in memory. We need a better solution.
 */
//extern void EMSCRIPTEN_COMMENT(const char *text);

/*
 * Emscripten file system api
 */

/*
 * Load file from url in *synchronous* way, for the asynchronous 
 * version, see the emscripten_async_wget function below.
 *
 * In addition to fetching the URL from the network, 
 * the contents are prepared so that the data is usable 
 * in IMG_Load and * so forth.
 *
 * This function is blocking, it won't return until all
 * operations are finished. You can then open and read
 * the file if it succeeded.
 *
 * To use this function, you will need to compile your 
 * application with the linker flag `-s ASYNCIFY=1`
 */
void emscripten_wget(const char* url, const char* file);

/*
 * Asynchronous version of emscripten_wget.
 * When file is ready then 'onload' callback will called.
 * If any error occurred 'onerror' will called.
 * The callbacks are called with the file as their argument.
 */
void emscripten_async_wget(const char* url, const char* file, em_str_callback_func onload, em_str_callback_func onerror);

/*
 * Data version of emscripten_async_wget. Instead of writing
 * to a file, it writes to a buffer directly in memory.
 * This avoids the overhead of using the emulated
 * filesystem, note however that since files are not used,
 * It cannot do the 'prepare' stage to set things up for
 * IMG_Load and so forth (IMG_Load etc. work on files).
 *
 * @param arg User-defined data that is passed to the callbacks,
 *
 * @param onload Callback on success, with the @arg that
 *               was provided to this function, a pointer
 *               to a buffer with the data, and the size
 *               of the buffer. As in the worker API, the
 *               data buffer only lives during the
 *               callback, so you should use it or copy
 *               it during that time and not later.
 *
 * @param onerror An optional callback on failure, with the
 *                @arg that was provided to this function.
 *
 */
typedef void (*em_async_wget_onload_func)(void*, void*, int);

void emscripten_async_wget_data(const char* url, void *arg, em_async_wget_onload_func onload, em_arg_callback_func onerror);

/*
 * More feature-complete version of emscripten_async_wget. Note:
 * this version is experimental.
 *
 * @param url Requested url
 * @param file File to load
 * @param requesttype 'GET' or 'POST'
 * @param param If is post request, param is the post parameter
 *              like key=value&key2=value2.
 * @param arg It is a pointer will be pass to the callback
 * @param onload When file is ready then 'onload' callback will called.
 * @param onprogress During the download 'onprogress' callback will called.
 * @param onerror If any error occurred 'onerror' will called.
 *
 * The callbacks are called with a request handle,
 * an object pointer give in parameter 
 * and file if is a success, the progress value during progress
 * and http status code if is an error.
 *
 * @return Handle to request. It can be used to abort request
 */
typedef void (*em_async_wget2_onload_func)(unsigned, void*, const char*);
typedef void (*em_async_wget2_onstatus_func)(unsigned, void*, int);

int emscripten_async_wget2(const char* url, const char* file,  const char* requesttype, const char* param, void *arg, em_async_wget2_onload_func onload, em_async_wget2_onstatus_func onerror, em_async_wget2_onstatus_func onprogress);

/*
 * More feature-complete version of emscripten_async_wget_data. Note:
 * this version is experimental.
 *
 * @param url Requested url
 * @param requesttype 'GET' or 'POST'
 * @param param If is post request, param is the post parameter
 *              like key=value&key2=value2.
 * @param arg It is a pointer will be pass to the callback
 * @param free Tells the runtime whether to free the returned buffer
               after onload is complete. If false freeing the buffer is the receiver's
               responsibility.
 * @param onload When data is ready then 'onload' callback will called.
 * @param onprogress During the download 'onprogress' callback will called.
 * @param onerror If any error occurred 'onerror' will called.
 *               
 * The callbacks are called with a request handle and an object pointer give in parameter 
 * When data is ready then 'onload' callback will called with a pointer to
   the buffer in memory and the size in bytes.
 * During the download 'onprogress' callback will called. The first argument is
   the number of bytes loaded. The second argument is the total size in bytes,
   or zero if the size is unavailable.
 * If any error occurred 'onerror' will called with the HTTP status code
   and a string with the status description.
 *
 * @return Handle to request. It can be used to abort request
 */
typedef void (*em_async_wget2_data_onload_func)(unsigned, void*, void*, unsigned);
typedef void (*em_async_wget2_data_onerror_func)(unsigned, void*, int, const char*);
typedef void (*em_async_wget2_data_onprogress_func)(unsigned, void*, int, int);

int emscripten_async_wget2_data(const char* url, const char* requesttype, const char* param, void *arg, int free, em_async_wget2_data_onload_func onload, em_async_wget2_data_onerror_func onerror, em_async_wget2_data_onprogress_func onprogress);

/*
 * Abort async request
 *
 * @param handle Request handle
 */
void emscripten_async_wget2_abort(int handle);

/*
 * Prepare a file in asynchronous way. This does just the
 * preparation part of emscripten_async_wget, that is, it
 * works on file data already present, and asynchronously
 * prepares it for use in IMG_Load, Mix_LoadWAV, etc.
 * When file is loaded then 'onload' callback will called.
 * If any error occurred 'onerror' will called.
 * The callbacks are called with the file as their argument.
 * @return 0 if successful, -1 if the file does not exist
 */
int emscripten_async_prepare(const char* file, em_str_callback_func onload, em_str_callback_func onerror);

/*
 * Data version of emscripten_async_prepare, which receives
 * raw data as input instead of a filename (this can prevent
 * the need to write data to a file first). onload and
 * onerror are called back with the given arg pointer as the
 * first parameter. onload also receives a second
 * parameter, which is a 'fake' filename which you can
 * then pass into IMG_Load (it is not an actual file,
 * but it identifies this image for IMG_Load to be able
 * to process it). Note that the user of this API is
 * responsible for free()ing the memory allocated for
 * the fake filename.
 * @suffix The file suffix, e.g. 'png' or 'jpg'.
 */
typedef void (*em_async_prepare_data_onload_func)(void*, const char*);

void emscripten_async_prepare_data(char* data, int size, const char *suffix, void *arg, em_async_prepare_data_onload_func onload, em_arg_callback_func onerror);

/*
 * Worker API. Basically a wrapper around web workers, lets
 * you create workers and communicate with them.

 * Note that the current API is mainly focused on a main thread that
 * sends jobs to workers and waits for responses, i.e., in an
 * asymmetrical manner, there is no current API to send a message
 * without being asked for it from a worker to the main thread.
 *
 */

typedef int worker_handle;

/*
 * Create and destroy workers. A worker must be compiled separately
 * from the main program, and with the BUILD_AS_WORKER flag set to 1.
 */
worker_handle emscripten_create_worker(const char *url);
void emscripten_destroy_worker(worker_handle worker);

/*
 * Asynchronously call a worker.
 *
 * The worker function will be called with two parameters: a
 * data pointer, and a size.  The data block defined by the
 * pointer and size exists only during the callback and
 * _cannot_ be relied upon afterwards - if you need to keep some
 * of that information around, you need to copy it to a safe
 * location.
 *
 * The called worker function can return data, by calling
 * emscripten_worker_respond(). If called, and if a callback was
 * given, then the callback will be called with three arguments:
 * a data pointer, a size, and  * an argument that was provided
 * when calling emscripten_call_worker (to more easily associate
 * callbacks to calls). The data block defined by the data pointer
 * and size behave like the data block in the worker function -
 * it exists only during the callback.
 *
 * @funcname the name of the function in the worker. The function
 *           must be a C function (so no C++ name mangling), and
 *           must be exported (EXPORTED_FUNCTIONS).
 * @data the address of a block of memory to copy over
 * @size the size of the block of memory
 * @callback the callback with the response (can be null)
 * @arg an argument to be passed to the callback
 */
typedef void (*em_worker_callback_func)(char*, int, void*);

void emscripten_call_worker(worker_handle worker, const char *funcname, char *data, int size, em_worker_callback_func callback, void *arg);

/*
 * Sends a response when in a worker call. Both functions post a message
 * back to the thread which called the worker.  The _respond_provisionally
 * variant can be invoked multiple times, which will queue up messages to
 * be posted to the worker's creator.  Eventually, the _respond variant must
 * be invoked, which will disallow further messages and free framework
 * resources previously allocated for this worker call. (Calling the
 * provisional version is optional, but you must call the non-provisional
 * one to avoid leaks.) 
 */
void emscripten_worker_respond(char *data, int size);
void emscripten_worker_respond_provisionally(char *data, int size);

/*
 * Checks how many responses are being waited for from a worker. This
 * only counts calls to emscripten_call_worker that had a non-null
 * callback (if it's null, we do not have any tracking of a response),
 * and that the response was not yet received. It is a simple way to
 * check on the status of the worker to see how busy it is, and do
 * basic decisions about throttling.
 */
int emscripten_get_worker_queue_size(worker_handle worker);

/*
 * Select the networking backend to use. By default emscripten's
 * socket/networking implementation will use websockets, with this
 * function you can change that to WebRTC.
 * This function must be called before any network functions are
 * called.
 */
#define EMSCRIPTEN_NETWORK_WEBSOCKETS 0
#define EMSCRIPTEN_NETWORK_WEBRTC     1
void emscripten_set_network_backend(int backend);

/*
 * Returns the value of a compiler setting. For example
 *
 *   emscripten_get_compiler_setting("PRECISE_F32")
 *
 * will return an integer representing the value of
 * PRECISE_F32 during compilation. For values containing
 * anything other than an integer, a string is returned
 * (you will need to cast the int return value to a char*).
 *
 * Some useful things this can do is provide the
 * version of emscripten ("EMSCRIPTEN_VERSION"), the optimization
 * level ("OPT_LEVEL"), debug level ("DEBUG_LEVEL"), etc.
 *
 * For this command to work, you must build with
 *   -s RETAIN_COMPILER_SETTINGS=1
 * as otherwise we do not want to increase the build size
 * with this metadata.
 */
int emscripten_get_compiler_setting(const char *name);

/*
 * Emits
 *   debugger;
 * inline in the code, which tells the JS engine to invoke
 * the debugger if it gets there.
 */
void emscripten_debugger();

/*
 * Get preloaded image data and the size of the image.
 *
 * Returns pointer to loaded image or NULL.
 * width/height of image are written to w/h if data is valid.
 * Pointer should be free()'d
 */
char *emscripten_get_preloaded_image_data(const char *path, int *w, int *h);

/*
 * Get preloaded image data from a c FILE *.
 *
 * Returns pointer to loaded image or NULL.
 * width/height of image are written to w/h if data is valid.
 * Pointer should be free()'d
 */
char *emscripten_get_preloaded_image_data_from_FILE(FILE *file, int *w, int *h);

/* Logging utilities */

/* If specified, logs directly to the browser console/inspector 
 * window. If not specified, logs via the application Module. */
#define EM_LOG_CONSOLE   1
/* If specified, prints a warning message. */
#define EM_LOG_WARN      2
/* If specified, prints an error message. If neither EM_LOG_WARN 
 * or EM_LOG_ERROR is specified, an info message is printed.
 * EM_LOG_WARN and EM_LOG_ERROR are mutually exclusive. */
#define EM_LOG_ERROR     4
/* If specified, prints a callstack that contains filenames referring 
 * to original C sources using source map information. */
#define EM_LOG_C_STACK   8
/* If specified, prints a callstack that contains filenames referring
 * to lines to the built .js/.html file along with the message. The 
 * flags EM_LOG_C_STACK and EM_LOG_JS_STACK can be combined to output 
 * both untranslated and translated file+line information. */
#define EM_LOG_JS_STACK 16
/* If specified, C/C++ function names are demangled before printing. 
 * Otherwise, the mangled post-compilation JS function names are 
 * displayed. */
#define EM_LOG_DEMANGLE 32
/* If specified, the pathnames of the file information in the call 
 * stack will be omitted. */
#define EM_LOG_NO_PATHS 64
/* If specified, prints out the actual values of the parameters the 
 * functions were invoked with. */
#define EM_LOG_FUNC_PARAMS 128

/*
 * Prints out a message to the console, optionally with the 
 * callstack information.
 * @param flags A binary OR of items from the list of EM_LOG_xxx 
 *                 flags that specify printing options.
 * @param '...' A printf-style "format, ..." parameter list that 
 *                 is parsed according to the printf formatting rules.
 */
void emscripten_log(int flags, ...);

/*
 * Programmatically obtains the current callstack.
 * @param flags    A binary OR of items from the list of EM_LOG_xxx 
 *                    flags that specify printing options. The 
 *                    items EM_LOG_CONSOLE, EM_LOG_WARN and 
 *                    EM_LOG_ERROR do not apply in this function and 
 *                    are ignored.
 * @param out      A pointer to a memory region where the callstack 
 *                    string will be written to. The string outputted 
 *                    by this function will always be null-terminated.
 * @param maxbytes The maximum number of bytes that this function can
 *                    write to the memory pointed to by 'out'. If 
 *                    there is no enough space, the output will be 
 *                    truncated (but always null-terminated).
 * @return Returns the number of bytes written. (not number of 
 *         characters, so this will also include the terminating zero)
 
 * To query the amount of bytes needed for a callstack without writing 
 * it, pass 0 to 'out' and 'maxbytes', in which case the function will
 * return the number of bytes (including the terminating zero) that 
 * will be needed to hold the full callstack. Note that this might be 
 * fully accurate since subsequent calls will carry different line 
 * numbers, so it is best to allocate a few bytes extra to be safe.
 */
int emscripten_get_callstack(int flags, char *out, int maxbytes);


/* ===================================== */
/* Internal APIs. Be careful with these. */
/* ===================================== */

/*
 * jcache-friendly printf. printf in general will receive a string
 * literal, which becomes a global constant, which invalidates all
 * jcache entries. emscripten_jcache_printf is parsed before
 * clang into something without any string literals, so you can
 * add such printouts to your code and only the (chunk containing
 * the) function you modify will be invalided and recompiled.
 *
 * Note in particular that you need to already have a call to this
 * function in your code *before* you add one and do an incremental
 * build, so that adding an external reference does not invalidate
 * everything.
 *
 * This function assumes the first argument is a string literal
 * (otherwise you don't need it), and the other arguments, if any,
 * are neither strings nor complex expressions (but just simple
 * variables). (You can create a variable to store a complex
 * expression on the previous line, if necessary.)
 */
#ifdef __cplusplus
void emscripten_jcache_printf(const char *format, ...);
void emscripten_jcache_printf_(...); /* internal use */
#endif

/* Helper API for EM_ASM - do not call this yourself */
void emscripten_asm_const(const char *code);
int emscripten_asm_const_int(const char *code, ...);
double emscripten_asm_const_double(const char *code, ...);

/*
 * Sleep for `ms` milliseconds
 * This function should only be used when ASYNCIFY is enabled
 */
#if __EMSCRIPTEN__
void emscripten_sleep(unsigned int ms);
#else
#define emscripten_sleep SDL_Delay
#endif

#ifdef __cplusplus
}
#endif

#endif // __emscripten_h__


VaKeR 2022