From a3bdacdf622bef1072fcb66332ad7cc57111001f Mon Sep 17 00:00:00 2001 From: lubomyr Date: Wed, 7 Sep 2016 23:14:58 +0300 Subject: [PATCH] glshim updated, added latest changes by ptitSeb --- project/jni/glshim/CMakeLists.txt | 9 +- project/jni/glshim/spec/build | 8 +- .../jni/glshim/spec/template/base/wrap.c.j2 | 2 +- project/jni/glshim/spec/template/glxfuncs.j2 | 2 +- project/jni/glshim/spec/yml/glext-1.1.yml | 3 + project/jni/glshim/src/config.h | 4 + project/jni/glshim/src/gl/buffers.c | 52 +- project/jni/glshim/src/gl/directstate.c | 184 +- project/jni/glshim/src/gl/eval.c | 30 +- project/jni/glshim/src/gl/framebuffers.c | 76 +- project/jni/glshim/src/gl/gl.c | 179 +- project/jni/glshim/src/gl/gl.h | 11 + project/jni/glshim/src/gl/light.c | 8 +- project/jni/glshim/src/gl/line.c | 2 +- project/jni/glshim/src/gl/raster.c | 14 +- project/jni/glshim/src/gl/render.c | 12 +- project/jni/glshim/src/gl/stack.c | 8 +- project/jni/glshim/src/gl/texgen.c | 14 +- project/jni/glshim/src/gl/texture.c | 102 +- project/jni/glshim/src/gl/wrap/gl.c | 278 +- project/jni/glshim/src/gl/wrap/gles.c | 290 +- project/jni/glshim/src/gl/wrap/gles.h | 184 +- project/jni/glshim/src/gl/wrap/glesext.c | 66 +- project/jni/glshim/src/gl/wrap/glstub.c | 2 +- project/jni/glshim/src/glx/glesfuncs.inc | 4 +- project/jni/glshim/src/glx/glx.c | 83 +- project/jni/glshim/src/glx/lookup.c | 16 +- .../jni/glshim/src/proxy/client/src/client.c | 3496 ++++++++--------- 28 files changed, 2670 insertions(+), 2469 deletions(-) mode change 100644 => 100755 project/jni/glshim/spec/template/glxfuncs.j2 diff --git a/project/jni/glshim/CMakeLists.txt b/project/jni/glshim/CMakeLists.txt index d7265a3e7..13ac06b29 100755 --- a/project/jni/glshim/CMakeLists.txt +++ b/project/jni/glshim/CMakeLists.txt @@ -12,6 +12,8 @@ option(PANDORA "Set to ON if targeting an OpenPandora device" ${PANDORA}) option(BCMHOST "Set to ON if targeting an RPi(2) device" ${BCMHOST}) option(ODROID "Set to ON if targeting an ODroid device" ${ODROID}) +option(USE_DRAWTEX "Set to ON to use the glDrawTexiOES extension" ${USE_DRAWTEX}) + # Raspberry PI if(BCMHOST) include_directories(/opt/vc/include /opt/vc/include/interface/vcos/pthreads /opt/vc/include/interface/vmcs_host/linux) @@ -22,14 +24,19 @@ endif() if(PANDORA) add_definitions(-DPANDORA) add_definitions(-DTEXSTREAM) + add_definitions(-mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ftree-vectorize -fsingle-precision-constant -ffast-math) endif() if(ODROID) add_definitions(-DODROID) endif() +if(USE_DRAWTEX) + add_definitions(-DUSE_DRAWTEX) +endif() + link_directories(${CMAKE_BINARY_DIR}/lib) -add_definitions(-g -std=gnu99 -funwind-tables -O3) +add_definitions(-g -std=gnu99 -funwind-tables -O3 -fvisibility=hidden) include_directories(include) add_subdirectory(src) diff --git a/project/jni/glshim/spec/build b/project/jni/glshim/spec/build index 85879ebcc..80114d972 100755 --- a/project/jni/glshim/spec/build +++ b/project/jni/glshim/spec/build @@ -5,16 +5,16 @@ base=../src/ gles1=$(ls -1 yml/*-1.1.yml | tr '\n' ',' | sed -e 's/,$//') gles=$(ls -1 yml/*es-1.1.yml | tr '\n' ',' | sed -e 's/,$//') glext=$(ls -1 yml/*ext-1.1.yml | tr '\n' ',' | sed -e 's/,$//') -gles2=$(ls -1 yml/*-2.0.yml | tr '\n' ',' | sed -e 's/,$//') +#gles2=$(ls -1 yml/*-2.0.yml | tr '\n' ',' | sed -e 's/,$//') ./gen.py "$gles" --ifndef USE_ES2 gleswrap.c.j2 gleswrap.c gles.h > "$base/gl/wrap/gles.c" ./gen.py "$glext" --ifndef USE_ES2 glextwrap.c.j2 glextwrap.c gles.h > "$base/gl/wrap/glesext.c" ./gen.py "$gles1" --ifndef USE_ES2 glwrap.h.j2 gleswrap.h ../gl.h > "$base/gl/wrap/gles.h" ./gen.py "$gles1" --ifndef USE_ES2 glxfuncs.j2 glxfuncs.inc ../gl/gl.h > "$base/glx/glesfuncs.inc" -./gen.py "$gles2" --ifdef USE_ES2 gleswrap.c.j2 gles2wrap.c gles2.h > "$base/gl/wrap/gles2.c" -./gen.py "$gles2" --ifdef USE_ES2 glwrap.h.j2 gles2wrap.h ../gl.h > "$base/gl/wrap/gles2.h" -./gen.py "$gles2" --ifdef USE_ES2 glxfuncs.j2 gles2funcs.inc ../gl/gl.h > "$base/glx/gles2funcs.inc" +#./gen.py "$gles2" --ifdef USE_ES2 gleswrap.c.j2 gles2wrap.c gles2.h > "$base/gl/wrap/gles2.c" +#./gen.py "$gles2" --ifdef USE_ES2 glwrap.h.j2 gles2wrap.h ../gl.h > "$base/gl/wrap/gles2.h" +#./gen.py "$gles2" --ifdef USE_ES2 glxfuncs.j2 gles2funcs.inc ../gl/gl.h > "$base/glx/gles2funcs.inc" # ./gen.py "yml/egl.yml" eglwrap.c.j2 eglwrap.c "" > "$base/gl/wrap/egl.c" & diff --git a/project/jni/glshim/spec/template/base/wrap.c.j2 b/project/jni/glshim/spec/template/base/wrap.c.j2 index 1c23260ea..ee1102a22 100755 --- a/project/jni/glshim/spec/template/base/wrap.c.j2 +++ b/project/jni/glshim/spec/template/base/wrap.c.j2 @@ -9,7 +9,7 @@ {% if not func.void %}return {% endif %}{% block prefix %}wrap{% endblock %}_{{ func.name }}({{ func.args|args(0) }}); {%- endblock %} } -{{ func.return }} {{ func.name }}({{ func.args|args }}) __attribute__((alias("glshim_{{ func.name }}"))); +{{ func.return }} {{ func.name }}({{ func.args|args }}) __attribute__((alias("glshim_{{ func.name }}"))) __attribute__((visibility("default"))); {% endblock %} {% endfor %} {% endblock %} diff --git a/project/jni/glshim/spec/template/glxfuncs.j2 b/project/jni/glshim/spec/template/glxfuncs.j2 old mode 100644 new mode 100755 index 7a721178b..7fc607275 --- a/project/jni/glshim/spec/template/glxfuncs.j2 +++ b/project/jni/glshim/spec/template/glxfuncs.j2 @@ -1,3 +1,3 @@ {% for func in functions %} -EX({{ func.name }}); +_EX({{ func.name }}); {% endfor %} diff --git a/project/jni/glshim/spec/yml/glext-1.1.yml b/project/jni/glshim/spec/yml/glext-1.1.yml index c02cb77ca..87630ef23 100755 --- a/project/jni/glshim/spec/yml/glext-1.1.yml +++ b/project/jni/glshim/spec/yml/glext-1.1.yml @@ -25,3 +25,6 @@ glGetRenderbufferParameteriv: [void, GLenum target, GLenum pname, "GLint * param glDrawTexi: [void, GLint x, GLint y, GLint z, GLint width, GLint height] glDrawTexf: [void, GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height] + +glMultiDrawArrays: [void, GLenum mode, "const GLint *first", "const GLsizei *count", GLsizei primcount] +glMultiDrawElements: [void, GLenum mode, "GLsizei *count", GLenum type, "const void * const *indices", GLsizei primcount] diff --git a/project/jni/glshim/src/config.h b/project/jni/glshim/src/config.h index d11b5a5a2..b2a48cf02 100755 --- a/project/jni/glshim/src/config.h +++ b/project/jni/glshim/src/config.h @@ -117,6 +117,10 @@ #define skip_glLoadMatrixf #define skip_glMultMatrixf +// MultiDrawArrays +#define skip_glMultiDrawArrays +#define skip_glMultiDrawElements + // don't compile these into display lists #define direct_glColorPointer #define direct_glDeleteLists diff --git a/project/jni/glshim/src/gl/buffers.c b/project/jni/glshim/src/gl/buffers.c index 716d175d1..3956dca67 100755 --- a/project/jni/glshim/src/gl/buffers.c +++ b/project/jni/glshim/src/gl/buffers.c @@ -308,30 +308,30 @@ void glshim_glGetBufferPointerv(GLenum target, GLenum pname, GLvoid ** params) { } //Direct wrapper -void glGenBuffers(GLsizei n, GLuint * buffers) __attribute__((alias("glshim_glGenBuffers"))); -void glBindBuffer(GLenum target, GLuint buffer) __attribute__((alias("glshim_glBindBuffer"))); -void glBufferData(GLenum target, GLsizeiptr size, const GLvoid * data, GLenum usage) __attribute__((alias("glshim_glBufferData"))); -void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data) __attribute__((alias("glshim_glBufferSubData"))); -void glDeleteBuffers(GLsizei n, const GLuint * buffers) __attribute__((alias("glshim_glDeleteBuffers"))); -GLboolean glIsBuffer(GLuint buffer) __attribute__((alias("glshim_glIsBuffer"))); -void glGetBufferParameteriv(GLenum target, GLenum value, GLint * data) __attribute__((alias("glshim_glGetBufferParameteriv"))); -void *glMapBuffer(GLenum target, GLenum access) __attribute__((alias("glshim_glMapBuffer"))); -GLboolean glUnmapBuffer(GLenum target) __attribute__((alias("glshim_glUnmapBuffer"))); -void glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid * data) __attribute__((alias("glshim_glGetBufferSubData"))); -void glGetBufferPointerv(GLenum target, GLenum pname, GLvoid ** params) __attribute__((alias("glshim_glGetBufferPointerv"))); +void glGenBuffers(GLsizei n, GLuint * buffers) AliasExport("glshim_glGenBuffers"); +void glBindBuffer(GLenum target, GLuint buffer) AliasExport("glshim_glBindBuffer"); +void glBufferData(GLenum target, GLsizeiptr size, const GLvoid * data, GLenum usage) AliasExport("glshim_glBufferData"); +void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data) AliasExport("glshim_glBufferSubData"); +void glDeleteBuffers(GLsizei n, const GLuint * buffers) AliasExport("glshim_glDeleteBuffers"); +GLboolean glIsBuffer(GLuint buffer) AliasExport("glshim_glIsBuffer"); +void glGetBufferParameteriv(GLenum target, GLenum value, GLint * data) AliasExport("glshim_glGetBufferParameteriv"); +void *glMapBuffer(GLenum target, GLenum access) AliasExport("glshim_glMapBuffer"); +GLboolean glUnmapBuffer(GLenum target) AliasExport("glshim_glUnmapBuffer"); +void glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid * data) AliasExport("glshim_glGetBufferSubData"); +void glGetBufferPointerv(GLenum target, GLenum pname, GLvoid ** params) AliasExport("glshim_glGetBufferPointerv"); //ARB wrapper -void glGenBuffersARB(GLsizei n, GLuint * buffers) __attribute__((alias("glshim_glGenBuffers"))); -void glBindBufferARB(GLenum target, GLuint buffer) __attribute__((alias("glshim_glBindBuffer"))); -void glBufferDataARB(GLenum target, GLsizeiptr size, const GLvoid * data, GLenum usage) __attribute__((alias("glshim_glBufferData"))); -void glBufferSubDataARB(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data) __attribute__((alias("glshim_glBufferSubData"))); -void glDeleteBuffersARB(GLsizei n, const GLuint * buffers) __attribute__((alias("glshim_glDeleteBuffers"))); -GLboolean glIsBufferARB(GLuint buffer) __attribute__((alias("glshim_glIsBuffer"))); -void glGetBufferParameterivARB(GLenum target, GLenum value, GLint * data) __attribute__((alias("glshim_glGetBufferParameteriv"))); -void *glMapBufferARB(GLenum target, GLenum access) __attribute__((alias("glshim_glMapBuffer"))); -GLboolean glUnmapBufferARB(GLenum target) __attribute__((alias("glshim_glUnmapBuffer"))); -void glGetBufferSubDataARB(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid * data) __attribute__((alias("glshim_glGetBufferSubData"))); -void glGetBufferPointervARB(GLenum target, GLenum pname, GLvoid ** params) __attribute__((alias("glshim_glGetBufferPointerv"))); +void glGenBuffersARB(GLsizei n, GLuint * buffers) AliasExport("glshim_glGenBuffers"); +void glBindBufferARB(GLenum target, GLuint buffer) AliasExport("glshim_glBindBuffer"); +void glBufferDataARB(GLenum target, GLsizeiptr size, const GLvoid * data, GLenum usage) AliasExport("glshim_glBufferData"); +void glBufferSubDataARB(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data) AliasExport("glshim_glBufferSubData"); +void glDeleteBuffersARB(GLsizei n, const GLuint * buffers) AliasExport("glshim_glDeleteBuffers"); +GLboolean glIsBufferARB(GLuint buffer) AliasExport("glshim_glIsBuffer"); +void glGetBufferParameterivARB(GLenum target, GLenum value, GLint * data) AliasExport("glshim_glGetBufferParameteriv"); +void *glMapBufferARB(GLenum target, GLenum access) AliasExport("glshim_glMapBuffer"); +GLboolean glUnmapBufferARB(GLenum target) AliasExport("glshim_glUnmapBuffer"); +void glGetBufferSubDataARB(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid * data) AliasExport("glshim_glGetBufferSubData"); +void glGetBufferPointervARB(GLenum target, GLenum pname, GLvoid ** params) AliasExport("glshim_glGetBufferPointerv"); // VAO **************** static GLuint lastvao = 1; @@ -429,8 +429,8 @@ GLboolean glshim_glIsVertexArray(GLuint array) { } //Dirzct wrapper -void glGenVertexArrays(GLsizei n, GLuint *arrays) __attribute__((alias("glshim_glGenVertexArrays"))); -void glBindVertexArray(GLuint array) __attribute__((alias("glshim_glBindVertexArray"))); -void glDeleteVertexArrays(GLsizei n, const GLuint *arrays) __attribute__((alias("glshim_glDeleteVertexArrays"))); -GLboolean glIsVertexArray(GLuint array) __attribute__((alias("glshim_glIsVertexArray"))); +void glGenVertexArrays(GLsizei n, GLuint *arrays) AliasExport("glshim_glGenVertexArrays"); +void glBindVertexArray(GLuint array) AliasExport("glshim_glBindVertexArray"); +void glDeleteVertexArrays(GLsizei n, const GLuint *arrays) AliasExport("glshim_glDeleteVertexArrays"); +GLboolean glIsVertexArray(GLuint array) AliasExport("glshim_glIsVertexArray"); diff --git a/project/jni/glshim/src/gl/directstate.c b/project/jni/glshim/src/gl/directstate.c index 8cbca2ed8..4919a499f 100755 --- a/project/jni/glshim/src/gl/directstate.c +++ b/project/jni/glshim/src/gl/directstate.c @@ -342,98 +342,98 @@ void glshim_glGetCompressedMultiTexImage(GLenum texunit, GLenum target, GLint le } //EXT wrapper -void glClientAttribDefaultEXT(GLbitfield mask) __attribute__((alias("glshim_glClientAttribDefault"))); -void glPushClientAttribDefaultEXT(GLbitfield mask) __attribute__((alias("glshim_glPushClientAttribDefault"))); -void glMatrixLoadfEXT(GLenum matrixMode, const GLfloat *m) __attribute__((alias("glshim_glMatrixLoadf"))); -void glMatrixLoaddEXT(GLenum matrixMode, const GLdouble *m) __attribute__((alias("glshim_glMatrixLoadd"))); -void glMatrixMultfEXT(GLenum matrixMode, const GLfloat *m) __attribute__((alias("glshim_glMatrixMultf"))); -void glMatrixMultdEXT(GLenum matrixMode, const GLdouble *m) __attribute__((alias("glshim_glMatrixMultd"))); -void glMatrixLoadIdentityEXT(GLenum matrixMode) __attribute__((alias("glshim_glMatrixLoadIdentity"))); -void glMatrixRotatefEXT(GLenum matrixMode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glMatrixRotatef"))); -void glMatrixRotatedEXT(GLenum matrixMode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glMatrixRotated"))); -void glMatrixScalefEXT(GLenum matrixMode, GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glMatrixScalef"))); -void glMatrixScaledEXT(GLenum matrixMode, GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glMatrixScaled"))); -void glMatrixTranslatefEXT(GLenum matrixMode, GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glMatrixTranslatef"))); -void glMatrixTranslatedEXT(GLenum matrixMode, GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glMatrixTranslated"))); -void glMatrixOrthoEXT(GLenum matrixMode, GLdouble l, GLdouble r, GLdouble b, GLdouble t, GLdouble n, GLdouble f) __attribute__((alias("glshim_glMatrixOrtho"))); -void glMatrixFrustumEXT(GLenum matrixMode, GLdouble l, GLdouble r, GLdouble b, GLdouble t, GLdouble n, GLdouble f) __attribute__((alias("glshim_glMatrixFrustum"))); -void glMatrixPushEXT(GLenum matrixMode) __attribute__((alias("glshim_glMatrixPush"))); -void glMatrixPopEXT(GLenum matrixMode) __attribute__((alias("glshim_glMatrixPop"))); -void glTextureParameteriEXT(GLuint texture, GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glTextureParameteri"))); -void glTextureParameterivEXT(GLuint texture, GLenum target, GLenum pname, const GLint *param) __attribute__((alias("glshim_glTextureParameteriv"))); -void glTextureParameterfEXT(GLuint texture, GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTextureParameterf"))); -void glTextureParameterfvEXT(GLuint texture, GLenum target, GLenum pname, const GLfloat *param) __attribute__((alias("glshim_glTextureParameterfv"))); -void glTextureImage1DEXT(GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glTextureImage1D"))); -void glTextureImage2DEXT(GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glTextureImage2D"))); -void glTextureSubImage1DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glTextureSubImage1D"))); -void glTextureSubImage2DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glTextureSubImage2D"))); -void glCopyTextureImage1DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) __attribute__((alias("glshim_glCopyTextureImage1D"))); -void glCopyTextureImage2DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) __attribute__((alias("glshim_glCopyTextureImage2D"))); -void glCopyTextureSubImage1DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyTextureSubImage1D"))); -void glCopyTextureSubImage2DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTextureSubImage2D"))); -void glGetTextureImageEXT(GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels) __attribute__((alias("glshim_glGetTextureImage"))); -void glGetTextureParameterfvEXT(GLuint texture, GLenum target, GLenum pname, GLfloat *params) __attribute__((alias("glshim_glGetTextureParameterfv"))); -void glGetTextureParameterivEXT(GLuint texture, GLenum target, GLenum pname, GLint *params) __attribute__((alias("glshim_glGetTextureParameteriv"))); -void glGetTextureLevelParameterfvEXT(GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params) __attribute__((alias("glshim_glGetTextureLevelParameterfv"))); -void glGetTextureLevelParameterivEXT(GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params) __attribute__((alias("glshim_glGetTextureLevelParameteriv"))); -void glTextureImage3DEXT(GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glTextureImage3D"))); -void glTextureSubImage3DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glTextureSubImage3D"))); -void glCopyTextureSubImage3DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTextureSubImage3D"))); -void glBindMultiTextureEXT(GLenum texunit, GLenum target, GLuint texture) __attribute__((alias("glshim_glBindMultiTexture"))); -void glMultiTexCoordPointerEXT(GLenum texunit, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) __attribute__((alias("glshim_glMultiTexCoordPointer"))); -void glMultiTexEnvfEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glMultiTexEnvf"))); -void glMultiTexEnvfvEXT(GLenum texunit, GLenum target, GLenum pname, const GLfloat *params) __attribute__((alias("glshim_glMultiTexEnvfv"))); -void glMultiTexEnviEXT(GLenum texunit, GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glMultiTexEnvi"))); -void glMultiTexEnvivEXT(GLenum texunit, GLenum target, GLenum pname, const GLint *params) __attribute__((alias("glshim_glMultiTexEnviv"))); -void glMultiTexGendEXT(GLenum texunit, GLenum coord, GLenum pname, GLdouble param) __attribute__((alias("glshim_glMultiTexGend"))); -void glMultiTexGendvEXT(GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params) __attribute__((alias("glshim_glMultiTexGendv"))); -void glMultiTexGenfEXT(GLenum texunit, GLenum coord, GLenum pname, GLfloat param) __attribute__((alias("glshim_glMultiTexGenf"))); -void glMultiTexGenfvEXT(GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params) __attribute__((alias("glshim_glMultiTexGenfv"))); -void glMultiTexGeniEXT(GLenum texunit, GLenum coord, GLenum pname, GLint param) __attribute__((alias("glshim_glMultiTexGeni"))); -void glMultiTexGenivEXT(GLenum texunit, GLenum coord, GLenum pname, const GLint *params) __attribute__((alias("glshim_glMultiTexGeniv"))); -void glGetMultiTexEnvfvEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat *params) __attribute__((alias("glshim_glGetMultiTexEnvfv"))); -void glGetMultiTexEnvivEXT(GLenum texunit, GLenum target, GLenum pname, GLint *params) __attribute__((alias("glshim_glGetMultiTexEnviv"))); -void glGetMultiTexGendvEXT(GLenum texunit, GLenum coord, GLenum pname, GLdouble *params) __attribute__((alias("glshim_glGetMultiTexGendv"))); -void glGetMultiTexGenfvEXT(GLenum texunit, GLenum coord, GLenum pname, GLfloat *params) __attribute__((alias("glshim_glGetMultiTexGenfv"))); -void glGetMultiTexGenivEXT(GLenum texunit, GLenum coord, GLenum pname, GLint *params) __attribute__((alias("glshim_glGetMultiTexGeniv"))); -void glMultiTexParameteriEXT(GLenum texunit, GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glMultiTexParameteri"))); -void glMultiTexParameterivEXT(GLenum texunit, GLenum target, GLenum pname, const GLint *param) __attribute__((alias("glshim_glMultiTexParameteriv"))); -void glMultiTexParameterfEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glMultiTexParameterf"))); -void glMultiTexParameterfvEXT(GLenum texunit, GLenum target, GLenum pname, const GLfloat *param) __attribute__((alias("glshim_glMultiTexParameterfv"))); -void glMultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glMultiTexImage1D"))); -void glMultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glMultiTexImage2D"))); -void glMultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glMultiTexSubImage1D"))); -void glMultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glMultiTexSubImage2D"))); -void glCopyMultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) __attribute__((alias("glshim_glCopyMultiTexImage1D"))); -void glCopyMultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) __attribute__((alias("glshim_glCopyMultiTexImage2D"))); -void glCopyMultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyMultiTexSubImage1D"))); -void glCopyMultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyMultiTexSubImage2D"))); -void glGetMultiTexImageEXT(GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels) __attribute__((alias("glshim_glGetMultiTexImage"))); -void glGetMultiTexParameterfvEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat *params) __attribute__((alias("glshim_glGetMultiTexParameterfv"))); -void glGetMultiTexParameterivEXT(GLenum texunit, GLenum target, GLenum pname, GLint *params) __attribute__((alias("glshim_glGetMultiTexParameteriv"))); -void glGetMultiTexLevelParameterfvEXT(GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params) __attribute__((alias("glshim_glGetMultiTexLevelParameterfv"))); -void glGetMultiTexLevelParameterivEXT(GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params) __attribute__((alias("glshim_glGetMultiTexLevelParameteriv"))); -void glMultiTexImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glMultiTexImage3D"))); -void glMultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels) __attribute__((alias("glshim_glMultiTexSubImage3D"))); -void glCopyMultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyMultiTexSubImage3D"))); -void glCompressedTextureImage3DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTextureImage3D"))); -void glCompressedTextureImage2DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTextureImage2D"))); -void glCompressedTextureImage1DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTextureImage1D"))); -void glCompressedTextureSubImage3DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTextureSubImage3D"))); -void glCompressedTextureSubImage2DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTextureSubImage2D"))); -void glCompressedTextureSubImage1DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTextureSubImage1D"))); -void glGetCompressedTextureImageEXT(GLuint texture, GLenum target, GLint level, GLvoid *img) __attribute__((alias("glshim_glGetCompressedTextureImage"))); -void glCompressedMultiTexImage3DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedMultiTexImage3D"))); -void glCompressedMultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedMultiTexImage2D"))); -void glCompressedMultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedMultiTexImage1D"))); -void glCompressedMultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedMultiTexSubImage3D"))); -void glCompressedMultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedMultiTexSubImage2D"))); -void glCompressedMultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedMultiTexSubImage1D"))); -void glGetCompressedMultiTexImageEXT(GLenum texunit, GLenum target, GLint level, GLvoid *img) __attribute__((alias("glshim_glGetCompressedMultiTexImage"))); -void glMatrixLoadTransposefEXT(GLenum matrixMode, const GLfloat *m) __attribute__((alias("glshim_glMatrixLoadTransposef"))); -void glMatrixLoadTransposedEXT(GLenum matrixMode, const GLdouble *m) __attribute__((alias("glshim_glMatrixLoadTransposed"))); -void glMatrixMultTransposefEXT(GLenum matrixMode, const GLfloat *m) __attribute__((alias("glshim_glMatrixMultTransposef"))); -void glMatrixMultTransposedEXT(GLenum matrixMode, const GLdouble *m) __attribute__((alias("glshim_glMatrixMultTransposed"))); +void glClientAttribDefaultEXT(GLbitfield mask) AliasExport("glshim_glClientAttribDefault"); +void glPushClientAttribDefaultEXT(GLbitfield mask) AliasExport("glshim_glPushClientAttribDefault"); +void glMatrixLoadfEXT(GLenum matrixMode, const GLfloat *m) AliasExport("glshim_glMatrixLoadf"); +void glMatrixLoaddEXT(GLenum matrixMode, const GLdouble *m) AliasExport("glshim_glMatrixLoadd"); +void glMatrixMultfEXT(GLenum matrixMode, const GLfloat *m) AliasExport("glshim_glMatrixMultf"); +void glMatrixMultdEXT(GLenum matrixMode, const GLdouble *m) AliasExport("glshim_glMatrixMultd"); +void glMatrixLoadIdentityEXT(GLenum matrixMode) AliasExport("glshim_glMatrixLoadIdentity"); +void glMatrixRotatefEXT(GLenum matrixMode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z) AliasExport("glshim_glMatrixRotatef"); +void glMatrixRotatedEXT(GLenum matrixMode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z) AliasExport("glshim_glMatrixRotated"); +void glMatrixScalefEXT(GLenum matrixMode, GLfloat x, GLfloat y, GLfloat z) AliasExport("glshim_glMatrixScalef"); +void glMatrixScaledEXT(GLenum matrixMode, GLdouble x, GLdouble y, GLdouble z) AliasExport("glshim_glMatrixScaled"); +void glMatrixTranslatefEXT(GLenum matrixMode, GLfloat x, GLfloat y, GLfloat z) AliasExport("glshim_glMatrixTranslatef"); +void glMatrixTranslatedEXT(GLenum matrixMode, GLdouble x, GLdouble y, GLdouble z) AliasExport("glshim_glMatrixTranslated"); +void glMatrixOrthoEXT(GLenum matrixMode, GLdouble l, GLdouble r, GLdouble b, GLdouble t, GLdouble n, GLdouble f) AliasExport("glshim_glMatrixOrtho"); +void glMatrixFrustumEXT(GLenum matrixMode, GLdouble l, GLdouble r, GLdouble b, GLdouble t, GLdouble n, GLdouble f) AliasExport("glshim_glMatrixFrustum"); +void glMatrixPushEXT(GLenum matrixMode) AliasExport("glshim_glMatrixPush"); +void glMatrixPopEXT(GLenum matrixMode) AliasExport("glshim_glMatrixPop"); +void glTextureParameteriEXT(GLuint texture, GLenum target, GLenum pname, GLint param) AliasExport("glshim_glTextureParameteri"); +void glTextureParameterivEXT(GLuint texture, GLenum target, GLenum pname, const GLint *param) AliasExport("glshim_glTextureParameteriv"); +void glTextureParameterfEXT(GLuint texture, GLenum target, GLenum pname, GLfloat param) AliasExport("glshim_glTextureParameterf"); +void glTextureParameterfvEXT(GLuint texture, GLenum target, GLenum pname, const GLfloat *param) AliasExport("glshim_glTextureParameterfv"); +void glTextureImage1DEXT(GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glTextureImage1D"); +void glTextureImage2DEXT(GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glTextureImage2D"); +void glTextureSubImage1DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glTextureSubImage1D"); +void glTextureSubImage2DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glTextureSubImage2D"); +void glCopyTextureImage1DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) AliasExport("glshim_glCopyTextureImage1D"); +void glCopyTextureImage2DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) AliasExport("glshim_glCopyTextureImage2D"); +void glCopyTextureSubImage1DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) AliasExport("glshim_glCopyTextureSubImage1D"); +void glCopyTextureSubImage2DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) AliasExport("glshim_glCopyTextureSubImage2D"); +void glGetTextureImageEXT(GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels) AliasExport("glshim_glGetTextureImage"); +void glGetTextureParameterfvEXT(GLuint texture, GLenum target, GLenum pname, GLfloat *params) AliasExport("glshim_glGetTextureParameterfv"); +void glGetTextureParameterivEXT(GLuint texture, GLenum target, GLenum pname, GLint *params) AliasExport("glshim_glGetTextureParameteriv"); +void glGetTextureLevelParameterfvEXT(GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params) AliasExport("glshim_glGetTextureLevelParameterfv"); +void glGetTextureLevelParameterivEXT(GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params) AliasExport("glshim_glGetTextureLevelParameteriv"); +void glTextureImage3DEXT(GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glTextureImage3D"); +void glTextureSubImage3DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glTextureSubImage3D"); +void glCopyTextureSubImage3DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) AliasExport("glshim_glCopyTextureSubImage3D"); +void glBindMultiTextureEXT(GLenum texunit, GLenum target, GLuint texture) AliasExport("glshim_glBindMultiTexture"); +void glMultiTexCoordPointerEXT(GLenum texunit, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) AliasExport("glshim_glMultiTexCoordPointer"); +void glMultiTexEnvfEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat param) AliasExport("glshim_glMultiTexEnvf"); +void glMultiTexEnvfvEXT(GLenum texunit, GLenum target, GLenum pname, const GLfloat *params) AliasExport("glshim_glMultiTexEnvfv"); +void glMultiTexEnviEXT(GLenum texunit, GLenum target, GLenum pname, GLint param) AliasExport("glshim_glMultiTexEnvi"); +void glMultiTexEnvivEXT(GLenum texunit, GLenum target, GLenum pname, const GLint *params) AliasExport("glshim_glMultiTexEnviv"); +void glMultiTexGendEXT(GLenum texunit, GLenum coord, GLenum pname, GLdouble param) AliasExport("glshim_glMultiTexGend"); +void glMultiTexGendvEXT(GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params) AliasExport("glshim_glMultiTexGendv"); +void glMultiTexGenfEXT(GLenum texunit, GLenum coord, GLenum pname, GLfloat param) AliasExport("glshim_glMultiTexGenf"); +void glMultiTexGenfvEXT(GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params) AliasExport("glshim_glMultiTexGenfv"); +void glMultiTexGeniEXT(GLenum texunit, GLenum coord, GLenum pname, GLint param) AliasExport("glshim_glMultiTexGeni"); +void glMultiTexGenivEXT(GLenum texunit, GLenum coord, GLenum pname, const GLint *params) AliasExport("glshim_glMultiTexGeniv"); +void glGetMultiTexEnvfvEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat *params) AliasExport("glshim_glGetMultiTexEnvfv"); +void glGetMultiTexEnvivEXT(GLenum texunit, GLenum target, GLenum pname, GLint *params) AliasExport("glshim_glGetMultiTexEnviv"); +void glGetMultiTexGendvEXT(GLenum texunit, GLenum coord, GLenum pname, GLdouble *params) AliasExport("glshim_glGetMultiTexGendv"); +void glGetMultiTexGenfvEXT(GLenum texunit, GLenum coord, GLenum pname, GLfloat *params) AliasExport("glshim_glGetMultiTexGenfv"); +void glGetMultiTexGenivEXT(GLenum texunit, GLenum coord, GLenum pname, GLint *params) AliasExport("glshim_glGetMultiTexGeniv"); +void glMultiTexParameteriEXT(GLenum texunit, GLenum target, GLenum pname, GLint param) AliasExport("glshim_glMultiTexParameteri"); +void glMultiTexParameterivEXT(GLenum texunit, GLenum target, GLenum pname, const GLint *param) AliasExport("glshim_glMultiTexParameteriv"); +void glMultiTexParameterfEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat param) AliasExport("glshim_glMultiTexParameterf"); +void glMultiTexParameterfvEXT(GLenum texunit, GLenum target, GLenum pname, const GLfloat *param) AliasExport("glshim_glMultiTexParameterfv"); +void glMultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glMultiTexImage1D"); +void glMultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glMultiTexImage2D"); +void glMultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glMultiTexSubImage1D"); +void glMultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glMultiTexSubImage2D"); +void glCopyMultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) AliasExport("glshim_glCopyMultiTexImage1D"); +void glCopyMultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) AliasExport("glshim_glCopyMultiTexImage2D"); +void glCopyMultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) AliasExport("glshim_glCopyMultiTexSubImage1D"); +void glCopyMultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) AliasExport("glshim_glCopyMultiTexSubImage2D"); +void glGetMultiTexImageEXT(GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels) AliasExport("glshim_glGetMultiTexImage"); +void glGetMultiTexParameterfvEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat *params) AliasExport("glshim_glGetMultiTexParameterfv"); +void glGetMultiTexParameterivEXT(GLenum texunit, GLenum target, GLenum pname, GLint *params) AliasExport("glshim_glGetMultiTexParameteriv"); +void glGetMultiTexLevelParameterfvEXT(GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params) AliasExport("glshim_glGetMultiTexLevelParameterfv"); +void glGetMultiTexLevelParameterivEXT(GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params) AliasExport("glshim_glGetMultiTexLevelParameteriv"); +void glMultiTexImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glMultiTexImage3D"); +void glMultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels) AliasExport("glshim_glMultiTexSubImage3D"); +void glCopyMultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) AliasExport("glshim_glCopyMultiTexSubImage3D"); +void glCompressedTextureImage3DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTextureImage3D"); +void glCompressedTextureImage2DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTextureImage2D"); +void glCompressedTextureImage1DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTextureImage1D"); +void glCompressedTextureSubImage3DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTextureSubImage3D"); +void glCompressedTextureSubImage2DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTextureSubImage2D"); +void glCompressedTextureSubImage1DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTextureSubImage1D"); +void glGetCompressedTextureImageEXT(GLuint texture, GLenum target, GLint level, GLvoid *img) AliasExport("glshim_glGetCompressedTextureImage"); +void glCompressedMultiTexImage3DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedMultiTexImage3D"); +void glCompressedMultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedMultiTexImage2D"); +void glCompressedMultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedMultiTexImage1D"); +void glCompressedMultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedMultiTexSubImage3D"); +void glCompressedMultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedMultiTexSubImage2D"); +void glCompressedMultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedMultiTexSubImage1D"); +void glGetCompressedMultiTexImageEXT(GLenum texunit, GLenum target, GLint level, GLvoid *img) AliasExport("glshim_glGetCompressedMultiTexImage"); +void glMatrixLoadTransposefEXT(GLenum matrixMode, const GLfloat *m) AliasExport("glshim_glMatrixLoadTransposef"); +void glMatrixLoadTransposedEXT(GLenum matrixMode, const GLdouble *m) AliasExport("glshim_glMatrixLoadTransposed"); +void glMatrixMultTransposefEXT(GLenum matrixMode, const GLfloat *m) AliasExport("glshim_glMatrixMultTransposef"); +void glMatrixMultTransposedEXT(GLenum matrixMode, const GLdouble *m) AliasExport("glshim_glMatrixMultTransposed"); #undef text #undef texc diff --git a/project/jni/glshim/src/gl/eval.c b/project/jni/glshim/src/gl/eval.c index 939550037..4026317f2 100755 --- a/project/jni/glshim/src/gl/eval.c +++ b/project/jni/glshim/src/gl/eval.c @@ -317,18 +317,18 @@ GL_GET_MAP(d, GLdouble) #undef GL_GET_MAP //Direct wrapper -void glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points) __attribute__((alias("glshim_glMap1d"))); -void glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points) __attribute__((alias("glshim_glMap1f"))); -void glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points) __attribute__((alias("glshim_glMap2d"))); -void glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points) __attribute__((alias("glshim_glMap2f"))); -void glEvalCoord1f(GLfloat u) __attribute__((alias("glshim_glEvalCoord1f"))); -void glEvalCoord2f(GLfloat u, GLfloat v) __attribute__((alias("glshim_glEvalCoord2f"))); -void glEvalMesh1(GLenum mode, GLint i1, GLint i2) __attribute__((alias("glshim_glEvalMesh1"))); -void glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2) __attribute__((alias("glshim_glEvalMesh2"))); -void glEvalPoint1(GLint i) __attribute__((alias("glshim_glEvalPoint1"))); -void glEvalPoint2(GLint i, GLint j) __attribute__((alias("glshim_glEvalPoint2"))); -void glMapGrid1f(GLint un, GLfloat u1, GLfloat u2) __attribute__((alias("glshim_glMapGrid1f"))); -void glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2) __attribute__((alias("glshim_glMapGrid2f"))); -void glGetMapdv(GLenum target, GLenum query, GLdouble *v) __attribute__((alias("glshim_glGetMapdv"))); -void glGetMapfv(GLenum target, GLenum query, GLfloat *v) __attribute__((alias("glshim_glGetMapfv"))); -void glGetMapiv(GLenum target, GLenum query, GLint *v) __attribute__((alias("glshim_glGetMapiv"))); +void glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points) AliasExport("glshim_glMap1d"); +void glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points) AliasExport("glshim_glMap1f"); +void glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points) AliasExport("glshim_glMap2d"); +void glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points) AliasExport("glshim_glMap2f"); +void glEvalCoord1f(GLfloat u) AliasExport("glshim_glEvalCoord1f"); +void glEvalCoord2f(GLfloat u, GLfloat v) AliasExport("glshim_glEvalCoord2f"); +void glEvalMesh1(GLenum mode, GLint i1, GLint i2) AliasExport("glshim_glEvalMesh1"); +void glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2) AliasExport("glshim_glEvalMesh2"); +void glEvalPoint1(GLint i) AliasExport("glshim_glEvalPoint1"); +void glEvalPoint2(GLint i, GLint j) AliasExport("glshim_glEvalPoint2"); +void glMapGrid1f(GLint un, GLfloat u1, GLfloat u2) AliasExport("glshim_glMapGrid1f"); +void glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2) AliasExport("glshim_glMapGrid2f"); +void glGetMapdv(GLenum target, GLenum query, GLdouble *v) AliasExport("glshim_glGetMapdv"); +void glGetMapfv(GLenum target, GLenum query, GLfloat *v) AliasExport("glshim_glGetMapfv"); +void glGetMapiv(GLenum target, GLenum query, GLint *v) AliasExport("glshim_glGetMapiv"); diff --git a/project/jni/glshim/src/gl/framebuffers.c b/project/jni/glshim/src/gl/framebuffers.c index aabb010da..4028673bd 100755 --- a/project/jni/glshim/src/gl/framebuffers.c +++ b/project/jni/glshim/src/gl/framebuffers.c @@ -742,43 +742,43 @@ printf("glBlitFramebuffer(%d, %d, %d, %d, %d, %d, %d, %d, 0x%04X, 0x%04X)\n", // direct wrapper -void glGenFramebuffers(GLsizei n, GLuint *ids) __attribute__((alias ("glshim_glGenFramebuffers"))); -void glDeleteFramebuffers(GLsizei n, GLuint *framebuffers) __attribute__((alias ("glshim_glDeleteFramebuffers"))); -GLboolean glIsFramebuffer(GLuint framebuffer) __attribute__((alias ("glshim_glIsFramebuffer"))); -GLenum glCheckFramebufferStatus(GLenum target) __attribute__((alias ("glshim_glCheckFramebufferStatus"))); -void glBindFramebuffer(GLenum target, GLuint framebuffer) __attribute__((alias ("glshim_glBindFramebuffer"))); -void glFramebufferTexture1D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) __attribute__((alias ("glshim_glFramebufferTexture1D"))); -void glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) __attribute__((alias ("glshim_glFramebufferTexture2D"))); -void glFramebufferTexture3D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint layer) __attribute__((alias ("glshim_glFramebufferTexture3D"))); -void glGenRenderbuffers(GLsizei n, GLuint *renderbuffers) __attribute__((alias ("glshim_glGenRenderbuffers"))); -void glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) __attribute__((alias ("glshim_glFramebufferRenderbuffer"))); -void glDeleteRenderbuffers(GLsizei n, GLuint *renderbuffers) __attribute__((alias ("glshim_glDeleteRenderbuffers"))); -void glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) __attribute__((alias ("glshim_glRenderbufferStorage"))); -void glBindRenderbuffer(GLenum target, GLuint renderbuffer) __attribute__((alias ("glshim_glBindRenderbuffer"))); -GLboolean glIsRenderbuffer(GLuint renderbuffer) __attribute__((alias ("glshim_glIsRenderbuffer"))); -void glGenerateMipmap(GLenum target) __attribute__((alias ("glshim_glGenerateMipmap"))); -void glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint *params) __attribute__((alias ("glshim_glGetFramebufferAttachmentParameteriv"))); -void glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias ("glshim_glGetRenderbufferParameteriv"))); -void glFramebufferTextureLayer( GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer) __attribute__((alias ("glshim_glFramebufferTextureLayer"))); -void glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) __attribute__((alias ("glshim_glBlitFramebuffer"))); +void glGenFramebuffers(GLsizei n, GLuint *ids) AliasExport("glshim_glGenFramebuffers"); +void glDeleteFramebuffers(GLsizei n, GLuint *framebuffers) AliasExport("glshim_glDeleteFramebuffers"); +GLboolean glIsFramebuffer(GLuint framebuffer) AliasExport("glshim_glIsFramebuffer"); +GLenum glCheckFramebufferStatus(GLenum target) AliasExport("glshim_glCheckFramebufferStatus"); +void glBindFramebuffer(GLenum target, GLuint framebuffer) AliasExport("glshim_glBindFramebuffer"); +void glFramebufferTexture1D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) AliasExport("glshim_glFramebufferTexture1D"); +void glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) AliasExport("glshim_glFramebufferTexture2D"); +void glFramebufferTexture3D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint layer) AliasExport("glshim_glFramebufferTexture3D"); +void glGenRenderbuffers(GLsizei n, GLuint *renderbuffers) AliasExport("glshim_glGenRenderbuffers"); +void glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) AliasExport("glshim_glFramebufferRenderbuffer"); +void glDeleteRenderbuffers(GLsizei n, GLuint *renderbuffers) AliasExport("glshim_glDeleteRenderbuffers"); +void glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) AliasExport("glshim_glRenderbufferStorage"); +void glBindRenderbuffer(GLenum target, GLuint renderbuffer) AliasExport("glshim_glBindRenderbuffer"); +GLboolean glIsRenderbuffer(GLuint renderbuffer) AliasExport("glshim_glIsRenderbuffer"); +void glGenerateMipmap(GLenum target) AliasExport("glshim_glGenerateMipmap"); +void glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint *params) AliasExport("glshim_glGetFramebufferAttachmentParameteriv"); +void glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint * params) AliasExport("glshim_glGetRenderbufferParameteriv"); +void glFramebufferTextureLayer( GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer) AliasExport("glshim_glFramebufferTextureLayer"); +void glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) AliasExport("glshim_glBlitFramebuffer"); // EXT direct wrapper -void glGenFramebuffersEXT(GLsizei n, GLuint *ids) __attribute__((alias ("glshim_glGenFramebuffers"))); -void glDeleteFramebuffersEXT(GLsizei n, GLuint *framebuffers) __attribute__((alias ("glshim_glDeleteFramebuffers"))); -GLboolean glIsFramebufferEXT(GLuint framebuffer) __attribute__((alias ("glshim_glIsFramebuffer"))); -GLenum glCheckFramebufferStatusEXT(GLenum target) __attribute__((alias ("glshim_glCheckFramebufferStatus"))); -void glBindFramebufferEXT(GLenum target, GLuint framebuffer) __attribute__((alias ("glshim_glBindFramebuffer"))); -void glFramebufferTexture1DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) __attribute__((alias ("glshim_glFramebufferTexture1D"))); -void glFramebufferTexture2DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) __attribute__((alias ("glshim_glFramebufferTexture2D"))); -void glFramebufferTexture3DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint layer) __attribute__((alias ("glshim_glFramebufferTexture3D"))); -void glGenRenderbuffersEXT(GLsizei n, GLuint *renderbuffers) __attribute__((alias ("glshim_glGenRenderbuffers"))); -void glFramebufferRenderbufferEXT(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) __attribute__((alias ("glshim_glFramebufferRenderbuffer"))); -void glDeleteRenderbuffersEXT(GLsizei n, GLuint *renderbuffers) __attribute__((alias ("glshim_glDeleteRenderbuffers"))); -void glRenderbufferStorageEXT(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) __attribute__((alias ("glshim_glRenderbufferStorage"))); -void glBindRenderbufferEXT(GLenum target, GLuint renderbuffer) __attribute__((alias ("glshim_glBindRenderbuffer"))); -GLboolean glIsRenderbufferEXT(GLuint renderbuffer) __attribute__((alias ("glshim_glIsRenderbuffer"))); -void glGenerateMipmapEXT(GLenum target) __attribute__((alias ("glshim_glGenerateMipmap"))); -void glGetFramebufferAttachmentParameterivEXT(GLenum target, GLenum attachment, GLenum pname, GLint *params) __attribute__((alias ("glshim_glGetFramebufferAttachmentParameteriv"))); -void glGetRenderbufferParameterivEXT(GLenum target, GLenum pname, GLint * params) __attribute__((alias ("glshim_glGetRenderbufferParameteriv"))); -void glFramebufferTextureLayerEXT( GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer) __attribute__((alias ("glshim_glFramebufferTextureLayer"))); -void glBlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) __attribute__((alias ("glshim_glBlitFramebuffer"))); +void glGenFramebuffersEXT(GLsizei n, GLuint *ids) AliasExport("glshim_glGenFramebuffers"); +void glDeleteFramebuffersEXT(GLsizei n, GLuint *framebuffers) AliasExport("glshim_glDeleteFramebuffers"); +GLboolean glIsFramebufferEXT(GLuint framebuffer) AliasExport("glshim_glIsFramebuffer"); +GLenum glCheckFramebufferStatusEXT(GLenum target) AliasExport("glshim_glCheckFramebufferStatus"); +void glBindFramebufferEXT(GLenum target, GLuint framebuffer) AliasExport("glshim_glBindFramebuffer"); +void glFramebufferTexture1DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) AliasExport("glshim_glFramebufferTexture1D"); +void glFramebufferTexture2DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) AliasExport("glshim_glFramebufferTexture2D"); +void glFramebufferTexture3DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint layer) AliasExport("glshim_glFramebufferTexture3D"); +void glGenRenderbuffersEXT(GLsizei n, GLuint *renderbuffers) AliasExport("glshim_glGenRenderbuffers"); +void glFramebufferRenderbufferEXT(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) AliasExport("glshim_glFramebufferRenderbuffer"); +void glDeleteRenderbuffersEXT(GLsizei n, GLuint *renderbuffers) AliasExport("glshim_glDeleteRenderbuffers"); +void glRenderbufferStorageEXT(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) AliasExport("glshim_glRenderbufferStorage"); +void glBindRenderbufferEXT(GLenum target, GLuint renderbuffer) AliasExport("glshim_glBindRenderbuffer"); +GLboolean glIsRenderbufferEXT(GLuint renderbuffer) AliasExport("glshim_glIsRenderbuffer"); +void glGenerateMipmapEXT(GLenum target) AliasExport("glshim_glGenerateMipmap"); +void glGetFramebufferAttachmentParameterivEXT(GLenum target, GLenum attachment, GLenum pname, GLint *params) AliasExport("glshim_glGetFramebufferAttachmentParameteriv"); +void glGetRenderbufferParameterivEXT(GLenum target, GLenum pname, GLint * params) AliasExport("glshim_glGetRenderbufferParameteriv"); +void glFramebufferTextureLayerEXT( GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer) AliasExport("glshim_glFramebufferTextureLayer"); +void glBlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) AliasExport("glshim_glBlitFramebuffer"); diff --git a/project/jni/glshim/src/gl/gl.c b/project/jni/glshim/src/gl/gl.c index 928049db3..ba66222e2 100755 --- a/project/jni/glshim/src/gl/gl.c +++ b/project/jni/glshim/src/gl/gl.c @@ -167,6 +167,8 @@ const GLubyte *glshim_glGetString(GLenum name) { #endif "GL_ARB_draw_buffers " "GL_EXT_direct_state_access " + "GL_EXT_multi_draw_arrays " + "GL_SUN_multi_draw_arrays " // "GL_EXT_blend_logic_op " // "GL_EXT_blend_color " // "GL_ARB_texture_cube_map " @@ -182,7 +184,7 @@ const GLubyte *glshim_glGetString(GLenum name) { return (str)?str:(GLubyte*)""; } } -const GLubyte *glGetString(GLenum name) __attribute__((alias("glshim_glGetString"))); +const GLubyte *glGetString(GLenum name) AliasExport("glshim_glGetString"); void transposeMatrix(float *matrix) { @@ -323,7 +325,7 @@ void glshim_glGetIntegerv(GLenum pname, GLint *params) { gles_glGetIntegerv(pname, params); } } -void glGetIntegerv(GLenum pname, GLint *params) __attribute__((alias("glshim_glGetIntegerv"))); +void glGetIntegerv(GLenum pname, GLint *params) AliasExport("glshim_glGetIntegerv"); void glshim_glGetFloatv(GLenum pname, GLfloat *params) { LOAD_GLES(glGetFloatv); @@ -447,7 +449,7 @@ void glshim_glGetFloatv(GLenum pname, GLfloat *params) { gles_glGetFloatv(pname, params); } } -void glGetFloatv(GLenum pname, GLfloat *params) __attribute__((alias("glshim_glGetFloatv"))); +void glGetFloatv(GLenum pname, GLfloat *params) AliasExport("glshim_glGetFloatv"); extern int alphahack; extern int texstream; @@ -548,7 +550,7 @@ void glshim_glEnable(GLenum cap) { LOAD_GLES(glEnable); proxy_glEnable(cap, true, gles_glEnable); } -void glEnable(GLenum cap) __attribute__((alias("glshim_glEnable"))); +void glEnable(GLenum cap) AliasExport("glshim_glEnable"); void glshim_glDisable(GLenum cap) { if (glstate.list.active && (glstate.gl_batch && !glstate.list.compiling)) { @@ -584,19 +586,19 @@ void glshim_glDisable(GLenum cap) { LOAD_GLES(glDisable); proxy_glEnable(cap, false, gles_glDisable); } -void glDisable(GLenum cap) __attribute__((alias("glshim_glDisable"))); +void glDisable(GLenum cap) AliasExport("glshim_glDisable"); void glshim_glEnableClientState(GLenum cap) { LOAD_GLES(glEnableClientState); proxy_glEnable(cap, true, gles_glEnableClientState); } -void glEnableClientState(GLenum cap) __attribute__((alias("glshim_glEnableClientState"))); +void glEnableClientState(GLenum cap) AliasExport("glshim_glEnableClientState"); void glshim_glDisableClientState(GLenum cap) { LOAD_GLES(glDisableClientState); proxy_glEnable(cap, false, gles_glDisableClientState); } -void glDisableClientState(GLenum cap) __attribute__((alias("glshim_glDisableClientState"))); +void glDisableClientState(GLenum cap) AliasExport("glshim_glDisableClientState"); #define isenabled(what, where) \ @@ -630,7 +632,7 @@ GLboolean glshim_glIsEnabled(GLenum cap) { } #undef isenabled #undef clientisenabled -GLboolean glIsEnabled(GLenum cap) __attribute__((alias("glshim_glIsEnabled"))); +GLboolean glIsEnabled(GLenum cap) AliasExport("glshim_glIsEnabled"); static renderlist_t *arrays_to_renderlist(renderlist_t *list, GLenum mode, GLsizei skip, GLsizei count) { @@ -884,7 +886,7 @@ void glshim_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid free(sindices); } } -void glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) __attribute__((alias("glshim_glDrawElements"))); +void glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) AliasExport("glshim_glDrawElements"); void glshim_glDrawArrays(GLenum mode, GLint first, GLsizei count) { // special check for QUADS and TRIANGLES that need multiple of 4 or 3 vertex... @@ -1068,7 +1070,7 @@ void glshim_glDrawArrays(GLenum mode, GLint first, GLsizei count) { } } #undef client_state -void glDrawArrays(GLenum mode, GLint first, GLsizei count) __attribute__((alias("glshim_glDrawArrays"))); +void glDrawArrays(GLenum mode, GLint first, GLsizei count) AliasExport("glshim_glDrawArrays"); #ifndef USE_ES2 #define clone_gl_pointer(t, s)\ @@ -1102,11 +1104,11 @@ void glshim_glSecondaryColorPointer(GLint size, GLenum type, #undef clone_gl_pointer #endif -void glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) __attribute__((alias("glshim_glVertexPointer"))); -void glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) __attribute__((alias("glshim_glColorPointer"))); -void glNormalPointer(GLenum type, GLsizei stride, const GLvoid *pointer) __attribute__((alias("glshim_glNormalPointer"))); -void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) __attribute__((alias("glshim_glTexCoordPointer"))); -void glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) __attribute__((alias("glshim_glSecondaryColorPointer"))); +void glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) AliasExport("glshim_glVertexPointer"); +void glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) AliasExport("glshim_glColorPointer"); +void glNormalPointer(GLenum type, GLsizei stride, const GLvoid *pointer) AliasExport("glshim_glNormalPointer"); +void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) AliasExport("glshim_glTexCoordPointer"); +void glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) AliasExport("glshim_glSecondaryColorPointer"); void glshim_glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer) { uintptr_t ptr = (uintptr_t)pointer; @@ -1204,7 +1206,7 @@ void glshim_glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid *poi glshim_glVertexPointer(vert, vf, stride, (GLvoid *)ptr); } } -void glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer) __attribute__((alias("glshim_glInterleavedArrays"))); +void glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer) AliasExport("glshim_glInterleavedArrays"); // immediate mode functions void glshim_glBegin(GLenum mode) { @@ -1215,7 +1217,7 @@ void glshim_glBegin(GLenum mode) { glstate.list.active->mode_init = mode; noerrorShim(); // TODO, check Enum validity } -void glBegin(GLenum mode) __attribute__((alias("glshim_glBegin"))); +void glBegin(GLenum mode) AliasExport("glshim_glBegin"); void glshim_glEnd() { if (!glstate.list.active) return; @@ -1235,7 +1237,7 @@ void glshim_glEnd() { } noerrorShim(); } -void glEnd() __attribute__((alias("glshim_glEnd"))); +void glEnd() AliasExport("glshim_glEnd"); void glshim_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) { if (glstate.list.active) { @@ -1261,7 +1263,7 @@ void glshim_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) { #endif glstate.normal[0] = nx; glstate.normal[1] = ny; glstate.normal[2] = nz; } -void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) __attribute__((alias("glshim_glNormal3f"))); +void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) AliasExport("glshim_glNormal3f"); void glshim_glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) { if (glstate.list.active) { @@ -1269,7 +1271,7 @@ void glshim_glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) { noerrorShim(); } } -void glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) __attribute__((alias("glshim_glVertex4f"))); +void glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) AliasExport("glshim_glVertex4f"); void glshim_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { if (glstate.list.active) { @@ -1296,7 +1298,7 @@ void glshim_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { glstate.color[0] = red; glstate.color[1] = green; glstate.color[2] = blue; glstate.color[3] = alpha; } -void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glColor4f"))); +void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) AliasExport("glshim_glColor4f"); void glshim_glSecondaryColor3f(GLfloat r, GLfloat g, GLfloat b) { if (glstate.list.active) { @@ -1311,7 +1313,7 @@ void glshim_glSecondaryColor3f(GLfloat r, GLfloat g, GLfloat b) { glstate.secondary[0] = r; glstate.secondary[1] = g; glstate.secondary[2] = b; } -void glSecondaryColor3f(GLfloat r, GLfloat g, GLfloat b) __attribute__((alias("glshim_glSecondaryColor3f"))); +void glSecondaryColor3f(GLfloat r, GLfloat g, GLfloat b) AliasExport("glshim_glSecondaryColor3f"); #ifndef USE_ES2 void glshim_glMaterialfv(GLenum face, GLenum pname, const GLfloat *params) { @@ -1329,7 +1331,7 @@ void glshim_glMaterialfv(GLenum face, GLenum pname, const GLfloat *params) { errorGL(); } } -void glMaterialfv(GLenum face, GLenum pname, const GLfloat *params) __attribute__((alias("glshim_glMaterialfv"))); +void glMaterialfv(GLenum face, GLenum pname, const GLfloat *params) AliasExport("glshim_glMaterialfv"); void glshim_glMaterialf(GLenum face, GLenum pname, const GLfloat param) { LOAD_GLES(glMaterialf); if ((glstate.list.compiling || glstate.gl_batch) && glstate.list.active) { @@ -1347,7 +1349,7 @@ void glshim_glMaterialf(GLenum face, GLenum pname, const GLfloat param) { errorGL(); } } -void glMaterialf(GLenum face, GLenum pname, const GLfloat param) __attribute__((alias("glshim_glMaterialf"))); +void glMaterialf(GLenum face, GLenum pname, const GLfloat param) AliasExport("glshim_glMaterialf"); #endif void glshim_glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q) { @@ -1360,7 +1362,7 @@ void glshim_glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q) { glstate.texcoord[0][0] = s; glstate.texcoord[0][1] = t; glstate.texcoord[0][2] = r; glstate.texcoord[0][3] = q; } -void glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q) __attribute__((alias("glshim_glTexCoord4f"))); +void glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q) AliasExport("glshim_glTexCoord4f"); void glshim_glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) { // TODO, error if target is unsuported texture.... @@ -1373,8 +1375,8 @@ void glshim_glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GL glstate.texcoord[target-GL_TEXTURE0][0] = s; glstate.texcoord[target-GL_TEXTURE0][1] = t; glstate.texcoord[target-GL_TEXTURE0][2] = r; glstate.texcoord[target-GL_TEXTURE0][3] = q; } -void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) __attribute__((alias("glshim_glMultiTexCoord4f"))); -void glMultiTexCoord4fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) __attribute__((alias("glshim_glMultiTexCoord4f"))); +void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) AliasExport("glshim_glMultiTexCoord4f"); +void glMultiTexCoord4fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) AliasExport("glshim_glMultiTexCoord4f"); void glshim_glArrayElement(GLint i) { GLfloat *v; @@ -1440,7 +1442,7 @@ void glshim_glArrayElement(GLint i) { } } } -void glArrayElement(GLint i) __attribute__((alias("glshim_glArrayElement"))); +void glArrayElement(GLint i) AliasExport("glshim_glArrayElement"); // TODO: between a lock and unlock, I can assume the array pointers are unchanged // so I can build a renderlist_t on the first call and hold onto it @@ -1449,12 +1451,12 @@ void glshim_glLockArrays(GLint first, GLsizei count) { glstate.list.locked = true; noerrorShim(); } -void glLockArraysEXT(GLint first, GLsizei count) __attribute__((alias("glshim_glLockArrays"))); +void glLockArraysEXT(GLint first, GLsizei count) AliasExport("glshim_glLockArrays"); void glshim_glUnlockArrays() { glstate.list.locked = false; noerrorShim(); } -void glUnlockArraysEXT() __attribute__((alias("glshim_glUnlockArrays"))); +void glUnlockArraysEXT() AliasExport("glshim_glUnlockArrays"); // display lists static renderlist_t *glshim_glGetList(GLuint list) { @@ -1485,7 +1487,7 @@ GLuint glshim_glGenLists(GLsizei range) { } return start + 1; } -GLuint glGenLists(GLsizei range) __attribute__((alias("glshim_glGenLists"))); +GLuint glGenLists(GLsizei range) AliasExport("glshim_glGenLists"); void glshim_glNewList(GLuint list, GLenum mode) { @@ -1505,7 +1507,7 @@ void glshim_glNewList(GLuint list, GLenum mode) { glstate.list.active = alloc_renderlist(); glstate.list.compiling = true; } -void glNewList(GLuint list, GLenum mode) __attribute__((alias("glshim_glNewList"))); +void glNewList(GLuint list, GLenum mode) AliasExport("glshim_glNewList"); void glshim_glEndList() { noerrorShim(); @@ -1525,7 +1527,7 @@ void glshim_glEndList() { } } } -void glEndList() __attribute__((alias("glshim_glEndList"))); +void glEndList() AliasExport("glshim_glEndList"); void glshim_glCallList(GLuint list) { noerrorShim(); @@ -1539,7 +1541,7 @@ void glshim_glCallList(GLuint list) { if (l) draw_renderlist(l); } -void glCallList(GLuint list) __attribute__((alias("glshim_glCallList"))); +void glCallList(GLuint list) AliasExport("glshim_glCallList"); void glPushCall(void *call) { if ((glstate.list.compiling || glstate.gl_batch) && glstate.list.active) { @@ -1583,7 +1585,7 @@ void glshim_glCallLists(GLsizei n, GLenum type, const GLvoid *lists) { #undef call #undef call_bytes } -void glCallLists(GLsizei n, GLenum type, const GLvoid *lists) __attribute__((alias("glshim_glCallLists"))); +void glCallLists(GLsizei n, GLenum type, const GLvoid *lists) AliasExport("glshim_glCallLists"); void glshim_glDeleteList(GLuint list) { if(glstate.gl_batch) { @@ -1604,13 +1606,13 @@ void glshim_glDeleteLists(GLuint list, GLsizei range) { glshim_glDeleteList(list+i); } } -void glDeleteLists(GLuint list, GLsizei range) __attribute__((alias("glshim_glDeleteLists"))); +void glDeleteLists(GLuint list, GLsizei range) AliasExport("glshim_glDeleteLists"); void glshim_glListBase(GLuint base) { noerrorShim(); glstate.list.base = base; } -void glListBase(GLuint base) __attribute__((alias("glshim_glListBase"))); +void glListBase(GLuint base) AliasExport("glshim_glListBase"); GLboolean glshim_glIsList(GLuint list) { noerrorShim(); @@ -1619,7 +1621,7 @@ GLboolean glshim_glIsList(GLuint list) { } return false; } -GLboolean glIsList(GLuint list) __attribute__((alias("glshim_glIsList"))); +GLboolean glIsList(GLuint list) AliasExport("glshim_glIsList"); void glshim_glPolygonMode(GLenum face, GLenum mode) { noerrorShim(); @@ -1646,7 +1648,7 @@ void glshim_glPolygonMode(GLenum face, GLenum mode) { glstate.polygon_mode = 0; } } -void glPolygonMode(GLenum face, GLenum mode) __attribute__((alias("glshim_glPolygonMode"))); +void glPolygonMode(GLenum face, GLenum mode) AliasExport("glshim_glPolygonMode"); void alloc_matrix(matrixstack_t **matrixstack, int depth) { *matrixstack = (matrixstack_t*)malloc(sizeof(matrixstack_t)); @@ -1699,7 +1701,7 @@ void glshim_glPushMatrix() { //gles_glPushMatrix(); } } -void glPushMatrix() __attribute__((alias("glshim_glPushMatrix"))); +void glPushMatrix() AliasExport("glshim_glPushMatrix"); void glshim_glPopMatrix() { PUSH_IF_COMPILING(glPopMatrix); @@ -1746,7 +1748,7 @@ void glshim_glPopMatrix() { //gles_glPopMatrix(); } } -void glPopMatrix() __attribute__((alias("glshim_glPopMatrix"))); +void glPopMatrix() AliasExport("glshim_glPopMatrix"); GLenum glshim_glGetError() { LOAD_GLES(glGetError); @@ -1759,7 +1761,7 @@ GLenum glshim_glGetError() { } return gles_glGetError(); } -GLenum glGetError() __attribute__((alias("glshim_glGetError"))); +GLenum glGetError() AliasExport("glshim_glGetError"); void glshim_glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { PUSH_IF_COMPILING(glBlendColor); @@ -1774,9 +1776,9 @@ void glshim_glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf a } } } -void glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) __attribute__((alias("glshim_glBlendColor"))); -void glBlendColorEXT(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) __attribute__((alias("glshim_glBlendColor"))); -void glBlendColorARB(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) __attribute__((alias("glshim_glBlendColor"))); +void glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) AliasExport("glshim_glBlendColor"); +void glBlendColorEXT(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) AliasExport("glshim_glBlendColor"); +void glBlendColorARB(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) AliasExport("glshim_glBlendColor"); void glshim_glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) { @@ -1787,8 +1789,8 @@ void glshim_glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfa #endif gles_glBlendFuncSeparate(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha); } -void glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) __attribute__((alias("glshim_glBlendFuncSeparate"))); -void glBlendFuncSeparateEXT (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) __attribute__((alias("glshim_glBlendFuncSeparate"))); +void glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) AliasExport("glshim_glBlendFuncSeparate"); +void glBlendFuncSeparateEXT (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) AliasExport("glshim_glBlendFuncSeparate"); void glshim_glBlendEquationSeparate(GLenum modeRGB, GLenum modeA) { PUSH_IF_COMPILING(glBlendEquationSeparate); @@ -1798,8 +1800,8 @@ void glshim_glBlendEquationSeparate(GLenum modeRGB, GLenum modeA) { #endif gles_glBlendEquationSeparate(modeRGB, modeA); } -void glBlendEquationSeparate(GLenum modeRGB, GLenum modeA) __attribute__((alias("glshim_glBlendEquationSeparate"))); -void glBlendEquationSeparateEXT(GLenum modeRGB, GLenum modeA) __attribute__((alias("glshim_glBlendEquationSeparate"))); +void glBlendEquationSeparate(GLenum modeRGB, GLenum modeA) AliasExport("glshim_glBlendEquationSeparate"); +void glBlendEquationSeparateEXT(GLenum modeRGB, GLenum modeA) AliasExport("glshim_glBlendEquationSeparate"); void glshim_glBlendFunc(GLenum sfactor, GLenum dfactor) { if (glstate.list.active && (glstate.gl_batch && !glstate.list.compiling)) { @@ -1875,7 +1877,7 @@ void glshim_glBlendFunc(GLenum sfactor, GLenum dfactor) { #endif gles_glBlendFunc(sfactor, dfactor); } -void glBlendFunc(GLenum sfactor, GLenum dfactor) __attribute__((alias("glshim_glBlendFunc"))); +void glBlendFunc(GLenum sfactor, GLenum dfactor) AliasExport("glshim_glBlendFunc"); void glshim_glStencilMaskSeparate(GLenum face, GLuint mask) { @@ -1883,7 +1885,7 @@ void glshim_glStencilMaskSeparate(GLenum face, GLuint mask) { if ((face==GL_FRONT) || (face==GL_FRONT_AND_BACK)) glshim_glStencilMask(mask); } -void glStencilMaskSeparate(GLenum face, GLuint mask) __attribute__((alias("glshim_glStencilMaskSeparate"))); +void glStencilMaskSeparate(GLenum face, GLuint mask) AliasExport("glshim_glStencilMaskSeparate"); void init_statebatch() { @@ -1926,7 +1928,7 @@ void glshim_glFlush() { gles_glFlush(); errorGL(); } -void glFlush() __attribute__((alias("glshim_glFlush"))); +void glFlush() AliasExport("glshim_glFlush"); void glshim_glFinish() { LOAD_GLES(glFinish); @@ -1940,7 +1942,7 @@ void glshim_glFinish() { gles_glFinish(); errorGL(); } -void glFinish() __attribute__((alias("glshim_glFinish"))); +void glFinish() AliasExport("glshim_glFinish"); void glshim_glLoadMatrixf(const GLfloat * m) { LOAD_GLES(glLoadMatrixf); @@ -1953,7 +1955,7 @@ void glshim_glLoadMatrixf(const GLfloat * m) { } gles_glLoadMatrixf(m); } -void glLoadMatrixf(const GLfloat * m) __attribute__((alias("glshim_glLoadMatrixf"))); +void glLoadMatrixf(const GLfloat * m) AliasExport("glshim_glLoadMatrixf"); void glshim_glMultMatrixf(const GLfloat * m) { LOAD_GLES(glMultMatrixf); @@ -1966,7 +1968,7 @@ void glshim_glMultMatrixf(const GLfloat * m) { } gles_glMultMatrixf(m); } -void glMultMatrixf(const GLfloat * m) __attribute__((alias("glshim_glMultMatrixf"))); +void glMultMatrixf(const GLfloat * m) AliasExport("glshim_glMultMatrixf"); void glshim_glFogfv(GLenum pname, const GLfloat* params) { LOAD_GLES(glFogfv); @@ -1982,7 +1984,7 @@ void glshim_glFogfv(GLenum pname, const GLfloat* params) { gles_glFogfv(pname, params); } -void glFogfv(GLenum pname, const GLfloat* params) __attribute__((alias("glshim_glFogfv"))); +void glFogfv(GLenum pname, const GLfloat* params) AliasExport("glshim_glFogfv"); void glshim_glIndexPointer(GLenum type, GLsizei stride, const GLvoid * pointer) { static bool warning = false; @@ -1991,7 +1993,7 @@ void glshim_glIndexPointer(GLenum type, GLsizei stride, const GLvoid * pointer) warning = true; } } -void glIndexPointer(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glIndexPointer"))); +void glIndexPointer(GLenum type, GLsizei stride, const GLvoid * pointer) AliasExport("glshim_glIndexPointer"); void glshim_glEdgeFlagPointer(GLsizei stride, const GLvoid * pointer) { static bool warning = false; @@ -2000,7 +2002,7 @@ void glshim_glEdgeFlagPointer(GLsizei stride, const GLvoid * pointer) { warning = true; } } -void glEdgeFlagPointer(GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glEdgeFlagPointer"))); +void glEdgeFlagPointer(GLsizei stride, const GLvoid * pointer) AliasExport("glshim_glEdgeFlagPointer"); void glshim_glGetPointerv(GLenum pname, GLvoid* *params) { noerrorShim(); @@ -2032,4 +2034,63 @@ void glshim_glGetPointerv(GLenum pname, GLvoid* *params) { errorShim(GL_INVALID_ENUM); } } -void glGetPointerv(GLenum pname, GLvoid* *params) __attribute__((alias("glshim_glGetPointerv"))); +void glGetPointerv(GLenum pname, GLvoid* *params) AliasExport("glshim_glGetPointerv"); + +void glshim_glPointParameteri(GLenum pname, GLint param) +{ + glshim_glPointParameterf(pname, param); +} +void glPointParameteri(GLenum pname, GLint param) AliasExport("glshim_glPointParameteri"); + +void glshim_glPointParameteriv(GLenum pname, const GLint * params) +{ + GLfloat tmp[3]; + int v=(pname==GL_POINT_DISTANCE_ATTENUATION)?3:1; + for (int i=0; i #endif +#ifndef AliasExport +#define AliasExport(name) __attribute__((alias(name))) __attribute__((visibility("default"))) +#endif + #ifndef GL_H #define GL_H @@ -370,6 +374,10 @@ void glshim_glPushMatrix(); void glshim_glPopMatrix(); GLenum glshim_glGetError(); +void glshim_glPointParameteri(GLenum pname, GLint param); +void glshim_glPointParameteriv(GLenum pname, const GLint * params); + + void glshim_glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); void glshim_glIndexPointer(GLenum type, GLsizei stride, const GLvoid * pointer); void glshim_glEdgeFlagPointer(GLsizei stride, const GLvoid * pointer); @@ -386,6 +394,9 @@ void glshim_glFogfv(GLenum pname, const GLfloat* params); void glshim_glStencilMaskSeparate(GLenum face, GLuint mask); +void glshim_glMultiDrawArrays(GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +void glshim_glMultiDrawElements( GLenum mode, GLsizei *count, GLenum type, const void * const *indices, GLsizei primcount); + void flush(); void init_batch(); diff --git a/project/jni/glshim/src/gl/light.c b/project/jni/glshim/src/gl/light.c index 5d3b5a766..04f58a009 100755 --- a/project/jni/glshim/src/gl/light.c +++ b/project/jni/glshim/src/gl/light.c @@ -69,8 +69,8 @@ void glshim_glLightf(GLenum light, GLenum pname, const GLfloat params) { errorGL(); } -void glLightModelf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glLightModelf"))); -void glLightModelfv(GLenum pname, const GLfloat* params) __attribute__((alias("glshim_glLightModelfv"))); -void glLightfv(GLenum light, GLenum pname, const GLfloat* params) __attribute__((alias("glshim_glLightfv"))); -void glLightf(GLenum light, GLenum pname, const GLfloat params) __attribute__((alias("glshim_glLightf"))); +void glLightModelf(GLenum pname, GLfloat param) AliasExport("glshim_glLightModelf"); +void glLightModelfv(GLenum pname, const GLfloat* params) AliasExport("glshim_glLightModelfv"); +void glLightfv(GLenum light, GLenum pname, const GLfloat* params) AliasExport("glshim_glLightfv"); +void glLightf(GLenum light, GLenum pname, const GLfloat params) AliasExport("glshim_glLightf"); #endif diff --git a/project/jni/glshim/src/gl/line.c b/project/jni/glshim/src/gl/line.c index 539a2c35a..656ca92d1 100755 --- a/project/jni/glshim/src/gl/line.c +++ b/project/jni/glshim/src/gl/line.c @@ -30,7 +30,7 @@ void glshim_glLineStipple(GLuint factor, GLushort pattern) { glshim_glPopAttrib(); noerrorShim(); } -void glLineStipple(GLuint factor, GLushort pattern) __attribute__((alias("glshim_glLineStipple"))); +void glLineStipple(GLuint factor, GLushort pattern) AliasExport("glshim_glLineStipple"); void bind_stipple_tex() { glshim_glBindTexture(GL_TEXTURE_2D, stippleTexture); diff --git a/project/jni/glshim/src/gl/raster.c b/project/jni/glshim/src/gl/raster.c index 3d7d83640..d8560d8f0 100755 --- a/project/jni/glshim/src/gl/raster.c +++ b/project/jni/glshim/src/gl/raster.c @@ -535,10 +535,10 @@ void render_raster_list(rasterlist_t* rast) { } //Direct wrapper -void glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap) __attribute__((alias("glshim_glBitmap"))); -void glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *data) __attribute__((alias("glshim_glDrawPixels"))); -void glRasterPos3f(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glRasterPos3f"))); -void glWindowPos3f(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glWindowPos3f"))); -void glViewport(GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glViewport"))); -void glPixelZoom(GLfloat xfactor, GLfloat yfactor) __attribute__((alias("glshim_glPixelZoom"))); -void glPixelTransferf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glPixelTransferf"))); +void glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap) AliasExport("glshim_glBitmap"); +void glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *data) AliasExport("glshim_glDrawPixels"); +void glRasterPos3f(GLfloat x, GLfloat y, GLfloat z) AliasExport("glshim_glRasterPos3f"); +void glWindowPos3f(GLfloat x, GLfloat y, GLfloat z) AliasExport("glshim_glWindowPos3f"); +void glViewport(GLint x, GLint y, GLsizei width, GLsizei height) AliasExport("glshim_glViewport"); +void glPixelZoom(GLfloat xfactor, GLfloat yfactor) AliasExport("glshim_glPixelZoom"); +void glPixelTransferf(GLenum pname, GLfloat param) AliasExport("glshim_glPixelTransferf"); diff --git a/project/jni/glshim/src/gl/render.c b/project/jni/glshim/src/gl/render.c index b7b35d3d8..87b6fb0b4 100755 --- a/project/jni/glshim/src/gl/render.c +++ b/project/jni/glshim/src/gl/render.c @@ -364,9 +364,9 @@ void select_glDrawElements(const pointer_state_t* vtx, GLenum mode, GLuint count } //Direct wrapper -GLint glRenderMode(GLenum mode) __attribute__((alias("glshim_glRenderMode"))); -void glInitNames() __attribute__((alias("glshim_glInitNames"))); -void glPopName() __attribute__((alias("glshim_glPopName"))); -void glPushName(GLuint name) __attribute__((alias("glshim_glPushName"))); -void glLoadName(GLuint name) __attribute__((alias("glshim_glLoadName"))); -void glSelectBuffer(GLsizei size, GLuint *buffer) __attribute__((alias("glshim_glSelectBuffer"))); +GLint glRenderMode(GLenum mode) AliasExport("glshim_glRenderMode"); +void glInitNames() AliasExport("glshim_glInitNames"); +void glPopName() AliasExport("glshim_glPopName"); +void glPushName(GLuint name) AliasExport("glshim_glPushName"); +void glLoadName(GLuint name) AliasExport("glshim_glLoadName"); +void glSelectBuffer(GLsizei size, GLuint *buffer) AliasExport("glshim_glSelectBuffer"); diff --git a/project/jni/glshim/src/gl/stack.c b/project/jni/glshim/src/gl/stack.c index 697263a86..56e2876e9 100755 --- a/project/jni/glshim/src/gl/stack.c +++ b/project/jni/glshim/src/gl/stack.c @@ -584,7 +584,7 @@ void glshim_glPopClientAttrib() { #undef v4 //Direct wrapper -void glPushClientAttrib(GLbitfield mask) __attribute__((alias("glshim_glPushClientAttrib"))); -void glPopClientAttrib() __attribute__((alias("glshim_glPopClientAttrib"))); -void glPushAttrib(GLbitfield mask) __attribute__((alias("glshim_glPushAttrib"))); -void glPopAttrib() __attribute__((alias("glshim_glPopAttrib"))); \ No newline at end of file +void glPushClientAttrib(GLbitfield mask) AliasExport("glshim_glPushClientAttrib"); +void glPopClientAttrib() AliasExport("glshim_glPopClientAttrib"); +void glPushAttrib(GLbitfield mask) AliasExport("glshim_glPushAttrib"); +void glPopAttrib() AliasExport("glshim_glPopAttrib"); \ No newline at end of file diff --git a/project/jni/glshim/src/gl/texgen.c b/project/jni/glshim/src/gl/texgen.c index f86e5ba61..43e2766c4 100755 --- a/project/jni/glshim/src/gl/texgen.c +++ b/project/jni/glshim/src/gl/texgen.c @@ -440,11 +440,11 @@ void glshim_glMultTransposeMatrixf(const GLfloat *m) { errorGL(); } -void glTexGenfv(GLenum coord, GLenum pname, const GLfloat *params) __attribute__((alias("glshim_glTexGenfv"))); -void glTexGeni(GLenum coord, GLenum pname, GLint param) __attribute__((alias("glshim_glTexGeni"))); -void glGetTexGenfv(GLenum coord,GLenum pname,GLfloat *params) __attribute__((alias("glshim_glGetTexGenfv"))); +void glTexGenfv(GLenum coord, GLenum pname, const GLfloat *params) AliasExport("glshim_glTexGenfv"); +void glTexGeni(GLenum coord, GLenum pname, GLint param) AliasExport("glshim_glTexGeni"); +void glGetTexGenfv(GLenum coord,GLenum pname,GLfloat *params) AliasExport("glshim_glGetTexGenfv"); -void glLoadTransposeMatrixf(const GLfloat *m) __attribute__((alias("glshim_glLoadTransposeMatrixf"))); -void glLoadTransposeMatrixd(const GLdouble *m) __attribute__((alias("glshim_glLoadTransposeMatrixd"))); -void glMultTransposeMatrixd(const GLdouble *m) __attribute__((alias("glshim_glMultTransposeMatrixd"))); -void glMultTransposeMatrixf(const GLfloat *m) __attribute__((alias("glshim_glMultTransposeMatrixf"))); +void glLoadTransposeMatrixf(const GLfloat *m) AliasExport("glshim_glLoadTransposeMatrixf"); +void glLoadTransposeMatrixd(const GLdouble *m) AliasExport("glshim_glLoadTransposeMatrixd"); +void glMultTransposeMatrixd(const GLdouble *m) AliasExport("glshim_glMultTransposeMatrixd"); +void glMultTransposeMatrixf(const GLfloat *m) AliasExport("glshim_glMultTransposeMatrixf"); diff --git a/project/jni/glshim/src/gl/texture.c b/project/jni/glshim/src/gl/texture.c index e8c4bbd0e..178af31ae 100755 --- a/project/jni/glshim/src/gl/texture.c +++ b/project/jni/glshim/src/gl/texture.c @@ -2081,57 +2081,57 @@ void glshim_glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, //Direct wrapper -void glTexImage2D(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *data) __attribute__((alias("glshim_glTexImage2D"))); -void glTexImage1D(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *data) __attribute__((alias("glshim_glTexImage1D"))); -void glTexImage3D(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *data) __attribute__((alias("glshim_glTexImage3D"))); -void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *data) __attribute__((alias("glshim_glTexSubImage2D"))); -void glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *data) __attribute__((alias("glshim_glTexSubImage1D"))); -void glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *data) __attribute__((alias("glshim_glTexSubImage3D"))); -void glBindTexture(GLenum target, GLuint texture) __attribute__((alias("glshim_glBindTexture"))); -void glGenTextures(GLsizei n, GLuint * textures) __attribute__((alias("glshim_glGenTextures"))); -void glDeleteTextures(GLsizei n, const GLuint * textures) __attribute__((alias("glshim_glDeleteTextures"))); -void glTexParameteri(GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glTexParameteri"))); -void glTexParameterf(GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexParameterf"))); -GLboolean glAreTexturesResident(GLsizei n, const GLuint *textures, GLboolean *residences) __attribute__((alias("glshim_glAreTexturesResident"))); -void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params) __attribute__((alias("glshim_glGetTexLevelParameteriv"))); -void glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid * img) __attribute__((alias("glshim_glGetTexImage"))); -void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * data) __attribute__((alias("glshim_glReadPixels"))); -void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexImage2D"))); -void glCompressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexImage1D"))); -void glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexImage3D"))); -void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexSubImage2D"))); -void glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexSubImage1D"))); -void glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexSubImage3D"))); -void glGetCompressedTexImage(GLenum target, GLint lod, GLvoid *img) __attribute__((alias("glshim_glGetCompressedTexImage"))); -void glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) __attribute__((alias("glshim_glCopyTexImage1D"))); -void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) __attribute__((alias("glshim_glCopyTexImage2D"))); -void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTexSubImage2D"))); -void glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyTexSubImage1D"))); -void glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTexSubImage3D"))); -void glActiveTexture( GLenum texture ) __attribute__((alias("glshim_glActiveTexture"))); -void glClientActiveTexture( GLenum texture ) __attribute__((alias("glshim_glClientActiveTexture"))); -GLboolean glIsTexture( GLuint texture ) __attribute__((alias("glshim_glIsTexture"))); -void glPixelStorei(GLenum pname, GLint param) __attribute__((alias("glshim_glPixelStorei"))); +void glTexImage2D(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *data) AliasExport("glshim_glTexImage2D"); +void glTexImage1D(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *data) AliasExport("glshim_glTexImage1D"); +void glTexImage3D(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *data) AliasExport("glshim_glTexImage3D"); +void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *data) AliasExport("glshim_glTexSubImage2D"); +void glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *data) AliasExport("glshim_glTexSubImage1D"); +void glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *data) AliasExport("glshim_glTexSubImage3D"); +void glBindTexture(GLenum target, GLuint texture) AliasExport("glshim_glBindTexture"); +void glGenTextures(GLsizei n, GLuint * textures) AliasExport("glshim_glGenTextures"); +void glDeleteTextures(GLsizei n, const GLuint * textures) AliasExport("glshim_glDeleteTextures"); +void glTexParameteri(GLenum target, GLenum pname, GLint param) AliasExport("glshim_glTexParameteri"); +void glTexParameterf(GLenum target, GLenum pname, GLfloat param) AliasExport("glshim_glTexParameterf"); +GLboolean glAreTexturesResident(GLsizei n, const GLuint *textures, GLboolean *residences) AliasExport("glshim_glAreTexturesResident"); +void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params) AliasExport("glshim_glGetTexLevelParameteriv"); +void glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid * img) AliasExport("glshim_glGetTexImage"); +void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * data) AliasExport("glshim_glReadPixels"); +void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexImage2D"); +void glCompressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexImage1D"); +void glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexImage3D"); +void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexSubImage2D"); +void glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexSubImage1D"); +void glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexSubImage3D"); +void glGetCompressedTexImage(GLenum target, GLint lod, GLvoid *img) AliasExport("glshim_glGetCompressedTexImage"); +void glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) AliasExport("glshim_glCopyTexImage1D"); +void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) AliasExport("glshim_glCopyTexImage2D"); +void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) AliasExport("glshim_glCopyTexSubImage2D"); +void glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) AliasExport("glshim_glCopyTexSubImage1D"); +void glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) AliasExport("glshim_glCopyTexSubImage3D"); +void glActiveTexture( GLenum texture ) AliasExport("glshim_glActiveTexture"); +void glClientActiveTexture( GLenum texture ) AliasExport("glshim_glClientActiveTexture"); +GLboolean glIsTexture( GLuint texture ) AliasExport("glshim_glIsTexture"); +void glPixelStorei(GLenum pname, GLint param) AliasExport("glshim_glPixelStorei"); //EXT mapper -void glTexSubImage3DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *data) __attribute__((alias("glshim_glTexSubImage3D"))); -void glCompressedTexImage2DEXT(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexImage2D"))); -void glCompressedTexImage1DEXT(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexImage1D"))); -void glCompressedTexImage3DEXT(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexImage3D"))); -void glCompressedTexSubImage2DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexSubImage2D"))); -void glCompressedTexSubImage1DEXT(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexSubImage1D"))); -void glCompressedTexSubImage3DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexSubImage3D"))); -void glGetCompressedTexImageEXT(GLenum target, GLint lod, GLvoid *img) __attribute__((alias("glshim_glGetCompressedTexImage"))); -void glCopyTexSubImage3DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTexSubImage3D"))); +void glTexSubImage3DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *data) AliasExport("glshim_glTexSubImage3D"); +void glCompressedTexImage2DEXT(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexImage2D"); +void glCompressedTexImage1DEXT(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexImage1D"); +void glCompressedTexImage3DEXT(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexImage3D"); +void glCompressedTexSubImage2DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexSubImage2D"); +void glCompressedTexSubImage1DEXT(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexSubImage1D"); +void glCompressedTexSubImage3DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexSubImage3D"); +void glGetCompressedTexImageEXT(GLenum target, GLint lod, GLvoid *img) AliasExport("glshim_glGetCompressedTexImage"); +void glCopyTexSubImage3DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) AliasExport("glshim_glCopyTexSubImage3D"); //ARB mapper -void glActiveTextureARB(GLenum texture) __attribute__((alias("glshim_glActiveTexture"))); -void glClientActiveTextureARB(GLenum texture) __attribute__((alias("glshim_glClientActiveTexture"))); -void glTexSubImage3DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *data) __attribute__((alias("glshim_glTexSubImage3D"))); -void glCompressedTexImage2DARB(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexImage2D"))); -void glCompressedTexImage1DARB(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexImage1D"))); -void glCompressedTexImage3DARB(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexImage3D"))); -void glCompressedTexSubImage2DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexSubImage2D"))); -void glCompressedTexSubImage1DARB(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexSubImage1D"))); -void glCompressedTexSubImage3DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) __attribute__((alias("glshim_glCompressedTexSubImage3D"))); -void glGetCompressedTexImageARB(GLenum target, GLint lod, GLvoid *img) __attribute__((alias("glshim_glGetCompressedTexImage"))); -void glCopyTexSubImage3DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTexSubImage3D"))); +void glActiveTextureARB(GLenum texture) AliasExport("glshim_glActiveTexture"); +void glClientActiveTextureARB(GLenum texture) AliasExport("glshim_glClientActiveTexture"); +void glTexSubImage3DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *data) AliasExport("glshim_glTexSubImage3D"); +void glCompressedTexImage2DARB(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexImage2D"); +void glCompressedTexImage1DARB(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexImage1D"); +void glCompressedTexImage3DARB(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexImage3D"); +void glCompressedTexSubImage2DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexSubImage2D"); +void glCompressedTexSubImage1DARB(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexSubImage1D"); +void glCompressedTexSubImage3DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) AliasExport("glshim_glCompressedTexSubImage3D"); +void glGetCompressedTexImageARB(GLenum target, GLint lod, GLvoid *img) AliasExport("glshim_glGetCompressedTexImage"); +void glCopyTexSubImage3DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) AliasExport("glshim_glCopyTexSubImage3D"); diff --git a/project/jni/glshim/src/gl/wrap/gl.c b/project/jni/glshim/src/gl/wrap/gl.c index 1c81a1aad..eae027688 100755 --- a/project/jni/glshim/src/gl/wrap/gl.c +++ b/project/jni/glshim/src/gl/wrap/gl.c @@ -722,68 +722,68 @@ void glshim_glBlendFuncSeparatei(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenu //Direct wrapper #ifdef USE_ES2 -void glCompileShader(GLuint shader) __attribute__((alias("glshim_glCompileShader"))); -GLuint glCreateShaderObject(GLenum shaderType) __attribute__((alias("glshim_glCreateShaderObject"))); -void glGetObjectParameteriv(GLuint shader, GLenum pname, GLint *params) __attribute__((alias("glshim_glGetObjectParameteriv"))); -void glShaderSource(GLuint shader, GLsizei count, const GLchar **string, const GLint *length) __attribute__((alias("glshim_glShaderSource"))); +void glCompileShader(GLuint shader) AliasExport("glshim_glCompileShader"); +GLuint glCreateShaderObject(GLenum shaderType) AliasExport("glshim_glCreateShaderObject"); +void glGetObjectParameteriv(GLuint shader, GLenum pname, GLint *params) AliasExport("glshim_glGetObjectParameteriv"); +void glShaderSource(GLuint shader, GLsizei count, const GLchar **string, const GLint *length) AliasExport("glshim_glShaderSource"); -void glCompileShaderARB(GLuint shader) __attribute__((alias("glshim_glCompileShader"))); -GLuint glCreateShaderObjectARB(GLenum shaderType) __attribute__((alias("glshim_glCreateShaderObject"))); -void glGetObjectParameterivARB(GLuint shader, GLenum pname, GLint *params) __attribute__((alias("glshim_glGetObjectParameteriv"))); -void glShaderSourceARB(GLuint shader, GLsizei count, const GLchar **string, const GLint *length) __attribute__((alias("glshim_glShaderSource"))); +void glCompileShaderARB(GLuint shader) AliasExport("glshim_glCompileShader"); +GLuint glCreateShaderObjectARB(GLenum shaderType) AliasExport("glshim_glCreateShaderObject"); +void glGetObjectParameterivARB(GLuint shader, GLenum pname, GLint *params) AliasExport("glshim_glGetObjectParameteriv"); +void glShaderSourceARB(GLuint shader, GLsizei count, const GLchar **string, const GLint *length) AliasExport("glshim_glShaderSource"); #endif -void glClearDepth(GLdouble depth) __attribute__((alias("glshim_glClearDepth"))); -void glClipPlane(GLenum plane, const GLdouble *equation) __attribute__((alias("glshim_glClipPlane"))); -void glDepthRange(GLdouble nearVal, GLdouble farVal) __attribute__((alias("glshim_glDepthRange"))); -void glFogi(GLenum pname, GLint param) __attribute__((alias("glshim_glFogi"))); -void glFogiv(GLenum pname, GLint *params) __attribute__((alias("glshim_glFogiv"))); -void glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near, GLdouble far) __attribute__((alias("glshim_glFrustum"))); -void glGetDoublev(GLenum pname, GLdouble *params) __attribute__((alias("glshim_glGetDoublev"))); -void glLighti(GLenum light, GLenum pname, GLint param) __attribute__((alias("glshim_glLighti"))); -void glLightiv(GLenum light, GLenum pname, GLint *iparams) __attribute__((alias("glshim_glLightiv"))); -void glLightModeli(GLenum pname, GLint param) __attribute__((alias("glshim_glLightModeli"))); -void glLightModeliv(GLenum pname, GLint *iparams) __attribute__((alias("glshim_glLightModeliv"))); -void glMateriali(GLenum face, GLenum pname, GLint param) __attribute__((alias("glshim_glMateriali"))); -void glMaterialiv(GLenum face, GLenum pname, GLint *param) __attribute__((alias("glshim_glMaterialiv"))); -void glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near, GLdouble far) __attribute__((alias("glshim_glOrtho"))); -void glGetMaterialiv(GLenum face, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetMaterialiv"))); -void glGetLightiv(GLenum light, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetLightiv"))); -void glGetClipPlane(GLenum plane, GLdouble *equation) __attribute__((alias("glshim_glGetClipPlane"))); -void glDrawRangeElements(GLenum mode,GLuint start,GLuint end,GLsizei count,GLenum type,const void *indices) __attribute__((alias("glshim_glDrawRangeElements"))); -void glColor3f(GLfloat r, GLfloat g, GLfloat b) __attribute__((alias("glshim_glColor3f"))); -void glColor3fv(GLfloat *c) __attribute__((alias("glshim_glColor3fv"))); -void glColor4fv(GLfloat *c) __attribute__((alias("glshim_glColor4fv"))); -void glIndexfv(const GLfloat *c) __attribute__((alias("glshim_glIndexfv"))); -void glSecondaryColor3fv(const GLfloat *v) __attribute__((alias("glshim_glSecondaryColor3fv"))); -void glRasterPos2f(GLfloat x, GLfloat y) __attribute__((alias("glshim_glRasterPos2f"))); -void glRasterPos2fv(const GLfloat *v) __attribute__((alias("glshim_glRasterPos2fv"))); -void glRasterPos3fv(const GLfloat *v) __attribute__((alias("glshim_glRasterPos3fv"))); -void glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) __attribute__((alias("glshim_glRasterPos4f"))); -void glRasterPos4fv(const GLfloat *v) __attribute__((alias("glshim_glRasterPos4fv"))); -void glWindowPos2f(GLfloat x, GLfloat y) __attribute__((alias("glshim_glWindowPos2f"))); -void glWindowPos2fv(const GLfloat *v) __attribute__((alias("glshim_glWindowPos2fv"))); -void glWindowPos3fv(const GLfloat *v) __attribute__((alias("glshim_glWindowPos3fv"))); -void glPixelStoref(GLenum pname, GLfloat param) __attribute__((alias("glshim_glPixelStoref"))); -void glGetTexGendv(GLenum coord,GLenum pname,GLdouble *params) __attribute__((alias("glshim_glGetTexGendv"))); -void glGetTexGeniv(GLenum coord,GLenum pname,GLint *params) __attribute__((alias("glshim_glGetTexGeniv"))); -void glPixelTransferi(GLenum pname, GLint param) __attribute__((alias("glshim_glPixelTransferi"))); -void glEvalCoord1d(GLdouble u) __attribute__((alias("glshim_glEvalCoord1d"))); -void glEvalCoord1dv(GLdouble *v) __attribute__((alias("glshim_glEvalCoord1dv"))); -void glEvalCoord1fv(GLfloat *v) __attribute__((alias("glshim_glEvalCoord1fv"))); -void glEvalCoord2d(GLdouble u, GLdouble v) __attribute__((alias("glshim_glEvalCoord2d"))); -void glEvalCoord2dv(GLdouble *v) __attribute__((alias("glshim_glEvalCoord2dv"))); -void glEvalCoord2fv(GLfloat *v) __attribute__((alias("glshim_glEvalCoord2fv"))); -void glMapGrid1d(GLint un, GLdouble u1, GLdouble u2) __attribute__((alias("glshim_glMapGrid1d"))); -void glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2) __attribute__((alias("glshim_glMapGrid2d"))); -void glLoadMatrixd(const GLdouble *m) __attribute__((alias("glshim_glLoadMatrixd"))); -void glMultMatrixd(const GLdouble *m) __attribute__((alias("glshim_glMultMatrixd"))); -void glNormal3fv(GLfloat *v) __attribute__((alias("glshim_glNormal3fv"))); +void glClearDepth(GLdouble depth) AliasExport("glshim_glClearDepth"); +void glClipPlane(GLenum plane, const GLdouble *equation) AliasExport("glshim_glClipPlane"); +void glDepthRange(GLdouble nearVal, GLdouble farVal) AliasExport("glshim_glDepthRange"); +void glFogi(GLenum pname, GLint param) AliasExport("glshim_glFogi"); +void glFogiv(GLenum pname, GLint *params) AliasExport("glshim_glFogiv"); +void glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near, GLdouble far) AliasExport("glshim_glFrustum"); +void glGetDoublev(GLenum pname, GLdouble *params) AliasExport("glshim_glGetDoublev"); +void glLighti(GLenum light, GLenum pname, GLint param) AliasExport("glshim_glLighti"); +void glLightiv(GLenum light, GLenum pname, GLint *iparams) AliasExport("glshim_glLightiv"); +void glLightModeli(GLenum pname, GLint param) AliasExport("glshim_glLightModeli"); +void glLightModeliv(GLenum pname, GLint *iparams) AliasExport("glshim_glLightModeliv"); +void glMateriali(GLenum face, GLenum pname, GLint param) AliasExport("glshim_glMateriali"); +void glMaterialiv(GLenum face, GLenum pname, GLint *param) AliasExport("glshim_glMaterialiv"); +void glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near, GLdouble far) AliasExport("glshim_glOrtho"); +void glGetMaterialiv(GLenum face, GLenum pname, GLint * params) AliasExport("glshim_glGetMaterialiv"); +void glGetLightiv(GLenum light, GLenum pname, GLint * params) AliasExport("glshim_glGetLightiv"); +void glGetClipPlane(GLenum plane, GLdouble *equation) AliasExport("glshim_glGetClipPlane"); +void glDrawRangeElements(GLenum mode,GLuint start,GLuint end,GLsizei count,GLenum type,const void *indices) AliasExport("glshim_glDrawRangeElements"); +void glColor3f(GLfloat r, GLfloat g, GLfloat b) AliasExport("glshim_glColor3f"); +void glColor3fv(GLfloat *c) AliasExport("glshim_glColor3fv"); +void glColor4fv(GLfloat *c) AliasExport("glshim_glColor4fv"); +void glIndexfv(const GLfloat *c) AliasExport("glshim_glIndexfv"); +void glSecondaryColor3fv(const GLfloat *v) AliasExport("glshim_glSecondaryColor3fv"); +void glRasterPos2f(GLfloat x, GLfloat y) AliasExport("glshim_glRasterPos2f"); +void glRasterPos2fv(const GLfloat *v) AliasExport("glshim_glRasterPos2fv"); +void glRasterPos3fv(const GLfloat *v) AliasExport("glshim_glRasterPos3fv"); +void glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) AliasExport("glshim_glRasterPos4f"); +void glRasterPos4fv(const GLfloat *v) AliasExport("glshim_glRasterPos4fv"); +void glWindowPos2f(GLfloat x, GLfloat y) AliasExport("glshim_glWindowPos2f"); +void glWindowPos2fv(const GLfloat *v) AliasExport("glshim_glWindowPos2fv"); +void glWindowPos3fv(const GLfloat *v) AliasExport("glshim_glWindowPos3fv"); +void glPixelStoref(GLenum pname, GLfloat param) AliasExport("glshim_glPixelStoref"); +void glGetTexGendv(GLenum coord,GLenum pname,GLdouble *params) AliasExport("glshim_glGetTexGendv"); +void glGetTexGeniv(GLenum coord,GLenum pname,GLint *params) AliasExport("glshim_glGetTexGeniv"); +void glPixelTransferi(GLenum pname, GLint param) AliasExport("glshim_glPixelTransferi"); +void glEvalCoord1d(GLdouble u) AliasExport("glshim_glEvalCoord1d"); +void glEvalCoord1dv(GLdouble *v) AliasExport("glshim_glEvalCoord1dv"); +void glEvalCoord1fv(GLfloat *v) AliasExport("glshim_glEvalCoord1fv"); +void glEvalCoord2d(GLdouble u, GLdouble v) AliasExport("glshim_glEvalCoord2d"); +void glEvalCoord2dv(GLdouble *v) AliasExport("glshim_glEvalCoord2dv"); +void glEvalCoord2fv(GLfloat *v) AliasExport("glshim_glEvalCoord2fv"); +void glMapGrid1d(GLint un, GLdouble u1, GLdouble u2) AliasExport("glshim_glMapGrid1d"); +void glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2) AliasExport("glshim_glMapGrid2d"); +void glLoadMatrixd(const GLdouble *m) AliasExport("glshim_glLoadMatrixd"); +void glMultMatrixd(const GLdouble *m) AliasExport("glshim_glMultMatrixd"); +void glNormal3fv(GLfloat *v) AliasExport("glshim_glNormal3fv"); // rect #define GL_RECT(suffix, type) \ - void glRect##suffix(type x1, type y1, type x2, type y2) __attribute__((alias("glshim_glRect" #suffix))); \ - void glRect##suffix##v(const type *v)__attribute__((alias("glshim_glRect" #suffix "v"))); + void glRect##suffix(type x1, type y1, type x2, type y2) AliasExport("glshim_glRect" #suffix); \ + void glRect##suffix##v(const type *v)AliasExport("glshim_glRect" #suffix "v"); GL_RECT(d, GLdouble) GL_RECT(f, GLfloat) @@ -791,87 +791,87 @@ GL_RECT(i, GLint) GL_RECT(s, GLshort) #undef GL_RECT -void glTexCoord1f(GLfloat s) __attribute__((alias("glshim_glTexCoord1f"))); -void glTexCoord1fv(GLfloat *t) __attribute__((alias("glshim_glTexCoord1fv"))); -void glTexCoord2f(GLfloat s, GLfloat t) __attribute__((alias("glshim_glTexCoord2f"))); -void glTexCoord2fv(GLfloat *t) __attribute__((alias("glshim_glTexCoord2fv"))); -void glTexCoord3f(GLfloat s, GLfloat t, GLfloat r) __attribute__((alias("glshim_glTexCoord3f"))); -void glTexCoord3fv(GLfloat *t) __attribute__((alias("glshim_glTexCoord3fv"))); -void glTexCoord4fv(GLfloat *t) __attribute__((alias("glshim_glTexCoord4fv"))); -void glMultiTexCoord1f(GLenum target, GLfloat s) __attribute__((alias("glshim_glMultiTexCoord1f"))); -void glMultiTexCoord1fv(GLenum target, GLfloat *t) __attribute__((alias("glshim_glMultiTexCoord1fv"))); -void glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t) __attribute__((alias("glshim_glMultiTexCoord2f"))); -void glMultiTexCoord2fv(GLenum target, GLfloat *t) __attribute__((alias("glshim_glMultiTexCoord2fv"))); -void glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r) __attribute__((alias("glshim_glMultiTexCoord3f"))); -void glMultiTexCoord3fv(GLenum target, GLfloat *t) __attribute__((alias("glshim_glMultiTexCoord3fv"))); -void glMultiTexCoord4fv(GLenum target, GLfloat *t) __attribute__((alias("glshim_glMultiTexCoord4fv"))); -void glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params) __attribute__((alias("glshim_glGetTexLevelParameterfv"))); -void glTexGend(GLenum coord, GLenum pname, GLdouble param) __attribute__((alias("glshim_glTexGend"))); -void glTexGenf(GLenum coord, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexGenf"))); -void glTexGendv(GLenum coord, GLenum pname, const GLdouble *params) __attribute__((alias("glshim_glTexGendv"))); -void glTexGeniv(GLenum coord, GLenum pname, const GLint *params) __attribute__((alias("glshim_glTexGeniv"))); -void glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glRotated"))); -void glScaled(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glScaled"))); -void glTranslated(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glTranslated"))); -void glVertex2f(GLfloat x, GLfloat y) __attribute__((alias("glshim_glVertex2f"))); -void glVertex2fv(GLfloat *v) __attribute__((alias("glshim_glVertex2fv"))); -void glVertex3f(GLfloat r, GLfloat g, GLfloat b) __attribute__((alias("glshim_glVertex3f"))); -void glVertex3fv(GLfloat *v) __attribute__((alias("glshim_glVertex3fv"))); -void glVertex4fv(GLfloat *v) __attribute__((alias("glshim_glVertex4fv"))); +void glTexCoord1f(GLfloat s) AliasExport("glshim_glTexCoord1f"); +void glTexCoord1fv(GLfloat *t) AliasExport("glshim_glTexCoord1fv"); +void glTexCoord2f(GLfloat s, GLfloat t) AliasExport("glshim_glTexCoord2f"); +void glTexCoord2fv(GLfloat *t) AliasExport("glshim_glTexCoord2fv"); +void glTexCoord3f(GLfloat s, GLfloat t, GLfloat r) AliasExport("glshim_glTexCoord3f"); +void glTexCoord3fv(GLfloat *t) AliasExport("glshim_glTexCoord3fv"); +void glTexCoord4fv(GLfloat *t) AliasExport("glshim_glTexCoord4fv"); +void glMultiTexCoord1f(GLenum target, GLfloat s) AliasExport("glshim_glMultiTexCoord1f"); +void glMultiTexCoord1fv(GLenum target, GLfloat *t) AliasExport("glshim_glMultiTexCoord1fv"); +void glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t) AliasExport("glshim_glMultiTexCoord2f"); +void glMultiTexCoord2fv(GLenum target, GLfloat *t) AliasExport("glshim_glMultiTexCoord2fv"); +void glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r) AliasExport("glshim_glMultiTexCoord3f"); +void glMultiTexCoord3fv(GLenum target, GLfloat *t) AliasExport("glshim_glMultiTexCoord3fv"); +void glMultiTexCoord4fv(GLenum target, GLfloat *t) AliasExport("glshim_glMultiTexCoord4fv"); +void glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params) AliasExport("glshim_glGetTexLevelParameterfv"); +void glTexGend(GLenum coord, GLenum pname, GLdouble param) AliasExport("glshim_glTexGend"); +void glTexGenf(GLenum coord, GLenum pname, GLfloat param) AliasExport("glshim_glTexGenf"); +void glTexGendv(GLenum coord, GLenum pname, const GLdouble *params) AliasExport("glshim_glTexGendv"); +void glTexGeniv(GLenum coord, GLenum pname, const GLint *params) AliasExport("glshim_glTexGeniv"); +void glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z) AliasExport("glshim_glRotated"); +void glScaled(GLdouble x, GLdouble y, GLdouble z) AliasExport("glshim_glScaled"); +void glTranslated(GLdouble x, GLdouble y, GLdouble z) AliasExport("glshim_glTranslated"); +void glVertex2f(GLfloat x, GLfloat y) AliasExport("glshim_glVertex2f"); +void glVertex2fv(GLfloat *v) AliasExport("glshim_glVertex2fv"); +void glVertex3f(GLfloat r, GLfloat g, GLfloat b) AliasExport("glshim_glVertex3f"); +void glVertex3fv(GLfloat *v) AliasExport("glshim_glVertex3fv"); +void glVertex4fv(GLfloat *v) AliasExport("glshim_glVertex4fv"); // basic thunking #define THUNK(suffix, type) \ -void glColor3##suffix##v(const type *v) __attribute__((alias("glshim_glColor3"#suffix "v"))); \ -void glColor3##suffix(type r, type g, type b) __attribute__((alias("glshim_glColor3"#suffix))); \ -void glColor4##suffix##v(const type *v) __attribute__((alias("glshim_glColor4"#suffix "v"))); \ -void glColor4##suffix(type r, type g, type b, type a) __attribute__((alias("glshim_glColor4"#suffix))); \ -void glSecondaryColor3##suffix##v(const type *v) __attribute__((alias("glshim_glSecondaryColor3"#suffix "v"))); \ -void glSecondaryColor3##suffix(type r, type g, type b) __attribute__((alias("glshim_glSecondaryColor3"#suffix))); \ -void glIndex##suffix##v(const type *c) __attribute__((alias("glshim_glIndex"#suffix"v"))); \ -void glIndex##suffix(type c) __attribute__((alias("glshim_glIndex"#suffix))); \ -void glNormal3##suffix##v(const type *v) __attribute__((alias("glshim_glNormal3"#suffix"v"))); \ -void glNormal3##suffix(type x, type y, type z) __attribute__((alias("glshim_glNormal3"#suffix))); \ -void glRasterPos2##suffix##v(type *v) __attribute__((alias("glshim_glRasterPos2"#suffix"v"))); \ -void glRasterPos2##suffix(type x, type y) __attribute__((alias("glshim_glRasterPos2"#suffix))); \ -void glRasterPos3##suffix##v(type *v) __attribute__((alias("glshim_glRasterPos3"#suffix"v"))); \ -void glRasterPos3##suffix(type x, type y, type z) __attribute__((alias("glshim_glRasterPos3"#suffix))); \ -void glRasterPos4##suffix##v(type *v) __attribute__((alias("glshim_glRasterPos4"#suffix"v"))); \ -void glRasterPos4##suffix(type x, type y, type z, type w)__attribute__((alias("glshim_glRasterPos4"#suffix))); \ -void glWindowPos2##suffix##v(type *v) __attribute__((alias("glshim_glWindowPos2"#suffix"v"))); \ -void glWindowPos2##suffix(type x, type y) __attribute__((alias("glshim_glWindowPos2"#suffix))); \ -void glWindowPos3##suffix##v(type *v) __attribute__((alias("glshim_glWindowPos3"#suffix"v"))); \ -void glWindowPos3##suffix(type x, type y, type z) __attribute__((alias("glshim_glWindowPos3"#suffix))); \ -void glVertex2##suffix##v(type *v) __attribute__((alias("glshim_glVertex2"#suffix"v"))); \ -void glVertex2##suffix(type x, type y) __attribute__((alias("glshim_glVertex2"#suffix))); \ -void glVertex3##suffix##v(type *v) __attribute__((alias("glshim_glVertex3"#suffix"v"))); \ -void glVertex3##suffix(type x, type y, type z) __attribute__((alias("glshim_glVertex3"#suffix))); \ -void glVertex4##suffix(type x, type y, type z, type w) __attribute__((alias("glshim_glVertex4"#suffix))); \ -void glVertex4##suffix##v(type *v) __attribute__((alias("glshim_glVertex4"#suffix"v"))); \ -void glTexCoord1##suffix(type s) __attribute__((alias("glshim_glTexCoord1"#suffix))); \ -void glTexCoord1##suffix##v(type *t) __attribute__((alias("glshim_glTexCoord1"#suffix"v"))); \ -void glTexCoord2##suffix(type s, type t) __attribute__((alias("glshim_glTexCoord2"#suffix))); \ -void glTexCoord2##suffix##v(type *t) __attribute__((alias("glshim_glTexCoord2"#suffix"v"))); \ -void glTexCoord3##suffix(type s, type t, type r) __attribute__((alias("glshim_glTexCoord3"#suffix))); \ -void glTexCoord3##suffix##v(type *t) __attribute__((alias("glshim_glTexCoord3"#suffix"v"))); \ -void glTexCoord4##suffix(type s, type t, type r, type q)__attribute__((alias("glshim_glTexCoord4"#suffix))); \ -void glTexCoord4##suffix##v(type *t) __attribute__((alias("glshim_glTexCoord4"#suffix"v"))); \ -void glMultiTexCoord1##suffix(GLenum target, type s) __attribute__((alias("glshim_glMultiTexCoord1"#suffix))); \ -void glMultiTexCoord1##suffix##v(GLenum target, type *t)__attribute__((alias("glshim_glMultiTexCoord1"#suffix"v"))); \ -void glMultiTexCoord2##suffix(GLenum target, type s, type t) __attribute__((alias("glshim_glMultiTexCoord2"#suffix))); \ -void glMultiTexCoord2##suffix##v(GLenum target, type *t) __attribute__((alias("glshim_glMultiTexCoord2"#suffix"v"))); \ -void glMultiTexCoord3##suffix(GLenum target, type s, type t, type r)__attribute__((alias("glshim_glMultiTexCoord3"#suffix))); \ -void glMultiTexCoord3##suffix##v(GLenum target, type *t) __attribute__((alias("glshim_glMultiTexCoord3"#suffix"v"))); \ -void glMultiTexCoord4##suffix(GLenum target, type s, type t, type r, type q) __attribute__((alias("glshim_glMultiTexCoord4"#suffix))); \ -void glMultiTexCoord4##suffix##v(GLenum target, type *t) __attribute__((alias("glshim_glMultiTexCoord4"#suffix"v"))); \ -void glMultiTexCoord1##suffix##ARB(GLenum target, type s) __attribute__((alias("glshim_glMultiTexCoord1"#suffix))); \ -void glMultiTexCoord1##suffix##vARB(GLenum target, type *t) __attribute__((alias("glshim_glMultiTexCoord1"#suffix"v"))); \ -void glMultiTexCoord2##suffix##ARB(GLenum target, type s, type t) __attribute__((alias("glshim_glMultiTexCoord2"#suffix))); \ -void glMultiTexCoord2##suffix##vARB(GLenum target, type *t) __attribute__((alias("glshim_glMultiTexCoord2"#suffix"v"))); \ -void glMultiTexCoord3##suffix##ARB(GLenum target, type s, type t, type r) __attribute__((alias("glshim_glMultiTexCoord3"#suffix))); \ -void glMultiTexCoord3##suffix##vARB(GLenum target, type *t) __attribute__((alias("glshim_glMultiTexCoord3"#suffix"v"))); \ -void glMultiTexCoord4##suffix##ARB(GLenum target, type s, type t, type r, type q) __attribute__((alias("glshim_glMultiTexCoord4"#suffix))); \ -void glMultiTexCoord4##suffix##vARB(GLenum target, type *t)__attribute__((alias("glshim_glMultiTexCoord4"#suffix"v"))); +void glColor3##suffix##v(const type *v) AliasExport("glshim_glColor3"#suffix "v"); \ +void glColor3##suffix(type r, type g, type b) AliasExport("glshim_glColor3"#suffix); \ +void glColor4##suffix##v(const type *v) AliasExport("glshim_glColor4"#suffix "v"); \ +void glColor4##suffix(type r, type g, type b, type a) AliasExport("glshim_glColor4"#suffix); \ +void glSecondaryColor3##suffix##v(const type *v) AliasExport("glshim_glSecondaryColor3"#suffix "v"); \ +void glSecondaryColor3##suffix(type r, type g, type b) AliasExport("glshim_glSecondaryColor3"#suffix); \ +void glIndex##suffix##v(const type *c) AliasExport("glshim_glIndex"#suffix"v"); \ +void glIndex##suffix(type c) AliasExport("glshim_glIndex"#suffix); \ +void glNormal3##suffix##v(const type *v) AliasExport("glshim_glNormal3"#suffix"v"); \ +void glNormal3##suffix(type x, type y, type z) AliasExport("glshim_glNormal3"#suffix); \ +void glRasterPos2##suffix##v(type *v) AliasExport("glshim_glRasterPos2"#suffix"v"); \ +void glRasterPos2##suffix(type x, type y) AliasExport("glshim_glRasterPos2"#suffix); \ +void glRasterPos3##suffix##v(type *v) AliasExport("glshim_glRasterPos3"#suffix"v"); \ +void glRasterPos3##suffix(type x, type y, type z) AliasExport("glshim_glRasterPos3"#suffix); \ +void glRasterPos4##suffix##v(type *v) AliasExport("glshim_glRasterPos4"#suffix"v"); \ +void glRasterPos4##suffix(type x, type y, type z, type w)AliasExport("glshim_glRasterPos4"#suffix); \ +void glWindowPos2##suffix##v(type *v) AliasExport("glshim_glWindowPos2"#suffix"v"); \ +void glWindowPos2##suffix(type x, type y) AliasExport("glshim_glWindowPos2"#suffix); \ +void glWindowPos3##suffix##v(type *v) AliasExport("glshim_glWindowPos3"#suffix"v"); \ +void glWindowPos3##suffix(type x, type y, type z) AliasExport("glshim_glWindowPos3"#suffix); \ +void glVertex2##suffix##v(type *v) AliasExport("glshim_glVertex2"#suffix"v"); \ +void glVertex2##suffix(type x, type y) AliasExport("glshim_glVertex2"#suffix); \ +void glVertex3##suffix##v(type *v) AliasExport("glshim_glVertex3"#suffix"v"); \ +void glVertex3##suffix(type x, type y, type z) AliasExport("glshim_glVertex3"#suffix); \ +void glVertex4##suffix(type x, type y, type z, type w) AliasExport("glshim_glVertex4"#suffix); \ +void glVertex4##suffix##v(type *v) AliasExport("glshim_glVertex4"#suffix"v"); \ +void glTexCoord1##suffix(type s) AliasExport("glshim_glTexCoord1"#suffix); \ +void glTexCoord1##suffix##v(type *t) AliasExport("glshim_glTexCoord1"#suffix"v"); \ +void glTexCoord2##suffix(type s, type t) AliasExport("glshim_glTexCoord2"#suffix); \ +void glTexCoord2##suffix##v(type *t) AliasExport("glshim_glTexCoord2"#suffix"v"); \ +void glTexCoord3##suffix(type s, type t, type r) AliasExport("glshim_glTexCoord3"#suffix); \ +void glTexCoord3##suffix##v(type *t) AliasExport("glshim_glTexCoord3"#suffix"v"); \ +void glTexCoord4##suffix(type s, type t, type r, type q)AliasExport("glshim_glTexCoord4"#suffix); \ +void glTexCoord4##suffix##v(type *t) AliasExport("glshim_glTexCoord4"#suffix"v"); \ +void glMultiTexCoord1##suffix(GLenum target, type s) AliasExport("glshim_glMultiTexCoord1"#suffix); \ +void glMultiTexCoord1##suffix##v(GLenum target, type *t)AliasExport("glshim_glMultiTexCoord1"#suffix"v"); \ +void glMultiTexCoord2##suffix(GLenum target, type s, type t) AliasExport("glshim_glMultiTexCoord2"#suffix); \ +void glMultiTexCoord2##suffix##v(GLenum target, type *t) AliasExport("glshim_glMultiTexCoord2"#suffix"v"); \ +void glMultiTexCoord3##suffix(GLenum target, type s, type t, type r)AliasExport("glshim_glMultiTexCoord3"#suffix); \ +void glMultiTexCoord3##suffix##v(GLenum target, type *t) AliasExport("glshim_glMultiTexCoord3"#suffix"v"); \ +void glMultiTexCoord4##suffix(GLenum target, type s, type t, type r, type q) AliasExport("glshim_glMultiTexCoord4"#suffix); \ +void glMultiTexCoord4##suffix##v(GLenum target, type *t) AliasExport("glshim_glMultiTexCoord4"#suffix"v"); \ +void glMultiTexCoord1##suffix##ARB(GLenum target, type s) AliasExport("glshim_glMultiTexCoord1"#suffix); \ +void glMultiTexCoord1##suffix##vARB(GLenum target, type *t) AliasExport("glshim_glMultiTexCoord1"#suffix"v"); \ +void glMultiTexCoord2##suffix##ARB(GLenum target, type s, type t) AliasExport("glshim_glMultiTexCoord2"#suffix); \ +void glMultiTexCoord2##suffix##vARB(GLenum target, type *t) AliasExport("glshim_glMultiTexCoord2"#suffix"v"); \ +void glMultiTexCoord3##suffix##ARB(GLenum target, type s, type t, type r) AliasExport("glshim_glMultiTexCoord3"#suffix); \ +void glMultiTexCoord3##suffix##vARB(GLenum target, type *t) AliasExport("glshim_glMultiTexCoord3"#suffix"v"); \ +void glMultiTexCoord4##suffix##ARB(GLenum target, type s, type t, type r, type q) AliasExport("glshim_glMultiTexCoord4"#suffix); \ +void glMultiTexCoord4##suffix##vARB(GLenum target, type *t)AliasExport("glshim_glMultiTexCoord4"#suffix"v"); THUNK(b, GLbyte) THUNK(d, GLdouble) @@ -890,9 +890,9 @@ THUNK(Integer, GLint) THUNK(Float, GLfloat) #undef THUNK -void glMultiTexCoord2fARB(GLenum target, GLfloat s, GLfloat t) __attribute__((alias("glshim_glMultiTexCoord2f"))); -void glMultiTexCoord3fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r) __attribute__((alias("glshim_glMultiTexCoord3f"))); -void glMultiTexCoord2fvARB(GLenum target, GLfloat *t) __attribute__((alias("glshim_glMultiTexCoord2fv"))); -void glMultiTexCoord3fvARB(GLenum target, GLfloat *t) __attribute__((alias("glshim_glMultiTexCoord3fv"))); -void glMultiTexCoord4fvARB(GLenum target, GLfloat *t) __attribute__((alias("glshim_glMultiTexCoord4fv"))); -void glDrawRangeElementsEXT(GLenum mode,GLuint start,GLuint end,GLsizei count,GLenum type,const void *indices) __attribute__((alias("glshim_glDrawRangeElements"))); +void glMultiTexCoord2fARB(GLenum target, GLfloat s, GLfloat t) AliasExport("glshim_glMultiTexCoord2f"); +void glMultiTexCoord3fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r) AliasExport("glshim_glMultiTexCoord3f"); +void glMultiTexCoord2fvARB(GLenum target, GLfloat *t) AliasExport("glshim_glMultiTexCoord2fv"); +void glMultiTexCoord3fvARB(GLenum target, GLfloat *t) AliasExport("glshim_glMultiTexCoord3fv"); +void glMultiTexCoord4fvARB(GLenum target, GLfloat *t) AliasExport("glshim_glMultiTexCoord4fv"); +void glDrawRangeElementsEXT(GLenum mode,GLuint start,GLuint end,GLsizei count,GLenum type,const void *indices) AliasExport("glshim_glDrawRangeElements"); diff --git a/project/jni/glshim/src/gl/wrap/gles.c b/project/jni/glshim/src/gl/wrap/gles.c index 4762357d0..5f48f5704 100755 --- a/project/jni/glshim/src/gl/wrap/gles.c +++ b/project/jni/glshim/src/gl/wrap/gles.c @@ -8,7 +8,7 @@ void glshim_glActiveTexture(GLenum texture) { #endif gles_glActiveTexture(texture); } -void glActiveTexture(GLenum texture) __attribute__((alias("glshim_glActiveTexture"))); +void glActiveTexture(GLenum texture) __attribute__((alias("glshim_glActiveTexture"))) __attribute__((visibility("default"))); #endif #ifndef skip_glAlphaFunc void glshim_glAlphaFunc(GLenum func, GLclampf ref) { @@ -18,7 +18,7 @@ void glshim_glAlphaFunc(GLenum func, GLclampf ref) { #endif gles_glAlphaFunc(func, ref); } -void glAlphaFunc(GLenum func, GLclampf ref) __attribute__((alias("glshim_glAlphaFunc"))); +void glAlphaFunc(GLenum func, GLclampf ref) __attribute__((alias("glshim_glAlphaFunc"))) __attribute__((visibility("default"))); #endif #ifndef skip_glAlphaFuncx void glshim_glAlphaFuncx(GLenum func, GLclampx ref) { @@ -28,7 +28,7 @@ void glshim_glAlphaFuncx(GLenum func, GLclampx ref) { #endif gles_glAlphaFuncx(func, ref); } -void glAlphaFuncx(GLenum func, GLclampx ref) __attribute__((alias("glshim_glAlphaFuncx"))); +void glAlphaFuncx(GLenum func, GLclampx ref) __attribute__((alias("glshim_glAlphaFuncx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glBindBuffer void glshim_glBindBuffer(GLenum target, GLuint buffer) { @@ -38,7 +38,7 @@ void glshim_glBindBuffer(GLenum target, GLuint buffer) { #endif gles_glBindBuffer(target, buffer); } -void glBindBuffer(GLenum target, GLuint buffer) __attribute__((alias("glshim_glBindBuffer"))); +void glBindBuffer(GLenum target, GLuint buffer) __attribute__((alias("glshim_glBindBuffer"))) __attribute__((visibility("default"))); #endif #ifndef skip_glBindTexture void glshim_glBindTexture(GLenum target, GLuint texture) { @@ -48,7 +48,7 @@ void glshim_glBindTexture(GLenum target, GLuint texture) { #endif gles_glBindTexture(target, texture); } -void glBindTexture(GLenum target, GLuint texture) __attribute__((alias("glshim_glBindTexture"))); +void glBindTexture(GLenum target, GLuint texture) __attribute__((alias("glshim_glBindTexture"))) __attribute__((visibility("default"))); #endif #ifndef skip_glBlendFunc void glshim_glBlendFunc(GLenum sfactor, GLenum dfactor) { @@ -58,7 +58,7 @@ void glshim_glBlendFunc(GLenum sfactor, GLenum dfactor) { #endif gles_glBlendFunc(sfactor, dfactor); } -void glBlendFunc(GLenum sfactor, GLenum dfactor) __attribute__((alias("glshim_glBlendFunc"))); +void glBlendFunc(GLenum sfactor, GLenum dfactor) __attribute__((alias("glshim_glBlendFunc"))) __attribute__((visibility("default"))); #endif #ifndef skip_glBufferData void glshim_glBufferData(GLenum target, GLsizeiptr size, const GLvoid * data, GLenum usage) { @@ -68,7 +68,7 @@ void glshim_glBufferData(GLenum target, GLsizeiptr size, const GLvoid * data, GL #endif gles_glBufferData(target, size, data, usage); } -void glBufferData(GLenum target, GLsizeiptr size, const GLvoid * data, GLenum usage) __attribute__((alias("glshim_glBufferData"))); +void glBufferData(GLenum target, GLsizeiptr size, const GLvoid * data, GLenum usage) __attribute__((alias("glshim_glBufferData"))) __attribute__((visibility("default"))); #endif #ifndef skip_glBufferSubData void glshim_glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data) { @@ -78,7 +78,7 @@ void glshim_glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, con #endif gles_glBufferSubData(target, offset, size, data); } -void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data) __attribute__((alias("glshim_glBufferSubData"))); +void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data) __attribute__((alias("glshim_glBufferSubData"))) __attribute__((visibility("default"))); #endif #ifndef skip_glClear void glshim_glClear(GLbitfield mask) { @@ -88,7 +88,7 @@ void glshim_glClear(GLbitfield mask) { #endif gles_glClear(mask); } -void glClear(GLbitfield mask) __attribute__((alias("glshim_glClear"))); +void glClear(GLbitfield mask) __attribute__((alias("glshim_glClear"))) __attribute__((visibility("default"))); #endif #ifndef skip_glClearColor void glshim_glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { @@ -98,7 +98,7 @@ void glshim_glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf a #endif gles_glClearColor(red, green, blue, alpha); } -void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) __attribute__((alias("glshim_glClearColor"))); +void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) __attribute__((alias("glshim_glClearColor"))) __attribute__((visibility("default"))); #endif #ifndef skip_glClearColorx void glshim_glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) { @@ -108,7 +108,7 @@ void glshim_glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx #endif gles_glClearColorx(red, green, blue, alpha); } -void glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) __attribute__((alias("glshim_glClearColorx"))); +void glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) __attribute__((alias("glshim_glClearColorx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glClearDepthf void glshim_glClearDepthf(GLclampf depth) { @@ -118,7 +118,7 @@ void glshim_glClearDepthf(GLclampf depth) { #endif gles_glClearDepthf(depth); } -void glClearDepthf(GLclampf depth) __attribute__((alias("glshim_glClearDepthf"))); +void glClearDepthf(GLclampf depth) __attribute__((alias("glshim_glClearDepthf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glClearDepthx void glshim_glClearDepthx(GLclampx depth) { @@ -128,7 +128,7 @@ void glshim_glClearDepthx(GLclampx depth) { #endif gles_glClearDepthx(depth); } -void glClearDepthx(GLclampx depth) __attribute__((alias("glshim_glClearDepthx"))); +void glClearDepthx(GLclampx depth) __attribute__((alias("glshim_glClearDepthx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glClearStencil void glshim_glClearStencil(GLint s) { @@ -138,7 +138,7 @@ void glshim_glClearStencil(GLint s) { #endif gles_glClearStencil(s); } -void glClearStencil(GLint s) __attribute__((alias("glshim_glClearStencil"))); +void glClearStencil(GLint s) __attribute__((alias("glshim_glClearStencil"))) __attribute__((visibility("default"))); #endif #ifndef skip_glClientActiveTexture void glshim_glClientActiveTexture(GLenum texture) { @@ -148,7 +148,7 @@ void glshim_glClientActiveTexture(GLenum texture) { #endif gles_glClientActiveTexture(texture); } -void glClientActiveTexture(GLenum texture) __attribute__((alias("glshim_glClientActiveTexture"))); +void glClientActiveTexture(GLenum texture) __attribute__((alias("glshim_glClientActiveTexture"))) __attribute__((visibility("default"))); #endif #ifndef skip_glClipPlanef void glshim_glClipPlanef(GLenum plane, const GLfloat * equation) { @@ -158,7 +158,7 @@ void glshim_glClipPlanef(GLenum plane, const GLfloat * equation) { #endif gles_glClipPlanef(plane, equation); } -void glClipPlanef(GLenum plane, const GLfloat * equation) __attribute__((alias("glshim_glClipPlanef"))); +void glClipPlanef(GLenum plane, const GLfloat * equation) __attribute__((alias("glshim_glClipPlanef"))) __attribute__((visibility("default"))); #endif #ifndef skip_glClipPlanex void glshim_glClipPlanex(GLenum plane, const GLfixed * equation) { @@ -168,7 +168,7 @@ void glshim_glClipPlanex(GLenum plane, const GLfixed * equation) { #endif gles_glClipPlanex(plane, equation); } -void glClipPlanex(GLenum plane, const GLfixed * equation) __attribute__((alias("glshim_glClipPlanex"))); +void glClipPlanex(GLenum plane, const GLfixed * equation) __attribute__((alias("glshim_glClipPlanex"))) __attribute__((visibility("default"))); #endif #ifndef skip_glColor4f void glshim_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { @@ -178,7 +178,7 @@ void glshim_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { #endif gles_glColor4f(red, green, blue, alpha); } -void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glColor4f"))); +void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glColor4f"))) __attribute__((visibility("default"))); #endif #ifndef skip_glColor4ub void glshim_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) { @@ -188,7 +188,7 @@ void glshim_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) #endif gles_glColor4ub(red, green, blue, alpha); } -void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) __attribute__((alias("glshim_glColor4ub"))); +void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) __attribute__((alias("glshim_glColor4ub"))) __attribute__((visibility("default"))); #endif #ifndef skip_glColor4x void glshim_glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) { @@ -198,7 +198,7 @@ void glshim_glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) { #endif gles_glColor4x(red, green, blue, alpha); } -void glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) __attribute__((alias("glshim_glColor4x"))); +void glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) __attribute__((alias("glshim_glColor4x"))) __attribute__((visibility("default"))); #endif #ifndef skip_glColorMask void glshim_glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) { @@ -208,7 +208,7 @@ void glshim_glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolea #endif gles_glColorMask(red, green, blue, alpha); } -void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) __attribute__((alias("glshim_glColorMask"))); +void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) __attribute__((alias("glshim_glColorMask"))) __attribute__((visibility("default"))); #endif #ifndef skip_glColorPointer void glshim_glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -218,7 +218,7 @@ void glshim_glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid #endif gles_glColorPointer(size, type, stride, pointer); } -void glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glColorPointer"))); +void glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glColorPointer"))) __attribute__((visibility("default"))); #endif #ifndef skip_glCompressedTexImage2D void glshim_glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid * data) { @@ -228,7 +228,7 @@ void glshim_glCompressedTexImage2D(GLenum target, GLint level, GLenum internalfo #endif gles_glCompressedTexImage2D(target, level, internalformat, width, height, border, imageSize, data); } -void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexImage2D"))); +void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexImage2D"))) __attribute__((visibility("default"))); #endif #ifndef skip_glCompressedTexSubImage2D void glshim_glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid * data) { @@ -238,7 +238,7 @@ void glshim_glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, #endif gles_glCompressedTexSubImage2D(target, level, xoffset, yoffset, width, height, format, imageSize, data); } -void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexSubImage2D"))); +void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexSubImage2D"))) __attribute__((visibility("default"))); #endif #ifndef skip_glCopyTexImage2D void glshim_glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) { @@ -248,7 +248,7 @@ void glshim_glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, #endif gles_glCopyTexImage2D(target, level, internalformat, x, y, width, height, border); } -void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) __attribute__((alias("glshim_glCopyTexImage2D"))); +void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) __attribute__((alias("glshim_glCopyTexImage2D"))) __attribute__((visibility("default"))); #endif #ifndef skip_glCopyTexSubImage2D void glshim_glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) { @@ -258,7 +258,7 @@ void glshim_glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint #endif gles_glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height); } -void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTexSubImage2D"))); +void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTexSubImage2D"))) __attribute__((visibility("default"))); #endif #ifndef skip_glCullFace void glshim_glCullFace(GLenum mode) { @@ -268,7 +268,7 @@ void glshim_glCullFace(GLenum mode) { #endif gles_glCullFace(mode); } -void glCullFace(GLenum mode) __attribute__((alias("glshim_glCullFace"))); +void glCullFace(GLenum mode) __attribute__((alias("glshim_glCullFace"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDeleteBuffers void glshim_glDeleteBuffers(GLsizei n, const GLuint * buffers) { @@ -278,7 +278,7 @@ void glshim_glDeleteBuffers(GLsizei n, const GLuint * buffers) { #endif gles_glDeleteBuffers(n, buffers); } -void glDeleteBuffers(GLsizei n, const GLuint * buffers) __attribute__((alias("glshim_glDeleteBuffers"))); +void glDeleteBuffers(GLsizei n, const GLuint * buffers) __attribute__((alias("glshim_glDeleteBuffers"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDeleteTextures void glshim_glDeleteTextures(GLsizei n, const GLuint * textures) { @@ -288,7 +288,7 @@ void glshim_glDeleteTextures(GLsizei n, const GLuint * textures) { #endif gles_glDeleteTextures(n, textures); } -void glDeleteTextures(GLsizei n, const GLuint * textures) __attribute__((alias("glshim_glDeleteTextures"))); +void glDeleteTextures(GLsizei n, const GLuint * textures) __attribute__((alias("glshim_glDeleteTextures"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDepthFunc void glshim_glDepthFunc(GLenum func) { @@ -298,7 +298,7 @@ void glshim_glDepthFunc(GLenum func) { #endif gles_glDepthFunc(func); } -void glDepthFunc(GLenum func) __attribute__((alias("glshim_glDepthFunc"))); +void glDepthFunc(GLenum func) __attribute__((alias("glshim_glDepthFunc"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDepthMask void glshim_glDepthMask(GLboolean flag) { @@ -308,7 +308,7 @@ void glshim_glDepthMask(GLboolean flag) { #endif gles_glDepthMask(flag); } -void glDepthMask(GLboolean flag) __attribute__((alias("glshim_glDepthMask"))); +void glDepthMask(GLboolean flag) __attribute__((alias("glshim_glDepthMask"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDepthRangef void glshim_glDepthRangef(GLclampf near, GLclampf far) { @@ -318,7 +318,7 @@ void glshim_glDepthRangef(GLclampf near, GLclampf far) { #endif gles_glDepthRangef(near, far); } -void glDepthRangef(GLclampf near, GLclampf far) __attribute__((alias("glshim_glDepthRangef"))); +void glDepthRangef(GLclampf near, GLclampf far) __attribute__((alias("glshim_glDepthRangef"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDepthRangex void glshim_glDepthRangex(GLclampx near, GLclampx far) { @@ -328,7 +328,7 @@ void glshim_glDepthRangex(GLclampx near, GLclampx far) { #endif gles_glDepthRangex(near, far); } -void glDepthRangex(GLclampx near, GLclampx far) __attribute__((alias("glshim_glDepthRangex"))); +void glDepthRangex(GLclampx near, GLclampx far) __attribute__((alias("glshim_glDepthRangex"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDisable void glshim_glDisable(GLenum cap) { @@ -338,7 +338,7 @@ void glshim_glDisable(GLenum cap) { #endif gles_glDisable(cap); } -void glDisable(GLenum cap) __attribute__((alias("glshim_glDisable"))); +void glDisable(GLenum cap) __attribute__((alias("glshim_glDisable"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDisableClientState void glshim_glDisableClientState(GLenum array) { @@ -348,7 +348,7 @@ void glshim_glDisableClientState(GLenum array) { #endif gles_glDisableClientState(array); } -void glDisableClientState(GLenum array) __attribute__((alias("glshim_glDisableClientState"))); +void glDisableClientState(GLenum array) __attribute__((alias("glshim_glDisableClientState"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDrawArrays void glshim_glDrawArrays(GLenum mode, GLint first, GLsizei count) { @@ -358,7 +358,7 @@ void glshim_glDrawArrays(GLenum mode, GLint first, GLsizei count) { #endif gles_glDrawArrays(mode, first, count); } -void glDrawArrays(GLenum mode, GLint first, GLsizei count) __attribute__((alias("glshim_glDrawArrays"))); +void glDrawArrays(GLenum mode, GLint first, GLsizei count) __attribute__((alias("glshim_glDrawArrays"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDrawElements void glshim_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) { @@ -368,7 +368,7 @@ void glshim_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid #endif gles_glDrawElements(mode, count, type, indices); } -void glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) __attribute__((alias("glshim_glDrawElements"))); +void glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) __attribute__((alias("glshim_glDrawElements"))) __attribute__((visibility("default"))); #endif #ifndef skip_glEnable void glshim_glEnable(GLenum cap) { @@ -378,7 +378,7 @@ void glshim_glEnable(GLenum cap) { #endif gles_glEnable(cap); } -void glEnable(GLenum cap) __attribute__((alias("glshim_glEnable"))); +void glEnable(GLenum cap) __attribute__((alias("glshim_glEnable"))) __attribute__((visibility("default"))); #endif #ifndef skip_glEnableClientState void glshim_glEnableClientState(GLenum array) { @@ -388,7 +388,7 @@ void glshim_glEnableClientState(GLenum array) { #endif gles_glEnableClientState(array); } -void glEnableClientState(GLenum array) __attribute__((alias("glshim_glEnableClientState"))); +void glEnableClientState(GLenum array) __attribute__((alias("glshim_glEnableClientState"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFinish void glshim_glFinish() { @@ -398,7 +398,7 @@ void glshim_glFinish() { #endif gles_glFinish(); } -void glFinish() __attribute__((alias("glshim_glFinish"))); +void glFinish() __attribute__((alias("glshim_glFinish"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFlush void glshim_glFlush() { @@ -408,7 +408,7 @@ void glshim_glFlush() { #endif gles_glFlush(); } -void glFlush() __attribute__((alias("glshim_glFlush"))); +void glFlush() __attribute__((alias("glshim_glFlush"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFogf void glshim_glFogf(GLenum pname, GLfloat param) { @@ -418,7 +418,7 @@ void glshim_glFogf(GLenum pname, GLfloat param) { #endif gles_glFogf(pname, param); } -void glFogf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glFogf"))); +void glFogf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glFogf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFogfv void glshim_glFogfv(GLenum pname, const GLfloat * params) { @@ -428,7 +428,7 @@ void glshim_glFogfv(GLenum pname, const GLfloat * params) { #endif gles_glFogfv(pname, params); } -void glFogfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glFogfv"))); +void glFogfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glFogfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFogx void glshim_glFogx(GLenum pname, GLfixed param) { @@ -438,7 +438,7 @@ void glshim_glFogx(GLenum pname, GLfixed param) { #endif gles_glFogx(pname, param); } -void glFogx(GLenum pname, GLfixed param) __attribute__((alias("glshim_glFogx"))); +void glFogx(GLenum pname, GLfixed param) __attribute__((alias("glshim_glFogx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFogxv void glshim_glFogxv(GLenum pname, const GLfixed * params) { @@ -448,7 +448,7 @@ void glshim_glFogxv(GLenum pname, const GLfixed * params) { #endif gles_glFogxv(pname, params); } -void glFogxv(GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glFogxv"))); +void glFogxv(GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glFogxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFrontFace void glshim_glFrontFace(GLenum mode) { @@ -458,7 +458,7 @@ void glshim_glFrontFace(GLenum mode) { #endif gles_glFrontFace(mode); } -void glFrontFace(GLenum mode) __attribute__((alias("glshim_glFrontFace"))); +void glFrontFace(GLenum mode) __attribute__((alias("glshim_glFrontFace"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFrustumf void glshim_glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat near, GLfloat far) { @@ -468,7 +468,7 @@ void glshim_glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, #endif gles_glFrustumf(left, right, bottom, top, near, far); } -void glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat near, GLfloat far) __attribute__((alias("glshim_glFrustumf"))); +void glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat near, GLfloat far) __attribute__((alias("glshim_glFrustumf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFrustumx void glshim_glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed near, GLfixed far) { @@ -478,7 +478,7 @@ void glshim_glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, #endif gles_glFrustumx(left, right, bottom, top, near, far); } -void glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed near, GLfixed far) __attribute__((alias("glshim_glFrustumx"))); +void glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed near, GLfixed far) __attribute__((alias("glshim_glFrustumx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGenBuffers void glshim_glGenBuffers(GLsizei n, GLuint * buffers) { @@ -488,7 +488,7 @@ void glshim_glGenBuffers(GLsizei n, GLuint * buffers) { #endif gles_glGenBuffers(n, buffers); } -void glGenBuffers(GLsizei n, GLuint * buffers) __attribute__((alias("glshim_glGenBuffers"))); +void glGenBuffers(GLsizei n, GLuint * buffers) __attribute__((alias("glshim_glGenBuffers"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGenTextures void glshim_glGenTextures(GLsizei n, GLuint * textures) { @@ -498,7 +498,7 @@ void glshim_glGenTextures(GLsizei n, GLuint * textures) { #endif gles_glGenTextures(n, textures); } -void glGenTextures(GLsizei n, GLuint * textures) __attribute__((alias("glshim_glGenTextures"))); +void glGenTextures(GLsizei n, GLuint * textures) __attribute__((alias("glshim_glGenTextures"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetBooleanv void glshim_glGetBooleanv(GLenum pname, GLboolean * params) { @@ -508,7 +508,7 @@ void glshim_glGetBooleanv(GLenum pname, GLboolean * params) { #endif gles_glGetBooleanv(pname, params); } -void glGetBooleanv(GLenum pname, GLboolean * params) __attribute__((alias("glshim_glGetBooleanv"))); +void glGetBooleanv(GLenum pname, GLboolean * params) __attribute__((alias("glshim_glGetBooleanv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetBufferParameteriv void glshim_glGetBufferParameteriv(GLenum target, GLenum pname, GLint * params) { @@ -518,7 +518,7 @@ void glshim_glGetBufferParameteriv(GLenum target, GLenum pname, GLint * params) #endif gles_glGetBufferParameteriv(target, pname, params); } -void glGetBufferParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetBufferParameteriv"))); +void glGetBufferParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetBufferParameteriv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetClipPlanef void glshim_glGetClipPlanef(GLenum plane, GLfloat * equation) { @@ -528,7 +528,7 @@ void glshim_glGetClipPlanef(GLenum plane, GLfloat * equation) { #endif gles_glGetClipPlanef(plane, equation); } -void glGetClipPlanef(GLenum plane, GLfloat * equation) __attribute__((alias("glshim_glGetClipPlanef"))); +void glGetClipPlanef(GLenum plane, GLfloat * equation) __attribute__((alias("glshim_glGetClipPlanef"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetClipPlanex void glshim_glGetClipPlanex(GLenum plane, GLfixed * equation) { @@ -538,7 +538,7 @@ void glshim_glGetClipPlanex(GLenum plane, GLfixed * equation) { #endif gles_glGetClipPlanex(plane, equation); } -void glGetClipPlanex(GLenum plane, GLfixed * equation) __attribute__((alias("glshim_glGetClipPlanex"))); +void glGetClipPlanex(GLenum plane, GLfixed * equation) __attribute__((alias("glshim_glGetClipPlanex"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetError GLenum glshim_glGetError() { @@ -548,7 +548,7 @@ GLenum glshim_glGetError() { #endif return gles_glGetError(); } -GLenum glGetError() __attribute__((alias("glshim_glGetError"))); +GLenum glGetError() __attribute__((alias("glshim_glGetError"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetFixedv void glshim_glGetFixedv(GLenum pname, GLfixed * params) { @@ -558,7 +558,7 @@ void glshim_glGetFixedv(GLenum pname, GLfixed * params) { #endif gles_glGetFixedv(pname, params); } -void glGetFixedv(GLenum pname, GLfixed * params) __attribute__((alias("glshim_glGetFixedv"))); +void glGetFixedv(GLenum pname, GLfixed * params) __attribute__((alias("glshim_glGetFixedv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetFloatv void glshim_glGetFloatv(GLenum pname, GLfloat * params) { @@ -568,7 +568,7 @@ void glshim_glGetFloatv(GLenum pname, GLfloat * params) { #endif gles_glGetFloatv(pname, params); } -void glGetFloatv(GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetFloatv"))); +void glGetFloatv(GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetFloatv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetIntegerv void glshim_glGetIntegerv(GLenum pname, GLint * params) { @@ -578,7 +578,7 @@ void glshim_glGetIntegerv(GLenum pname, GLint * params) { #endif gles_glGetIntegerv(pname, params); } -void glGetIntegerv(GLenum pname, GLint * params) __attribute__((alias("glshim_glGetIntegerv"))); +void glGetIntegerv(GLenum pname, GLint * params) __attribute__((alias("glshim_glGetIntegerv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetLightfv void glshim_glGetLightfv(GLenum light, GLenum pname, GLfloat * params) { @@ -588,7 +588,7 @@ void glshim_glGetLightfv(GLenum light, GLenum pname, GLfloat * params) { #endif gles_glGetLightfv(light, pname, params); } -void glGetLightfv(GLenum light, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetLightfv"))); +void glGetLightfv(GLenum light, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetLightfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetLightxv void glshim_glGetLightxv(GLenum light, GLenum pname, GLfixed * params) { @@ -598,7 +598,7 @@ void glshim_glGetLightxv(GLenum light, GLenum pname, GLfixed * params) { #endif gles_glGetLightxv(light, pname, params); } -void glGetLightxv(GLenum light, GLenum pname, GLfixed * params) __attribute__((alias("glshim_glGetLightxv"))); +void glGetLightxv(GLenum light, GLenum pname, GLfixed * params) __attribute__((alias("glshim_glGetLightxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetMaterialfv void glshim_glGetMaterialfv(GLenum face, GLenum pname, GLfloat * params) { @@ -608,7 +608,7 @@ void glshim_glGetMaterialfv(GLenum face, GLenum pname, GLfloat * params) { #endif gles_glGetMaterialfv(face, pname, params); } -void glGetMaterialfv(GLenum face, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetMaterialfv"))); +void glGetMaterialfv(GLenum face, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetMaterialfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetMaterialxv void glshim_glGetMaterialxv(GLenum face, GLenum pname, GLfixed * params) { @@ -618,7 +618,7 @@ void glshim_glGetMaterialxv(GLenum face, GLenum pname, GLfixed * params) { #endif gles_glGetMaterialxv(face, pname, params); } -void glGetMaterialxv(GLenum face, GLenum pname, GLfixed * params) __attribute__((alias("glshim_glGetMaterialxv"))); +void glGetMaterialxv(GLenum face, GLenum pname, GLfixed * params) __attribute__((alias("glshim_glGetMaterialxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetPointerv void glshim_glGetPointerv(GLenum pname, GLvoid ** params) { @@ -628,7 +628,7 @@ void glshim_glGetPointerv(GLenum pname, GLvoid ** params) { #endif gles_glGetPointerv(pname, params); } -void glGetPointerv(GLenum pname, GLvoid ** params) __attribute__((alias("glshim_glGetPointerv"))); +void glGetPointerv(GLenum pname, GLvoid ** params) __attribute__((alias("glshim_glGetPointerv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetString const GLubyte * glshim_glGetString(GLenum name) { @@ -638,7 +638,7 @@ const GLubyte * glshim_glGetString(GLenum name) { #endif return gles_glGetString(name); } -const GLubyte * glGetString(GLenum name) __attribute__((alias("glshim_glGetString"))); +const GLubyte * glGetString(GLenum name) __attribute__((alias("glshim_glGetString"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetTexEnvfv void glshim_glGetTexEnvfv(GLenum target, GLenum pname, GLfloat * params) { @@ -648,7 +648,7 @@ void glshim_glGetTexEnvfv(GLenum target, GLenum pname, GLfloat * params) { #endif gles_glGetTexEnvfv(target, pname, params); } -void glGetTexEnvfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexEnvfv"))); +void glGetTexEnvfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexEnvfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetTexEnviv void glshim_glGetTexEnviv(GLenum target, GLenum pname, GLint * params) { @@ -658,7 +658,7 @@ void glshim_glGetTexEnviv(GLenum target, GLenum pname, GLint * params) { #endif gles_glGetTexEnviv(target, pname, params); } -void glGetTexEnviv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexEnviv"))); +void glGetTexEnviv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexEnviv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetTexEnvxv void glshim_glGetTexEnvxv(GLenum target, GLenum pname, GLfixed * params) { @@ -668,7 +668,7 @@ void glshim_glGetTexEnvxv(GLenum target, GLenum pname, GLfixed * params) { #endif gles_glGetTexEnvxv(target, pname, params); } -void glGetTexEnvxv(GLenum target, GLenum pname, GLfixed * params) __attribute__((alias("glshim_glGetTexEnvxv"))); +void glGetTexEnvxv(GLenum target, GLenum pname, GLfixed * params) __attribute__((alias("glshim_glGetTexEnvxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetTexParameterfv void glshim_glGetTexParameterfv(GLenum target, GLenum pname, GLfloat * params) { @@ -678,7 +678,7 @@ void glshim_glGetTexParameterfv(GLenum target, GLenum pname, GLfloat * params) { #endif gles_glGetTexParameterfv(target, pname, params); } -void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexParameterfv"))); +void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexParameterfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetTexParameteriv void glshim_glGetTexParameteriv(GLenum target, GLenum pname, GLint * params) { @@ -688,7 +688,7 @@ void glshim_glGetTexParameteriv(GLenum target, GLenum pname, GLint * params) { #endif gles_glGetTexParameteriv(target, pname, params); } -void glGetTexParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexParameteriv"))); +void glGetTexParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexParameteriv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetTexParameterxv void glshim_glGetTexParameterxv(GLenum target, GLenum pname, GLfixed * params) { @@ -698,7 +698,7 @@ void glshim_glGetTexParameterxv(GLenum target, GLenum pname, GLfixed * params) { #endif gles_glGetTexParameterxv(target, pname, params); } -void glGetTexParameterxv(GLenum target, GLenum pname, GLfixed * params) __attribute__((alias("glshim_glGetTexParameterxv"))); +void glGetTexParameterxv(GLenum target, GLenum pname, GLfixed * params) __attribute__((alias("glshim_glGetTexParameterxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glHint void glshim_glHint(GLenum target, GLenum mode) { @@ -708,7 +708,7 @@ void glshim_glHint(GLenum target, GLenum mode) { #endif gles_glHint(target, mode); } -void glHint(GLenum target, GLenum mode) __attribute__((alias("glshim_glHint"))); +void glHint(GLenum target, GLenum mode) __attribute__((alias("glshim_glHint"))) __attribute__((visibility("default"))); #endif #ifndef skip_glIsBuffer GLboolean glshim_glIsBuffer(GLuint buffer) { @@ -718,7 +718,7 @@ GLboolean glshim_glIsBuffer(GLuint buffer) { #endif return gles_glIsBuffer(buffer); } -GLboolean glIsBuffer(GLuint buffer) __attribute__((alias("glshim_glIsBuffer"))); +GLboolean glIsBuffer(GLuint buffer) __attribute__((alias("glshim_glIsBuffer"))) __attribute__((visibility("default"))); #endif #ifndef skip_glIsEnabled GLboolean glshim_glIsEnabled(GLenum cap) { @@ -728,7 +728,7 @@ GLboolean glshim_glIsEnabled(GLenum cap) { #endif return gles_glIsEnabled(cap); } -GLboolean glIsEnabled(GLenum cap) __attribute__((alias("glshim_glIsEnabled"))); +GLboolean glIsEnabled(GLenum cap) __attribute__((alias("glshim_glIsEnabled"))) __attribute__((visibility("default"))); #endif #ifndef skip_glIsTexture GLboolean glshim_glIsTexture(GLuint texture) { @@ -738,7 +738,7 @@ GLboolean glshim_glIsTexture(GLuint texture) { #endif return gles_glIsTexture(texture); } -GLboolean glIsTexture(GLuint texture) __attribute__((alias("glshim_glIsTexture"))); +GLboolean glIsTexture(GLuint texture) __attribute__((alias("glshim_glIsTexture"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLightModelf void glshim_glLightModelf(GLenum pname, GLfloat param) { @@ -748,7 +748,7 @@ void glshim_glLightModelf(GLenum pname, GLfloat param) { #endif gles_glLightModelf(pname, param); } -void glLightModelf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glLightModelf"))); +void glLightModelf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glLightModelf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLightModelfv void glshim_glLightModelfv(GLenum pname, const GLfloat * params) { @@ -758,7 +758,7 @@ void glshim_glLightModelfv(GLenum pname, const GLfloat * params) { #endif gles_glLightModelfv(pname, params); } -void glLightModelfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glLightModelfv"))); +void glLightModelfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glLightModelfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLightModelx void glshim_glLightModelx(GLenum pname, GLfixed param) { @@ -768,7 +768,7 @@ void glshim_glLightModelx(GLenum pname, GLfixed param) { #endif gles_glLightModelx(pname, param); } -void glLightModelx(GLenum pname, GLfixed param) __attribute__((alias("glshim_glLightModelx"))); +void glLightModelx(GLenum pname, GLfixed param) __attribute__((alias("glshim_glLightModelx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLightModelxv void glshim_glLightModelxv(GLenum pname, const GLfixed * params) { @@ -778,7 +778,7 @@ void glshim_glLightModelxv(GLenum pname, const GLfixed * params) { #endif gles_glLightModelxv(pname, params); } -void glLightModelxv(GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glLightModelxv"))); +void glLightModelxv(GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glLightModelxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLightf void glshim_glLightf(GLenum light, GLenum pname, GLfloat param) { @@ -788,7 +788,7 @@ void glshim_glLightf(GLenum light, GLenum pname, GLfloat param) { #endif gles_glLightf(light, pname, param); } -void glLightf(GLenum light, GLenum pname, GLfloat param) __attribute__((alias("glshim_glLightf"))); +void glLightf(GLenum light, GLenum pname, GLfloat param) __attribute__((alias("glshim_glLightf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLightfv void glshim_glLightfv(GLenum light, GLenum pname, const GLfloat * params) { @@ -798,7 +798,7 @@ void glshim_glLightfv(GLenum light, GLenum pname, const GLfloat * params) { #endif gles_glLightfv(light, pname, params); } -void glLightfv(GLenum light, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glLightfv"))); +void glLightfv(GLenum light, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glLightfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLightx void glshim_glLightx(GLenum light, GLenum pname, GLfixed param) { @@ -808,7 +808,7 @@ void glshim_glLightx(GLenum light, GLenum pname, GLfixed param) { #endif gles_glLightx(light, pname, param); } -void glLightx(GLenum light, GLenum pname, GLfixed param) __attribute__((alias("glshim_glLightx"))); +void glLightx(GLenum light, GLenum pname, GLfixed param) __attribute__((alias("glshim_glLightx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLightxv void glshim_glLightxv(GLenum light, GLenum pname, const GLfixed * params) { @@ -818,7 +818,7 @@ void glshim_glLightxv(GLenum light, GLenum pname, const GLfixed * params) { #endif gles_glLightxv(light, pname, params); } -void glLightxv(GLenum light, GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glLightxv"))); +void glLightxv(GLenum light, GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glLightxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLineWidth void glshim_glLineWidth(GLfloat width) { @@ -828,7 +828,7 @@ void glshim_glLineWidth(GLfloat width) { #endif gles_glLineWidth(width); } -void glLineWidth(GLfloat width) __attribute__((alias("glshim_glLineWidth"))); +void glLineWidth(GLfloat width) __attribute__((alias("glshim_glLineWidth"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLineWidthx void glshim_glLineWidthx(GLfixed width) { @@ -838,7 +838,7 @@ void glshim_glLineWidthx(GLfixed width) { #endif gles_glLineWidthx(width); } -void glLineWidthx(GLfixed width) __attribute__((alias("glshim_glLineWidthx"))); +void glLineWidthx(GLfixed width) __attribute__((alias("glshim_glLineWidthx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLoadIdentity void glshim_glLoadIdentity() { @@ -848,7 +848,7 @@ void glshim_glLoadIdentity() { #endif gles_glLoadIdentity(); } -void glLoadIdentity() __attribute__((alias("glshim_glLoadIdentity"))); +void glLoadIdentity() __attribute__((alias("glshim_glLoadIdentity"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLoadMatrixf void glshim_glLoadMatrixf(const GLfloat * m) { @@ -858,7 +858,7 @@ void glshim_glLoadMatrixf(const GLfloat * m) { #endif gles_glLoadMatrixf(m); } -void glLoadMatrixf(const GLfloat * m) __attribute__((alias("glshim_glLoadMatrixf"))); +void glLoadMatrixf(const GLfloat * m) __attribute__((alias("glshim_glLoadMatrixf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLoadMatrixx void glshim_glLoadMatrixx(const GLfixed * m) { @@ -868,7 +868,7 @@ void glshim_glLoadMatrixx(const GLfixed * m) { #endif gles_glLoadMatrixx(m); } -void glLoadMatrixx(const GLfixed * m) __attribute__((alias("glshim_glLoadMatrixx"))); +void glLoadMatrixx(const GLfixed * m) __attribute__((alias("glshim_glLoadMatrixx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glLogicOp void glshim_glLogicOp(GLenum opcode) { @@ -878,7 +878,7 @@ void glshim_glLogicOp(GLenum opcode) { #endif gles_glLogicOp(opcode); } -void glLogicOp(GLenum opcode) __attribute__((alias("glshim_glLogicOp"))); +void glLogicOp(GLenum opcode) __attribute__((alias("glshim_glLogicOp"))) __attribute__((visibility("default"))); #endif #ifndef skip_glMaterialf void glshim_glMaterialf(GLenum face, GLenum pname, GLfloat param) { @@ -888,7 +888,7 @@ void glshim_glMaterialf(GLenum face, GLenum pname, GLfloat param) { #endif gles_glMaterialf(face, pname, param); } -void glMaterialf(GLenum face, GLenum pname, GLfloat param) __attribute__((alias("glshim_glMaterialf"))); +void glMaterialf(GLenum face, GLenum pname, GLfloat param) __attribute__((alias("glshim_glMaterialf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glMaterialfv void glshim_glMaterialfv(GLenum face, GLenum pname, const GLfloat * params) { @@ -898,7 +898,7 @@ void glshim_glMaterialfv(GLenum face, GLenum pname, const GLfloat * params) { #endif gles_glMaterialfv(face, pname, params); } -void glMaterialfv(GLenum face, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glMaterialfv"))); +void glMaterialfv(GLenum face, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glMaterialfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glMaterialx void glshim_glMaterialx(GLenum face, GLenum pname, GLfixed param) { @@ -908,7 +908,7 @@ void glshim_glMaterialx(GLenum face, GLenum pname, GLfixed param) { #endif gles_glMaterialx(face, pname, param); } -void glMaterialx(GLenum face, GLenum pname, GLfixed param) __attribute__((alias("glshim_glMaterialx"))); +void glMaterialx(GLenum face, GLenum pname, GLfixed param) __attribute__((alias("glshim_glMaterialx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glMaterialxv void glshim_glMaterialxv(GLenum face, GLenum pname, const GLfixed * params) { @@ -918,7 +918,7 @@ void glshim_glMaterialxv(GLenum face, GLenum pname, const GLfixed * params) { #endif gles_glMaterialxv(face, pname, params); } -void glMaterialxv(GLenum face, GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glMaterialxv"))); +void glMaterialxv(GLenum face, GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glMaterialxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glMatrixMode void glshim_glMatrixMode(GLenum mode) { @@ -928,7 +928,7 @@ void glshim_glMatrixMode(GLenum mode) { #endif gles_glMatrixMode(mode); } -void glMatrixMode(GLenum mode) __attribute__((alias("glshim_glMatrixMode"))); +void glMatrixMode(GLenum mode) __attribute__((alias("glshim_glMatrixMode"))) __attribute__((visibility("default"))); #endif #ifndef skip_glMultMatrixf void glshim_glMultMatrixf(const GLfloat * m) { @@ -938,7 +938,7 @@ void glshim_glMultMatrixf(const GLfloat * m) { #endif gles_glMultMatrixf(m); } -void glMultMatrixf(const GLfloat * m) __attribute__((alias("glshim_glMultMatrixf"))); +void glMultMatrixf(const GLfloat * m) __attribute__((alias("glshim_glMultMatrixf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glMultMatrixx void glshim_glMultMatrixx(const GLfixed * m) { @@ -948,7 +948,7 @@ void glshim_glMultMatrixx(const GLfixed * m) { #endif gles_glMultMatrixx(m); } -void glMultMatrixx(const GLfixed * m) __attribute__((alias("glshim_glMultMatrixx"))); +void glMultMatrixx(const GLfixed * m) __attribute__((alias("glshim_glMultMatrixx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glMultiTexCoord4f void glshim_glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) { @@ -958,7 +958,7 @@ void glshim_glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GL #endif gles_glMultiTexCoord4f(target, s, t, r, q); } -void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) __attribute__((alias("glshim_glMultiTexCoord4f"))); +void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) __attribute__((alias("glshim_glMultiTexCoord4f"))) __attribute__((visibility("default"))); #endif #ifndef skip_glMultiTexCoord4x void glshim_glMultiTexCoord4x(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q) { @@ -968,7 +968,7 @@ void glshim_glMultiTexCoord4x(GLenum target, GLfixed s, GLfixed t, GLfixed r, GL #endif gles_glMultiTexCoord4x(target, s, t, r, q); } -void glMultiTexCoord4x(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q) __attribute__((alias("glshim_glMultiTexCoord4x"))); +void glMultiTexCoord4x(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q) __attribute__((alias("glshim_glMultiTexCoord4x"))) __attribute__((visibility("default"))); #endif #ifndef skip_glNormal3f void glshim_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) { @@ -978,7 +978,7 @@ void glshim_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) { #endif gles_glNormal3f(nx, ny, nz); } -void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) __attribute__((alias("glshim_glNormal3f"))); +void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) __attribute__((alias("glshim_glNormal3f"))) __attribute__((visibility("default"))); #endif #ifndef skip_glNormal3x void glshim_glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) { @@ -988,7 +988,7 @@ void glshim_glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) { #endif gles_glNormal3x(nx, ny, nz); } -void glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) __attribute__((alias("glshim_glNormal3x"))); +void glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) __attribute__((alias("glshim_glNormal3x"))) __attribute__((visibility("default"))); #endif #ifndef skip_glNormalPointer void glshim_glNormalPointer(GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -998,7 +998,7 @@ void glshim_glNormalPointer(GLenum type, GLsizei stride, const GLvoid * pointer) #endif gles_glNormalPointer(type, stride, pointer); } -void glNormalPointer(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glNormalPointer"))); +void glNormalPointer(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glNormalPointer"))) __attribute__((visibility("default"))); #endif #ifndef skip_glOrthof void glshim_glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat near, GLfloat far) { @@ -1008,7 +1008,7 @@ void glshim_glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, G #endif gles_glOrthof(left, right, bottom, top, near, far); } -void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat near, GLfloat far) __attribute__((alias("glshim_glOrthof"))); +void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat near, GLfloat far) __attribute__((alias("glshim_glOrthof"))) __attribute__((visibility("default"))); #endif #ifndef skip_glOrthox void glshim_glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed near, GLfixed far) { @@ -1018,7 +1018,7 @@ void glshim_glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, G #endif gles_glOrthox(left, right, bottom, top, near, far); } -void glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed near, GLfixed far) __attribute__((alias("glshim_glOrthox"))); +void glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed near, GLfixed far) __attribute__((alias("glshim_glOrthox"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPixelStorei void glshim_glPixelStorei(GLenum pname, GLint param) { @@ -1028,7 +1028,7 @@ void glshim_glPixelStorei(GLenum pname, GLint param) { #endif gles_glPixelStorei(pname, param); } -void glPixelStorei(GLenum pname, GLint param) __attribute__((alias("glshim_glPixelStorei"))); +void glPixelStorei(GLenum pname, GLint param) __attribute__((alias("glshim_glPixelStorei"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPointParameterf void glshim_glPointParameterf(GLenum pname, GLfloat param) { @@ -1038,7 +1038,7 @@ void glshim_glPointParameterf(GLenum pname, GLfloat param) { #endif gles_glPointParameterf(pname, param); } -void glPointParameterf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glPointParameterf"))); +void glPointParameterf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glPointParameterf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPointParameterfv void glshim_glPointParameterfv(GLenum pname, const GLfloat * params) { @@ -1048,7 +1048,7 @@ void glshim_glPointParameterfv(GLenum pname, const GLfloat * params) { #endif gles_glPointParameterfv(pname, params); } -void glPointParameterfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glPointParameterfv"))); +void glPointParameterfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glPointParameterfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPointParameterx void glshim_glPointParameterx(GLenum pname, GLfixed param) { @@ -1058,7 +1058,7 @@ void glshim_glPointParameterx(GLenum pname, GLfixed param) { #endif gles_glPointParameterx(pname, param); } -void glPointParameterx(GLenum pname, GLfixed param) __attribute__((alias("glshim_glPointParameterx"))); +void glPointParameterx(GLenum pname, GLfixed param) __attribute__((alias("glshim_glPointParameterx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPointParameterxv void glshim_glPointParameterxv(GLenum pname, const GLfixed * params) { @@ -1068,7 +1068,7 @@ void glshim_glPointParameterxv(GLenum pname, const GLfixed * params) { #endif gles_glPointParameterxv(pname, params); } -void glPointParameterxv(GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glPointParameterxv"))); +void glPointParameterxv(GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glPointParameterxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPointSize void glshim_glPointSize(GLfloat size) { @@ -1078,7 +1078,7 @@ void glshim_glPointSize(GLfloat size) { #endif gles_glPointSize(size); } -void glPointSize(GLfloat size) __attribute__((alias("glshim_glPointSize"))); +void glPointSize(GLfloat size) __attribute__((alias("glshim_glPointSize"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPointSizePointerOES void glshim_glPointSizePointerOES(GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -1088,7 +1088,7 @@ void glshim_glPointSizePointerOES(GLenum type, GLsizei stride, const GLvoid * po #endif gles_glPointSizePointerOES(type, stride, pointer); } -void glPointSizePointerOES(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glPointSizePointerOES"))); +void glPointSizePointerOES(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glPointSizePointerOES"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPointSizex void glshim_glPointSizex(GLfixed size) { @@ -1098,7 +1098,7 @@ void glshim_glPointSizex(GLfixed size) { #endif gles_glPointSizex(size); } -void glPointSizex(GLfixed size) __attribute__((alias("glshim_glPointSizex"))); +void glPointSizex(GLfixed size) __attribute__((alias("glshim_glPointSizex"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPolygonOffset void glshim_glPolygonOffset(GLfloat factor, GLfloat units) { @@ -1108,7 +1108,7 @@ void glshim_glPolygonOffset(GLfloat factor, GLfloat units) { #endif gles_glPolygonOffset(factor, units); } -void glPolygonOffset(GLfloat factor, GLfloat units) __attribute__((alias("glshim_glPolygonOffset"))); +void glPolygonOffset(GLfloat factor, GLfloat units) __attribute__((alias("glshim_glPolygonOffset"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPolygonOffsetx void glshim_glPolygonOffsetx(GLfixed factor, GLfixed units) { @@ -1118,7 +1118,7 @@ void glshim_glPolygonOffsetx(GLfixed factor, GLfixed units) { #endif gles_glPolygonOffsetx(factor, units); } -void glPolygonOffsetx(GLfixed factor, GLfixed units) __attribute__((alias("glshim_glPolygonOffsetx"))); +void glPolygonOffsetx(GLfixed factor, GLfixed units) __attribute__((alias("glshim_glPolygonOffsetx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPopMatrix void glshim_glPopMatrix() { @@ -1128,7 +1128,7 @@ void glshim_glPopMatrix() { #endif gles_glPopMatrix(); } -void glPopMatrix() __attribute__((alias("glshim_glPopMatrix"))); +void glPopMatrix() __attribute__((alias("glshim_glPopMatrix"))) __attribute__((visibility("default"))); #endif #ifndef skip_glPushMatrix void glshim_glPushMatrix() { @@ -1138,7 +1138,7 @@ void glshim_glPushMatrix() { #endif gles_glPushMatrix(); } -void glPushMatrix() __attribute__((alias("glshim_glPushMatrix"))); +void glPushMatrix() __attribute__((alias("glshim_glPushMatrix"))) __attribute__((visibility("default"))); #endif #ifndef skip_glReadPixels void glshim_glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * pixels) { @@ -1148,7 +1148,7 @@ void glshim_glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum #endif gles_glReadPixels(x, y, width, height, format, type, pixels); } -void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * pixels) __attribute__((alias("glshim_glReadPixels"))); +void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * pixels) __attribute__((alias("glshim_glReadPixels"))) __attribute__((visibility("default"))); #endif #ifndef skip_glRotatef void glshim_glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) { @@ -1158,7 +1158,7 @@ void glshim_glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) { #endif gles_glRotatef(angle, x, y, z); } -void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glRotatef"))); +void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glRotatef"))) __attribute__((visibility("default"))); #endif #ifndef skip_glRotatex void glshim_glRotatex(GLfixed angle, GLfixed x, GLfixed y, GLfixed z) { @@ -1168,7 +1168,7 @@ void glshim_glRotatex(GLfixed angle, GLfixed x, GLfixed y, GLfixed z) { #endif gles_glRotatex(angle, x, y, z); } -void glRotatex(GLfixed angle, GLfixed x, GLfixed y, GLfixed z) __attribute__((alias("glshim_glRotatex"))); +void glRotatex(GLfixed angle, GLfixed x, GLfixed y, GLfixed z) __attribute__((alias("glshim_glRotatex"))) __attribute__((visibility("default"))); #endif #ifndef skip_glSampleCoverage void glshim_glSampleCoverage(GLclampf value, GLboolean invert) { @@ -1178,7 +1178,7 @@ void glshim_glSampleCoverage(GLclampf value, GLboolean invert) { #endif gles_glSampleCoverage(value, invert); } -void glSampleCoverage(GLclampf value, GLboolean invert) __attribute__((alias("glshim_glSampleCoverage"))); +void glSampleCoverage(GLclampf value, GLboolean invert) __attribute__((alias("glshim_glSampleCoverage"))) __attribute__((visibility("default"))); #endif #ifndef skip_glSampleCoveragex void glshim_glSampleCoveragex(GLclampx value, GLboolean invert) { @@ -1188,7 +1188,7 @@ void glshim_glSampleCoveragex(GLclampx value, GLboolean invert) { #endif gles_glSampleCoveragex(value, invert); } -void glSampleCoveragex(GLclampx value, GLboolean invert) __attribute__((alias("glshim_glSampleCoveragex"))); +void glSampleCoveragex(GLclampx value, GLboolean invert) __attribute__((alias("glshim_glSampleCoveragex"))) __attribute__((visibility("default"))); #endif #ifndef skip_glScalef void glshim_glScalef(GLfloat x, GLfloat y, GLfloat z) { @@ -1198,7 +1198,7 @@ void glshim_glScalef(GLfloat x, GLfloat y, GLfloat z) { #endif gles_glScalef(x, y, z); } -void glScalef(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glScalef"))); +void glScalef(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glScalef"))) __attribute__((visibility("default"))); #endif #ifndef skip_glScalex void glshim_glScalex(GLfixed x, GLfixed y, GLfixed z) { @@ -1208,7 +1208,7 @@ void glshim_glScalex(GLfixed x, GLfixed y, GLfixed z) { #endif gles_glScalex(x, y, z); } -void glScalex(GLfixed x, GLfixed y, GLfixed z) __attribute__((alias("glshim_glScalex"))); +void glScalex(GLfixed x, GLfixed y, GLfixed z) __attribute__((alias("glshim_glScalex"))) __attribute__((visibility("default"))); #endif #ifndef skip_glScissor void glshim_glScissor(GLint x, GLint y, GLsizei width, GLsizei height) { @@ -1218,7 +1218,7 @@ void glshim_glScissor(GLint x, GLint y, GLsizei width, GLsizei height) { #endif gles_glScissor(x, y, width, height); } -void glScissor(GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glScissor"))); +void glScissor(GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glScissor"))) __attribute__((visibility("default"))); #endif #ifndef skip_glShadeModel void glshim_glShadeModel(GLenum mode) { @@ -1228,7 +1228,7 @@ void glshim_glShadeModel(GLenum mode) { #endif gles_glShadeModel(mode); } -void glShadeModel(GLenum mode) __attribute__((alias("glshim_glShadeModel"))); +void glShadeModel(GLenum mode) __attribute__((alias("glshim_glShadeModel"))) __attribute__((visibility("default"))); #endif #ifndef skip_glStencilFunc void glshim_glStencilFunc(GLenum func, GLint ref, GLuint mask) { @@ -1238,7 +1238,7 @@ void glshim_glStencilFunc(GLenum func, GLint ref, GLuint mask) { #endif gles_glStencilFunc(func, ref, mask); } -void glStencilFunc(GLenum func, GLint ref, GLuint mask) __attribute__((alias("glshim_glStencilFunc"))); +void glStencilFunc(GLenum func, GLint ref, GLuint mask) __attribute__((alias("glshim_glStencilFunc"))) __attribute__((visibility("default"))); #endif #ifndef skip_glStencilMask void glshim_glStencilMask(GLuint mask) { @@ -1248,7 +1248,7 @@ void glshim_glStencilMask(GLuint mask) { #endif gles_glStencilMask(mask); } -void glStencilMask(GLuint mask) __attribute__((alias("glshim_glStencilMask"))); +void glStencilMask(GLuint mask) __attribute__((alias("glshim_glStencilMask"))) __attribute__((visibility("default"))); #endif #ifndef skip_glStencilOp void glshim_glStencilOp(GLenum fail, GLenum zfail, GLenum zpass) { @@ -1258,7 +1258,7 @@ void glshim_glStencilOp(GLenum fail, GLenum zfail, GLenum zpass) { #endif gles_glStencilOp(fail, zfail, zpass); } -void glStencilOp(GLenum fail, GLenum zfail, GLenum zpass) __attribute__((alias("glshim_glStencilOp"))); +void glStencilOp(GLenum fail, GLenum zfail, GLenum zpass) __attribute__((alias("glshim_glStencilOp"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexCoordPointer void glshim_glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -1268,7 +1268,7 @@ void glshim_glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLv #endif gles_glTexCoordPointer(size, type, stride, pointer); } -void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glTexCoordPointer"))); +void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glTexCoordPointer"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexEnvf void glshim_glTexEnvf(GLenum target, GLenum pname, GLfloat param) { @@ -1278,7 +1278,7 @@ void glshim_glTexEnvf(GLenum target, GLenum pname, GLfloat param) { #endif gles_glTexEnvf(target, pname, param); } -void glTexEnvf(GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexEnvf"))); +void glTexEnvf(GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexEnvf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexEnvfv void glshim_glTexEnvfv(GLenum target, GLenum pname, const GLfloat * params) { @@ -1288,7 +1288,7 @@ void glshim_glTexEnvfv(GLenum target, GLenum pname, const GLfloat * params) { #endif gles_glTexEnvfv(target, pname, params); } -void glTexEnvfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexEnvfv"))); +void glTexEnvfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexEnvfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexEnvi void glshim_glTexEnvi(GLenum target, GLenum pname, GLint param) { @@ -1298,7 +1298,7 @@ void glshim_glTexEnvi(GLenum target, GLenum pname, GLint param) { #endif gles_glTexEnvi(target, pname, param); } -void glTexEnvi(GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glTexEnvi"))); +void glTexEnvi(GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glTexEnvi"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexEnviv void glshim_glTexEnviv(GLenum target, GLenum pname, const GLint * params) { @@ -1308,7 +1308,7 @@ void glshim_glTexEnviv(GLenum target, GLenum pname, const GLint * params) { #endif gles_glTexEnviv(target, pname, params); } -void glTexEnviv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glTexEnviv"))); +void glTexEnviv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glTexEnviv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexEnvx void glshim_glTexEnvx(GLenum target, GLenum pname, GLfixed param) { @@ -1318,7 +1318,7 @@ void glshim_glTexEnvx(GLenum target, GLenum pname, GLfixed param) { #endif gles_glTexEnvx(target, pname, param); } -void glTexEnvx(GLenum target, GLenum pname, GLfixed param) __attribute__((alias("glshim_glTexEnvx"))); +void glTexEnvx(GLenum target, GLenum pname, GLfixed param) __attribute__((alias("glshim_glTexEnvx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexEnvxv void glshim_glTexEnvxv(GLenum target, GLenum pname, const GLfixed * params) { @@ -1328,7 +1328,7 @@ void glshim_glTexEnvxv(GLenum target, GLenum pname, const GLfixed * params) { #endif gles_glTexEnvxv(target, pname, params); } -void glTexEnvxv(GLenum target, GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glTexEnvxv"))); +void glTexEnvxv(GLenum target, GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glTexEnvxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexImage2D void glshim_glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels) { @@ -1338,7 +1338,7 @@ void glshim_glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsiz #endif gles_glTexImage2D(target, level, internalformat, width, height, border, format, type, pixels); } -void glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexImage2D"))); +void glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexImage2D"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexParameterf void glshim_glTexParameterf(GLenum target, GLenum pname, GLfloat param) { @@ -1348,7 +1348,7 @@ void glshim_glTexParameterf(GLenum target, GLenum pname, GLfloat param) { #endif gles_glTexParameterf(target, pname, param); } -void glTexParameterf(GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexParameterf"))); +void glTexParameterf(GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexParameterf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexParameterfv void glshim_glTexParameterfv(GLenum target, GLenum pname, const GLfloat * params) { @@ -1358,7 +1358,7 @@ void glshim_glTexParameterfv(GLenum target, GLenum pname, const GLfloat * params #endif gles_glTexParameterfv(target, pname, params); } -void glTexParameterfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexParameterfv"))); +void glTexParameterfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexParameterfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexParameteri void glshim_glTexParameteri(GLenum target, GLenum pname, GLint param) { @@ -1368,7 +1368,7 @@ void glshim_glTexParameteri(GLenum target, GLenum pname, GLint param) { #endif gles_glTexParameteri(target, pname, param); } -void glTexParameteri(GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glTexParameteri"))); +void glTexParameteri(GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glTexParameteri"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexParameteriv void glshim_glTexParameteriv(GLenum target, GLenum pname, const GLint * params) { @@ -1378,7 +1378,7 @@ void glshim_glTexParameteriv(GLenum target, GLenum pname, const GLint * params) #endif gles_glTexParameteriv(target, pname, params); } -void glTexParameteriv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glTexParameteriv"))); +void glTexParameteriv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glTexParameteriv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexParameterx void glshim_glTexParameterx(GLenum target, GLenum pname, GLfixed param) { @@ -1388,7 +1388,7 @@ void glshim_glTexParameterx(GLenum target, GLenum pname, GLfixed param) { #endif gles_glTexParameterx(target, pname, param); } -void glTexParameterx(GLenum target, GLenum pname, GLfixed param) __attribute__((alias("glshim_glTexParameterx"))); +void glTexParameterx(GLenum target, GLenum pname, GLfixed param) __attribute__((alias("glshim_glTexParameterx"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexParameterxv void glshim_glTexParameterxv(GLenum target, GLenum pname, const GLfixed * params) { @@ -1398,7 +1398,7 @@ void glshim_glTexParameterxv(GLenum target, GLenum pname, const GLfixed * params #endif gles_glTexParameterxv(target, pname, params); } -void glTexParameterxv(GLenum target, GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glTexParameterxv"))); +void glTexParameterxv(GLenum target, GLenum pname, const GLfixed * params) __attribute__((alias("glshim_glTexParameterxv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexSubImage2D void glshim_glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * pixels) { @@ -1408,7 +1408,7 @@ void glshim_glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yof #endif gles_glTexSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels); } -void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexSubImage2D"))); +void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexSubImage2D"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTranslatef void glshim_glTranslatef(GLfloat x, GLfloat y, GLfloat z) { @@ -1418,7 +1418,7 @@ void glshim_glTranslatef(GLfloat x, GLfloat y, GLfloat z) { #endif gles_glTranslatef(x, y, z); } -void glTranslatef(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glTranslatef"))); +void glTranslatef(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glTranslatef"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTranslatex void glshim_glTranslatex(GLfixed x, GLfixed y, GLfixed z) { @@ -1428,7 +1428,7 @@ void glshim_glTranslatex(GLfixed x, GLfixed y, GLfixed z) { #endif gles_glTranslatex(x, y, z); } -void glTranslatex(GLfixed x, GLfixed y, GLfixed z) __attribute__((alias("glshim_glTranslatex"))); +void glTranslatex(GLfixed x, GLfixed y, GLfixed z) __attribute__((alias("glshim_glTranslatex"))) __attribute__((visibility("default"))); #endif #ifndef skip_glVertexPointer void glshim_glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -1438,7 +1438,7 @@ void glshim_glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoi #endif gles_glVertexPointer(size, type, stride, pointer); } -void glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glVertexPointer"))); +void glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glVertexPointer"))) __attribute__((visibility("default"))); #endif #ifndef skip_glViewport void glshim_glViewport(GLint x, GLint y, GLsizei width, GLsizei height) { @@ -1448,7 +1448,7 @@ void glshim_glViewport(GLint x, GLint y, GLsizei width, GLsizei height) { #endif gles_glViewport(x, y, width, height); } -void glViewport(GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glViewport"))); +void glViewport(GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glViewport"))) __attribute__((visibility("default"))); #endif void glPackedCall(const packed_call_t *packed) { switch (packed->format) { diff --git a/project/jni/glshim/src/gl/wrap/gles.h b/project/jni/glshim/src/gl/wrap/gles.h index 685626af4..be5d51190 100755 --- a/project/jni/glshim/src/gl/wrap/gles.h +++ b/project/jni/glshim/src/gl/wrap/gles.h @@ -98,6 +98,8 @@ enum FORMAT { FORMAT_void_GLenum_GLenum_GLenum_GLuint, FORMAT_void_GLenum_GLenum_GLenum_GLuint_GLint, FORMAT_void_GLenum_GLenum_GLenum_GLint___GENPT__, + FORMAT_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei, + FORMAT_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei, FORMAT_void_GLenum_GLenum_GLsizei_GLsizei, }; @@ -1332,6 +1334,39 @@ typedef struct { int func; ARGS_void_GLenum_GLenum_GLenum_GLint___GENPT__ args; } INDEXED_void_GLenum_GLenum_GLenum_GLint___GENPT__; +typedef void (*FUNC_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei)(GLenum mode, const GLint * first, const GLsizei * count, GLsizei primcount); +typedef struct { + GLenum a1; + GLint * a2; + GLsizei * a3; + GLsizei a4; +} ARGS_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei; +typedef struct { + int format; + FUNC_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei func; + ARGS_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei args; +} PACKED_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei; +typedef struct { + int func; + ARGS_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei args; +} INDEXED_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei; +typedef void (*FUNC_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei)(GLenum mode, GLsizei * count, GLenum type, const void * const * indices, GLsizei primcount); +typedef struct { + GLenum a1; + GLsizei * a2; + GLenum a3; + void * * a4; + GLsizei a5; +} ARGS_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei; +typedef struct { + int format; + FUNC_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei func; + ARGS_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei args; +} PACKED_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei; +typedef struct { + int func; + ARGS_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei args; +} INDEXED_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei; typedef void (*FUNC_void_GLenum_GLenum_GLsizei_GLsizei)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); typedef struct { GLenum a1; @@ -2158,371 +2193,385 @@ void glIndexedCall(const indexed_call_t *packed, void *ret_v); #define glMultMatrixx_PACKED PACKED_void_const_GLfixed___GENPT__ #define glMultMatrixx_INDEXED INDEXED_void_const_GLfixed___GENPT__ #define glMultMatrixx_FORMAT FORMAT_void_const_GLfixed___GENPT__ -#define glMultiTexCoord4f_INDEX 116 +#define glMultiDrawArrays_INDEX 116 +#define glMultiDrawArrays_RETURN void +#define glMultiDrawArrays_ARG_NAMES mode, first, count, primcount +#define glMultiDrawArrays_ARG_EXPAND GLenum mode, const GLint * first, const GLsizei * count, GLsizei primcount +#define glMultiDrawArrays_PACKED PACKED_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei +#define glMultiDrawArrays_INDEXED INDEXED_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei +#define glMultiDrawArrays_FORMAT FORMAT_void_GLenum_const_GLint___GENPT___const_GLsizei___GENPT___GLsizei +#define glMultiDrawElements_INDEX 117 +#define glMultiDrawElements_RETURN void +#define glMultiDrawElements_ARG_NAMES mode, count, type, indices, primcount +#define glMultiDrawElements_ARG_EXPAND GLenum mode, GLsizei * count, GLenum type, const void * const * indices, GLsizei primcount +#define glMultiDrawElements_PACKED PACKED_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei +#define glMultiDrawElements_INDEXED INDEXED_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei +#define glMultiDrawElements_FORMAT FORMAT_void_GLenum_GLsizei___GENPT___GLenum_const_void___GENPT___const___GENPT___GLsizei +#define glMultiTexCoord4f_INDEX 118 #define glMultiTexCoord4f_RETURN void #define glMultiTexCoord4f_ARG_NAMES target, s, t, r, q #define glMultiTexCoord4f_ARG_EXPAND GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q #define glMultiTexCoord4f_PACKED PACKED_void_GLenum_GLfloat_GLfloat_GLfloat_GLfloat #define glMultiTexCoord4f_INDEXED INDEXED_void_GLenum_GLfloat_GLfloat_GLfloat_GLfloat #define glMultiTexCoord4f_FORMAT FORMAT_void_GLenum_GLfloat_GLfloat_GLfloat_GLfloat -#define glMultiTexCoord4x_INDEX 117 +#define glMultiTexCoord4x_INDEX 119 #define glMultiTexCoord4x_RETURN void #define glMultiTexCoord4x_ARG_NAMES target, s, t, r, q #define glMultiTexCoord4x_ARG_EXPAND GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q #define glMultiTexCoord4x_PACKED PACKED_void_GLenum_GLfixed_GLfixed_GLfixed_GLfixed #define glMultiTexCoord4x_INDEXED INDEXED_void_GLenum_GLfixed_GLfixed_GLfixed_GLfixed #define glMultiTexCoord4x_FORMAT FORMAT_void_GLenum_GLfixed_GLfixed_GLfixed_GLfixed -#define glNormal3f_INDEX 118 +#define glNormal3f_INDEX 120 #define glNormal3f_RETURN void #define glNormal3f_ARG_NAMES nx, ny, nz #define glNormal3f_ARG_EXPAND GLfloat nx, GLfloat ny, GLfloat nz #define glNormal3f_PACKED PACKED_void_GLfloat_GLfloat_GLfloat #define glNormal3f_INDEXED INDEXED_void_GLfloat_GLfloat_GLfloat #define glNormal3f_FORMAT FORMAT_void_GLfloat_GLfloat_GLfloat -#define glNormal3x_INDEX 119 +#define glNormal3x_INDEX 121 #define glNormal3x_RETURN void #define glNormal3x_ARG_NAMES nx, ny, nz #define glNormal3x_ARG_EXPAND GLfixed nx, GLfixed ny, GLfixed nz #define glNormal3x_PACKED PACKED_void_GLfixed_GLfixed_GLfixed #define glNormal3x_INDEXED INDEXED_void_GLfixed_GLfixed_GLfixed #define glNormal3x_FORMAT FORMAT_void_GLfixed_GLfixed_GLfixed -#define glNormalPointer_INDEX 120 +#define glNormalPointer_INDEX 122 #define glNormalPointer_RETURN void #define glNormalPointer_ARG_NAMES type, stride, pointer #define glNormalPointer_ARG_EXPAND GLenum type, GLsizei stride, const GLvoid * pointer #define glNormalPointer_PACKED PACKED_void_GLenum_GLsizei_const_GLvoid___GENPT__ #define glNormalPointer_INDEXED INDEXED_void_GLenum_GLsizei_const_GLvoid___GENPT__ #define glNormalPointer_FORMAT FORMAT_void_GLenum_GLsizei_const_GLvoid___GENPT__ -#define glOrthof_INDEX 121 +#define glOrthof_INDEX 123 #define glOrthof_RETURN void #define glOrthof_ARG_NAMES left, right, bottom, top, near, far #define glOrthof_ARG_EXPAND GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat near, GLfloat far #define glOrthof_PACKED PACKED_void_GLfloat_GLfloat_GLfloat_GLfloat_GLfloat_GLfloat #define glOrthof_INDEXED INDEXED_void_GLfloat_GLfloat_GLfloat_GLfloat_GLfloat_GLfloat #define glOrthof_FORMAT FORMAT_void_GLfloat_GLfloat_GLfloat_GLfloat_GLfloat_GLfloat -#define glOrthox_INDEX 122 +#define glOrthox_INDEX 124 #define glOrthox_RETURN void #define glOrthox_ARG_NAMES left, right, bottom, top, near, far #define glOrthox_ARG_EXPAND GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed near, GLfixed far #define glOrthox_PACKED PACKED_void_GLfixed_GLfixed_GLfixed_GLfixed_GLfixed_GLfixed #define glOrthox_INDEXED INDEXED_void_GLfixed_GLfixed_GLfixed_GLfixed_GLfixed_GLfixed #define glOrthox_FORMAT FORMAT_void_GLfixed_GLfixed_GLfixed_GLfixed_GLfixed_GLfixed -#define glPixelStorei_INDEX 123 +#define glPixelStorei_INDEX 125 #define glPixelStorei_RETURN void #define glPixelStorei_ARG_NAMES pname, param #define glPixelStorei_ARG_EXPAND GLenum pname, GLint param #define glPixelStorei_PACKED PACKED_void_GLenum_GLint #define glPixelStorei_INDEXED INDEXED_void_GLenum_GLint #define glPixelStorei_FORMAT FORMAT_void_GLenum_GLint -#define glPointParameterf_INDEX 124 +#define glPointParameterf_INDEX 126 #define glPointParameterf_RETURN void #define glPointParameterf_ARG_NAMES pname, param #define glPointParameterf_ARG_EXPAND GLenum pname, GLfloat param #define glPointParameterf_PACKED PACKED_void_GLenum_GLfloat #define glPointParameterf_INDEXED INDEXED_void_GLenum_GLfloat #define glPointParameterf_FORMAT FORMAT_void_GLenum_GLfloat -#define glPointParameterfv_INDEX 125 +#define glPointParameterfv_INDEX 127 #define glPointParameterfv_RETURN void #define glPointParameterfv_ARG_NAMES pname, params #define glPointParameterfv_ARG_EXPAND GLenum pname, const GLfloat * params #define glPointParameterfv_PACKED PACKED_void_GLenum_const_GLfloat___GENPT__ #define glPointParameterfv_INDEXED INDEXED_void_GLenum_const_GLfloat___GENPT__ #define glPointParameterfv_FORMAT FORMAT_void_GLenum_const_GLfloat___GENPT__ -#define glPointParameterx_INDEX 126 +#define glPointParameterx_INDEX 128 #define glPointParameterx_RETURN void #define glPointParameterx_ARG_NAMES pname, param #define glPointParameterx_ARG_EXPAND GLenum pname, GLfixed param #define glPointParameterx_PACKED PACKED_void_GLenum_GLfixed #define glPointParameterx_INDEXED INDEXED_void_GLenum_GLfixed #define glPointParameterx_FORMAT FORMAT_void_GLenum_GLfixed -#define glPointParameterxv_INDEX 127 +#define glPointParameterxv_INDEX 129 #define glPointParameterxv_RETURN void #define glPointParameterxv_ARG_NAMES pname, params #define glPointParameterxv_ARG_EXPAND GLenum pname, const GLfixed * params #define glPointParameterxv_PACKED PACKED_void_GLenum_const_GLfixed___GENPT__ #define glPointParameterxv_INDEXED INDEXED_void_GLenum_const_GLfixed___GENPT__ #define glPointParameterxv_FORMAT FORMAT_void_GLenum_const_GLfixed___GENPT__ -#define glPointSize_INDEX 128 +#define glPointSize_INDEX 130 #define glPointSize_RETURN void #define glPointSize_ARG_NAMES size #define glPointSize_ARG_EXPAND GLfloat size #define glPointSize_PACKED PACKED_void_GLfloat #define glPointSize_INDEXED INDEXED_void_GLfloat #define glPointSize_FORMAT FORMAT_void_GLfloat -#define glPointSizePointerOES_INDEX 129 +#define glPointSizePointerOES_INDEX 131 #define glPointSizePointerOES_RETURN void #define glPointSizePointerOES_ARG_NAMES type, stride, pointer #define glPointSizePointerOES_ARG_EXPAND GLenum type, GLsizei stride, const GLvoid * pointer #define glPointSizePointerOES_PACKED PACKED_void_GLenum_GLsizei_const_GLvoid___GENPT__ #define glPointSizePointerOES_INDEXED INDEXED_void_GLenum_GLsizei_const_GLvoid___GENPT__ #define glPointSizePointerOES_FORMAT FORMAT_void_GLenum_GLsizei_const_GLvoid___GENPT__ -#define glPointSizex_INDEX 130 +#define glPointSizex_INDEX 132 #define glPointSizex_RETURN void #define glPointSizex_ARG_NAMES size #define glPointSizex_ARG_EXPAND GLfixed size #define glPointSizex_PACKED PACKED_void_GLfixed #define glPointSizex_INDEXED INDEXED_void_GLfixed #define glPointSizex_FORMAT FORMAT_void_GLfixed -#define glPolygonOffset_INDEX 131 +#define glPolygonOffset_INDEX 133 #define glPolygonOffset_RETURN void #define glPolygonOffset_ARG_NAMES factor, units #define glPolygonOffset_ARG_EXPAND GLfloat factor, GLfloat units #define glPolygonOffset_PACKED PACKED_void_GLfloat_GLfloat #define glPolygonOffset_INDEXED INDEXED_void_GLfloat_GLfloat #define glPolygonOffset_FORMAT FORMAT_void_GLfloat_GLfloat -#define glPolygonOffsetx_INDEX 132 +#define glPolygonOffsetx_INDEX 134 #define glPolygonOffsetx_RETURN void #define glPolygonOffsetx_ARG_NAMES factor, units #define glPolygonOffsetx_ARG_EXPAND GLfixed factor, GLfixed units #define glPolygonOffsetx_PACKED PACKED_void_GLfixed_GLfixed #define glPolygonOffsetx_INDEXED INDEXED_void_GLfixed_GLfixed #define glPolygonOffsetx_FORMAT FORMAT_void_GLfixed_GLfixed -#define glPopMatrix_INDEX 133 +#define glPopMatrix_INDEX 135 #define glPopMatrix_RETURN void #define glPopMatrix_ARG_NAMES #define glPopMatrix_ARG_EXPAND #define glPopMatrix_PACKED PACKED_void #define glPopMatrix_INDEXED INDEXED_void #define glPopMatrix_FORMAT FORMAT_void -#define glPushMatrix_INDEX 134 +#define glPushMatrix_INDEX 136 #define glPushMatrix_RETURN void #define glPushMatrix_ARG_NAMES #define glPushMatrix_ARG_EXPAND #define glPushMatrix_PACKED PACKED_void #define glPushMatrix_INDEXED INDEXED_void #define glPushMatrix_FORMAT FORMAT_void -#define glReadPixels_INDEX 135 +#define glReadPixels_INDEX 137 #define glReadPixels_RETURN void #define glReadPixels_ARG_NAMES x, y, width, height, format, type, pixels #define glReadPixels_ARG_EXPAND GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * pixels #define glReadPixels_PACKED PACKED_void_GLint_GLint_GLsizei_GLsizei_GLenum_GLenum_GLvoid___GENPT__ #define glReadPixels_INDEXED INDEXED_void_GLint_GLint_GLsizei_GLsizei_GLenum_GLenum_GLvoid___GENPT__ #define glReadPixels_FORMAT FORMAT_void_GLint_GLint_GLsizei_GLsizei_GLenum_GLenum_GLvoid___GENPT__ -#define glRenderbufferStorage_INDEX 136 +#define glRenderbufferStorage_INDEX 138 #define glRenderbufferStorage_RETURN void #define glRenderbufferStorage_ARG_NAMES target, internalformat, width, height #define glRenderbufferStorage_ARG_EXPAND GLenum target, GLenum internalformat, GLsizei width, GLsizei height #define glRenderbufferStorage_PACKED PACKED_void_GLenum_GLenum_GLsizei_GLsizei #define glRenderbufferStorage_INDEXED INDEXED_void_GLenum_GLenum_GLsizei_GLsizei #define glRenderbufferStorage_FORMAT FORMAT_void_GLenum_GLenum_GLsizei_GLsizei -#define glRotatef_INDEX 137 +#define glRotatef_INDEX 139 #define glRotatef_RETURN void #define glRotatef_ARG_NAMES angle, x, y, z #define glRotatef_ARG_EXPAND GLfloat angle, GLfloat x, GLfloat y, GLfloat z #define glRotatef_PACKED PACKED_void_GLfloat_GLfloat_GLfloat_GLfloat #define glRotatef_INDEXED INDEXED_void_GLfloat_GLfloat_GLfloat_GLfloat #define glRotatef_FORMAT FORMAT_void_GLfloat_GLfloat_GLfloat_GLfloat -#define glRotatex_INDEX 138 +#define glRotatex_INDEX 140 #define glRotatex_RETURN void #define glRotatex_ARG_NAMES angle, x, y, z #define glRotatex_ARG_EXPAND GLfixed angle, GLfixed x, GLfixed y, GLfixed z #define glRotatex_PACKED PACKED_void_GLfixed_GLfixed_GLfixed_GLfixed #define glRotatex_INDEXED INDEXED_void_GLfixed_GLfixed_GLfixed_GLfixed #define glRotatex_FORMAT FORMAT_void_GLfixed_GLfixed_GLfixed_GLfixed -#define glSampleCoverage_INDEX 139 +#define glSampleCoverage_INDEX 141 #define glSampleCoverage_RETURN void #define glSampleCoverage_ARG_NAMES value, invert #define glSampleCoverage_ARG_EXPAND GLclampf value, GLboolean invert #define glSampleCoverage_PACKED PACKED_void_GLclampf_GLboolean #define glSampleCoverage_INDEXED INDEXED_void_GLclampf_GLboolean #define glSampleCoverage_FORMAT FORMAT_void_GLclampf_GLboolean -#define glSampleCoveragex_INDEX 140 +#define glSampleCoveragex_INDEX 142 #define glSampleCoveragex_RETURN void #define glSampleCoveragex_ARG_NAMES value, invert #define glSampleCoveragex_ARG_EXPAND GLclampx value, GLboolean invert #define glSampleCoveragex_PACKED PACKED_void_GLclampx_GLboolean #define glSampleCoveragex_INDEXED INDEXED_void_GLclampx_GLboolean #define glSampleCoveragex_FORMAT FORMAT_void_GLclampx_GLboolean -#define glScalef_INDEX 141 +#define glScalef_INDEX 143 #define glScalef_RETURN void #define glScalef_ARG_NAMES x, y, z #define glScalef_ARG_EXPAND GLfloat x, GLfloat y, GLfloat z #define glScalef_PACKED PACKED_void_GLfloat_GLfloat_GLfloat #define glScalef_INDEXED INDEXED_void_GLfloat_GLfloat_GLfloat #define glScalef_FORMAT FORMAT_void_GLfloat_GLfloat_GLfloat -#define glScalex_INDEX 142 +#define glScalex_INDEX 144 #define glScalex_RETURN void #define glScalex_ARG_NAMES x, y, z #define glScalex_ARG_EXPAND GLfixed x, GLfixed y, GLfixed z #define glScalex_PACKED PACKED_void_GLfixed_GLfixed_GLfixed #define glScalex_INDEXED INDEXED_void_GLfixed_GLfixed_GLfixed #define glScalex_FORMAT FORMAT_void_GLfixed_GLfixed_GLfixed -#define glScissor_INDEX 143 +#define glScissor_INDEX 145 #define glScissor_RETURN void #define glScissor_ARG_NAMES x, y, width, height #define glScissor_ARG_EXPAND GLint x, GLint y, GLsizei width, GLsizei height #define glScissor_PACKED PACKED_void_GLint_GLint_GLsizei_GLsizei #define glScissor_INDEXED INDEXED_void_GLint_GLint_GLsizei_GLsizei #define glScissor_FORMAT FORMAT_void_GLint_GLint_GLsizei_GLsizei -#define glShadeModel_INDEX 144 +#define glShadeModel_INDEX 146 #define glShadeModel_RETURN void #define glShadeModel_ARG_NAMES mode #define glShadeModel_ARG_EXPAND GLenum mode #define glShadeModel_PACKED PACKED_void_GLenum #define glShadeModel_INDEXED INDEXED_void_GLenum #define glShadeModel_FORMAT FORMAT_void_GLenum -#define glStencilFunc_INDEX 145 +#define glStencilFunc_INDEX 147 #define glStencilFunc_RETURN void #define glStencilFunc_ARG_NAMES func, ref, mask #define glStencilFunc_ARG_EXPAND GLenum func, GLint ref, GLuint mask #define glStencilFunc_PACKED PACKED_void_GLenum_GLint_GLuint #define glStencilFunc_INDEXED INDEXED_void_GLenum_GLint_GLuint #define glStencilFunc_FORMAT FORMAT_void_GLenum_GLint_GLuint -#define glStencilMask_INDEX 146 +#define glStencilMask_INDEX 148 #define glStencilMask_RETURN void #define glStencilMask_ARG_NAMES mask #define glStencilMask_ARG_EXPAND GLuint mask #define glStencilMask_PACKED PACKED_void_GLuint #define glStencilMask_INDEXED INDEXED_void_GLuint #define glStencilMask_FORMAT FORMAT_void_GLuint -#define glStencilOp_INDEX 147 +#define glStencilOp_INDEX 149 #define glStencilOp_RETURN void #define glStencilOp_ARG_NAMES fail, zfail, zpass #define glStencilOp_ARG_EXPAND GLenum fail, GLenum zfail, GLenum zpass #define glStencilOp_PACKED PACKED_void_GLenum_GLenum_GLenum #define glStencilOp_INDEXED INDEXED_void_GLenum_GLenum_GLenum #define glStencilOp_FORMAT FORMAT_void_GLenum_GLenum_GLenum -#define glTexCoordPointer_INDEX 148 +#define glTexCoordPointer_INDEX 150 #define glTexCoordPointer_RETURN void #define glTexCoordPointer_ARG_NAMES size, type, stride, pointer #define glTexCoordPointer_ARG_EXPAND GLint size, GLenum type, GLsizei stride, const GLvoid * pointer #define glTexCoordPointer_PACKED PACKED_void_GLint_GLenum_GLsizei_const_GLvoid___GENPT__ #define glTexCoordPointer_INDEXED INDEXED_void_GLint_GLenum_GLsizei_const_GLvoid___GENPT__ #define glTexCoordPointer_FORMAT FORMAT_void_GLint_GLenum_GLsizei_const_GLvoid___GENPT__ -#define glTexEnvf_INDEX 149 +#define glTexEnvf_INDEX 151 #define glTexEnvf_RETURN void #define glTexEnvf_ARG_NAMES target, pname, param #define glTexEnvf_ARG_EXPAND GLenum target, GLenum pname, GLfloat param #define glTexEnvf_PACKED PACKED_void_GLenum_GLenum_GLfloat #define glTexEnvf_INDEXED INDEXED_void_GLenum_GLenum_GLfloat #define glTexEnvf_FORMAT FORMAT_void_GLenum_GLenum_GLfloat -#define glTexEnvfv_INDEX 150 +#define glTexEnvfv_INDEX 152 #define glTexEnvfv_RETURN void #define glTexEnvfv_ARG_NAMES target, pname, params #define glTexEnvfv_ARG_EXPAND GLenum target, GLenum pname, const GLfloat * params #define glTexEnvfv_PACKED PACKED_void_GLenum_GLenum_const_GLfloat___GENPT__ #define glTexEnvfv_INDEXED INDEXED_void_GLenum_GLenum_const_GLfloat___GENPT__ #define glTexEnvfv_FORMAT FORMAT_void_GLenum_GLenum_const_GLfloat___GENPT__ -#define glTexEnvi_INDEX 151 +#define glTexEnvi_INDEX 153 #define glTexEnvi_RETURN void #define glTexEnvi_ARG_NAMES target, pname, param #define glTexEnvi_ARG_EXPAND GLenum target, GLenum pname, GLint param #define glTexEnvi_PACKED PACKED_void_GLenum_GLenum_GLint #define glTexEnvi_INDEXED INDEXED_void_GLenum_GLenum_GLint #define glTexEnvi_FORMAT FORMAT_void_GLenum_GLenum_GLint -#define glTexEnviv_INDEX 152 +#define glTexEnviv_INDEX 154 #define glTexEnviv_RETURN void #define glTexEnviv_ARG_NAMES target, pname, params #define glTexEnviv_ARG_EXPAND GLenum target, GLenum pname, const GLint * params #define glTexEnviv_PACKED PACKED_void_GLenum_GLenum_const_GLint___GENPT__ #define glTexEnviv_INDEXED INDEXED_void_GLenum_GLenum_const_GLint___GENPT__ #define glTexEnviv_FORMAT FORMAT_void_GLenum_GLenum_const_GLint___GENPT__ -#define glTexEnvx_INDEX 153 +#define glTexEnvx_INDEX 155 #define glTexEnvx_RETURN void #define glTexEnvx_ARG_NAMES target, pname, param #define glTexEnvx_ARG_EXPAND GLenum target, GLenum pname, GLfixed param #define glTexEnvx_PACKED PACKED_void_GLenum_GLenum_GLfixed #define glTexEnvx_INDEXED INDEXED_void_GLenum_GLenum_GLfixed #define glTexEnvx_FORMAT FORMAT_void_GLenum_GLenum_GLfixed -#define glTexEnvxv_INDEX 154 +#define glTexEnvxv_INDEX 156 #define glTexEnvxv_RETURN void #define glTexEnvxv_ARG_NAMES target, pname, params #define glTexEnvxv_ARG_EXPAND GLenum target, GLenum pname, const GLfixed * params #define glTexEnvxv_PACKED PACKED_void_GLenum_GLenum_const_GLfixed___GENPT__ #define glTexEnvxv_INDEXED INDEXED_void_GLenum_GLenum_const_GLfixed___GENPT__ #define glTexEnvxv_FORMAT FORMAT_void_GLenum_GLenum_const_GLfixed___GENPT__ -#define glTexGenfv_INDEX 155 +#define glTexGenfv_INDEX 157 #define glTexGenfv_RETURN void #define glTexGenfv_ARG_NAMES coord, pname, params #define glTexGenfv_ARG_EXPAND GLenum coord, GLenum pname, const GLfloat * params #define glTexGenfv_PACKED PACKED_void_GLenum_GLenum_const_GLfloat___GENPT__ #define glTexGenfv_INDEXED INDEXED_void_GLenum_GLenum_const_GLfloat___GENPT__ #define glTexGenfv_FORMAT FORMAT_void_GLenum_GLenum_const_GLfloat___GENPT__ -#define glTexGeni_INDEX 156 +#define glTexGeni_INDEX 158 #define glTexGeni_RETURN void #define glTexGeni_ARG_NAMES coord, pname, param #define glTexGeni_ARG_EXPAND GLenum coord, GLenum pname, GLint param #define glTexGeni_PACKED PACKED_void_GLenum_GLenum_GLint #define glTexGeni_INDEXED INDEXED_void_GLenum_GLenum_GLint #define glTexGeni_FORMAT FORMAT_void_GLenum_GLenum_GLint -#define glTexImage2D_INDEX 157 +#define glTexImage2D_INDEX 159 #define glTexImage2D_RETURN void #define glTexImage2D_ARG_NAMES target, level, internalformat, width, height, border, format, type, pixels #define glTexImage2D_ARG_EXPAND GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels #define glTexImage2D_PACKED PACKED_void_GLenum_GLint_GLint_GLsizei_GLsizei_GLint_GLenum_GLenum_const_GLvoid___GENPT__ #define glTexImage2D_INDEXED INDEXED_void_GLenum_GLint_GLint_GLsizei_GLsizei_GLint_GLenum_GLenum_const_GLvoid___GENPT__ #define glTexImage2D_FORMAT FORMAT_void_GLenum_GLint_GLint_GLsizei_GLsizei_GLint_GLenum_GLenum_const_GLvoid___GENPT__ -#define glTexParameterf_INDEX 158 +#define glTexParameterf_INDEX 160 #define glTexParameterf_RETURN void #define glTexParameterf_ARG_NAMES target, pname, param #define glTexParameterf_ARG_EXPAND GLenum target, GLenum pname, GLfloat param #define glTexParameterf_PACKED PACKED_void_GLenum_GLenum_GLfloat #define glTexParameterf_INDEXED INDEXED_void_GLenum_GLenum_GLfloat #define glTexParameterf_FORMAT FORMAT_void_GLenum_GLenum_GLfloat -#define glTexParameterfv_INDEX 159 +#define glTexParameterfv_INDEX 161 #define glTexParameterfv_RETURN void #define glTexParameterfv_ARG_NAMES target, pname, params #define glTexParameterfv_ARG_EXPAND GLenum target, GLenum pname, const GLfloat * params #define glTexParameterfv_PACKED PACKED_void_GLenum_GLenum_const_GLfloat___GENPT__ #define glTexParameterfv_INDEXED INDEXED_void_GLenum_GLenum_const_GLfloat___GENPT__ #define glTexParameterfv_FORMAT FORMAT_void_GLenum_GLenum_const_GLfloat___GENPT__ -#define glTexParameteri_INDEX 160 +#define glTexParameteri_INDEX 162 #define glTexParameteri_RETURN void #define glTexParameteri_ARG_NAMES target, pname, param #define glTexParameteri_ARG_EXPAND GLenum target, GLenum pname, GLint param #define glTexParameteri_PACKED PACKED_void_GLenum_GLenum_GLint #define glTexParameteri_INDEXED INDEXED_void_GLenum_GLenum_GLint #define glTexParameteri_FORMAT FORMAT_void_GLenum_GLenum_GLint -#define glTexParameteriv_INDEX 161 +#define glTexParameteriv_INDEX 163 #define glTexParameteriv_RETURN void #define glTexParameteriv_ARG_NAMES target, pname, params #define glTexParameteriv_ARG_EXPAND GLenum target, GLenum pname, const GLint * params #define glTexParameteriv_PACKED PACKED_void_GLenum_GLenum_const_GLint___GENPT__ #define glTexParameteriv_INDEXED INDEXED_void_GLenum_GLenum_const_GLint___GENPT__ #define glTexParameteriv_FORMAT FORMAT_void_GLenum_GLenum_const_GLint___GENPT__ -#define glTexParameterx_INDEX 162 +#define glTexParameterx_INDEX 164 #define glTexParameterx_RETURN void #define glTexParameterx_ARG_NAMES target, pname, param #define glTexParameterx_ARG_EXPAND GLenum target, GLenum pname, GLfixed param #define glTexParameterx_PACKED PACKED_void_GLenum_GLenum_GLfixed #define glTexParameterx_INDEXED INDEXED_void_GLenum_GLenum_GLfixed #define glTexParameterx_FORMAT FORMAT_void_GLenum_GLenum_GLfixed -#define glTexParameterxv_INDEX 163 +#define glTexParameterxv_INDEX 165 #define glTexParameterxv_RETURN void #define glTexParameterxv_ARG_NAMES target, pname, params #define glTexParameterxv_ARG_EXPAND GLenum target, GLenum pname, const GLfixed * params #define glTexParameterxv_PACKED PACKED_void_GLenum_GLenum_const_GLfixed___GENPT__ #define glTexParameterxv_INDEXED INDEXED_void_GLenum_GLenum_const_GLfixed___GENPT__ #define glTexParameterxv_FORMAT FORMAT_void_GLenum_GLenum_const_GLfixed___GENPT__ -#define glTexSubImage2D_INDEX 164 +#define glTexSubImage2D_INDEX 166 #define glTexSubImage2D_RETURN void #define glTexSubImage2D_ARG_NAMES target, level, xoffset, yoffset, width, height, format, type, pixels #define glTexSubImage2D_ARG_EXPAND GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * pixels #define glTexSubImage2D_PACKED PACKED_void_GLenum_GLint_GLint_GLint_GLsizei_GLsizei_GLenum_GLenum_const_GLvoid___GENPT__ #define glTexSubImage2D_INDEXED INDEXED_void_GLenum_GLint_GLint_GLint_GLsizei_GLsizei_GLenum_GLenum_const_GLvoid___GENPT__ #define glTexSubImage2D_FORMAT FORMAT_void_GLenum_GLint_GLint_GLint_GLsizei_GLsizei_GLenum_GLenum_const_GLvoid___GENPT__ -#define glTranslatef_INDEX 165 +#define glTranslatef_INDEX 167 #define glTranslatef_RETURN void #define glTranslatef_ARG_NAMES x, y, z #define glTranslatef_ARG_EXPAND GLfloat x, GLfloat y, GLfloat z #define glTranslatef_PACKED PACKED_void_GLfloat_GLfloat_GLfloat #define glTranslatef_INDEXED INDEXED_void_GLfloat_GLfloat_GLfloat #define glTranslatef_FORMAT FORMAT_void_GLfloat_GLfloat_GLfloat -#define glTranslatex_INDEX 166 +#define glTranslatex_INDEX 168 #define glTranslatex_RETURN void #define glTranslatex_ARG_NAMES x, y, z #define glTranslatex_ARG_EXPAND GLfixed x, GLfixed y, GLfixed z #define glTranslatex_PACKED PACKED_void_GLfixed_GLfixed_GLfixed #define glTranslatex_INDEXED INDEXED_void_GLfixed_GLfixed_GLfixed #define glTranslatex_FORMAT FORMAT_void_GLfixed_GLfixed_GLfixed -#define glVertexPointer_INDEX 167 +#define glVertexPointer_INDEX 169 #define glVertexPointer_RETURN void #define glVertexPointer_ARG_NAMES size, type, stride, pointer #define glVertexPointer_ARG_EXPAND GLint size, GLenum type, GLsizei stride, const GLvoid * pointer #define glVertexPointer_PACKED PACKED_void_GLint_GLenum_GLsizei_const_GLvoid___GENPT__ #define glVertexPointer_INDEXED INDEXED_void_GLint_GLenum_GLsizei_const_GLvoid___GENPT__ #define glVertexPointer_FORMAT FORMAT_void_GLint_GLenum_GLsizei_const_GLvoid___GENPT__ -#define glViewport_INDEX 168 +#define glViewport_INDEX 170 #define glViewport_RETURN void #define glViewport_ARG_NAMES x, y, width, height #define glViewport_ARG_EXPAND GLint x, GLint y, GLsizei width, GLsizei height @@ -2760,6 +2809,10 @@ void glshim_glMultMatrixf(glMultMatrixf_ARG_EXPAND); typedef void (*glMultMatrixf_PTR)(glMultMatrixf_ARG_EXPAND); void glshim_glMultMatrixx(glMultMatrixx_ARG_EXPAND); typedef void (*glMultMatrixx_PTR)(glMultMatrixx_ARG_EXPAND); +void glshim_glMultiDrawArrays(glMultiDrawArrays_ARG_EXPAND); +typedef void (*glMultiDrawArrays_PTR)(glMultiDrawArrays_ARG_EXPAND); +void glshim_glMultiDrawElements(glMultiDrawElements_ARG_EXPAND); +typedef void (*glMultiDrawElements_PTR)(glMultiDrawElements_ARG_EXPAND); void glshim_glMultiTexCoord4f(glMultiTexCoord4f_ARG_EXPAND); typedef void (*glMultiTexCoord4f_PTR)(glMultiTexCoord4f_ARG_EXPAND); void glshim_glMultiTexCoord4x(glMultiTexCoord4x_ARG_EXPAND); @@ -4071,6 +4124,31 @@ typedef void (*glViewport_PTR)(glViewport_ARG_EXPAND); glPushCall((void *)packed_data); \ } #endif +#ifndef direct_glMultiDrawArrays +#define push_glMultiDrawArrays(mode, first, count, primcount) { \ + glMultiDrawArrays_PACKED *packed_data = malloc(sizeof(glMultiDrawArrays_PACKED)); \ + packed_data->format = glMultiDrawArrays_FORMAT; \ + packed_data->func = glshim_glMultiDrawArrays; \ + packed_data->args.a1 = (GLenum)mode; \ + packed_data->args.a2 = (GLint *)first; \ + packed_data->args.a3 = (GLsizei *)count; \ + packed_data->args.a4 = (GLsizei)primcount; \ + glPushCall((void *)packed_data); \ +} +#endif +#ifndef direct_glMultiDrawElements +#define push_glMultiDrawElements(mode, count, type, indices, primcount) { \ + glMultiDrawElements_PACKED *packed_data = malloc(sizeof(glMultiDrawElements_PACKED)); \ + packed_data->format = glMultiDrawElements_FORMAT; \ + packed_data->func = glshim_glMultiDrawElements; \ + packed_data->args.a1 = (GLenum)mode; \ + packed_data->args.a2 = (GLsizei *)count; \ + packed_data->args.a3 = (GLenum)type; \ + packed_data->args.a4 = (void * *)indices; \ + packed_data->args.a5 = (GLsizei)primcount; \ + glPushCall((void *)packed_data); \ +} +#endif #ifndef direct_glMultiTexCoord4f #define push_glMultiTexCoord4f(target, s, t, r, q) { \ glMultiTexCoord4f_PACKED *packed_data = malloc(sizeof(glMultiTexCoord4f_PACKED)); \ diff --git a/project/jni/glshim/src/gl/wrap/glesext.c b/project/jni/glshim/src/gl/wrap/glesext.c index 794398631..0459a0d75 100755 --- a/project/jni/glshim/src/gl/wrap/glesext.c +++ b/project/jni/glshim/src/gl/wrap/glesext.c @@ -8,7 +8,7 @@ void glshim_glBindFramebuffer(GLenum target, GLuint framebuffer) { #endif gles_glBindFramebuffer(target, framebuffer); } -void glBindFramebuffer(GLenum target, GLuint framebuffer) __attribute__((alias("glshim_glBindFramebuffer"))); +void glBindFramebuffer(GLenum target, GLuint framebuffer) __attribute__((alias("glshim_glBindFramebuffer"))) __attribute__((visibility("default"))); #endif #ifndef skip_glBindRenderbuffer void glshim_glBindRenderbuffer(GLenum target, GLuint renderbuffer) { @@ -18,7 +18,7 @@ void glshim_glBindRenderbuffer(GLenum target, GLuint renderbuffer) { #endif gles_glBindRenderbuffer(target, renderbuffer); } -void glBindRenderbuffer(GLenum target, GLuint renderbuffer) __attribute__((alias("glshim_glBindRenderbuffer"))); +void glBindRenderbuffer(GLenum target, GLuint renderbuffer) __attribute__((alias("glshim_glBindRenderbuffer"))) __attribute__((visibility("default"))); #endif #ifndef skip_glBlendColor void glshim_glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { @@ -28,7 +28,7 @@ void glshim_glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf a #endif gles_glBlendColor(red, green, blue, alpha); } -void glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) __attribute__((alias("glshim_glBlendColor"))); +void glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) __attribute__((alias("glshim_glBlendColor"))) __attribute__((visibility("default"))); #endif #ifndef skip_glBlendEquation void glshim_glBlendEquation(GLenum mode) { @@ -38,7 +38,7 @@ void glshim_glBlendEquation(GLenum mode) { #endif gles_glBlendEquation(mode); } -void glBlendEquation(GLenum mode) __attribute__((alias("glshim_glBlendEquation"))); +void glBlendEquation(GLenum mode) __attribute__((alias("glshim_glBlendEquation"))) __attribute__((visibility("default"))); #endif #ifndef skip_glBlendEquationSeparate void glshim_glBlendEquationSeparate(GLenum modeRGB, GLenum modeA) { @@ -48,7 +48,7 @@ void glshim_glBlendEquationSeparate(GLenum modeRGB, GLenum modeA) { #endif gles_glBlendEquationSeparate(modeRGB, modeA); } -void glBlendEquationSeparate(GLenum modeRGB, GLenum modeA) __attribute__((alias("glshim_glBlendEquationSeparate"))); +void glBlendEquationSeparate(GLenum modeRGB, GLenum modeA) __attribute__((alias("glshim_glBlendEquationSeparate"))) __attribute__((visibility("default"))); #endif #ifndef skip_glBlendFuncSeparate void glshim_glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) { @@ -58,7 +58,7 @@ void glshim_glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfa #endif gles_glBlendFuncSeparate(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha); } -void glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) __attribute__((alias("glshim_glBlendFuncSeparate"))); +void glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) __attribute__((alias("glshim_glBlendFuncSeparate"))) __attribute__((visibility("default"))); #endif #ifndef skip_glCheckFramebufferStatus GLenum glshim_glCheckFramebufferStatus(GLenum target) { @@ -68,7 +68,7 @@ GLenum glshim_glCheckFramebufferStatus(GLenum target) { #endif return gles_glCheckFramebufferStatus(target); } -GLenum glCheckFramebufferStatus(GLenum target) __attribute__((alias("glshim_glCheckFramebufferStatus"))); +GLenum glCheckFramebufferStatus(GLenum target) __attribute__((alias("glshim_glCheckFramebufferStatus"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDeleteFramebuffers void glshim_glDeleteFramebuffers(GLsizei n, GLuint * framebuffers) { @@ -78,7 +78,7 @@ void glshim_glDeleteFramebuffers(GLsizei n, GLuint * framebuffers) { #endif gles_glDeleteFramebuffers(n, framebuffers); } -void glDeleteFramebuffers(GLsizei n, GLuint * framebuffers) __attribute__((alias("glshim_glDeleteFramebuffers"))); +void glDeleteFramebuffers(GLsizei n, GLuint * framebuffers) __attribute__((alias("glshim_glDeleteFramebuffers"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDeleteRenderbuffers void glshim_glDeleteRenderbuffers(GLsizei n, GLuint * renderbuffers) { @@ -88,7 +88,7 @@ void glshim_glDeleteRenderbuffers(GLsizei n, GLuint * renderbuffers) { #endif gles_glDeleteRenderbuffers(n, renderbuffers); } -void glDeleteRenderbuffers(GLsizei n, GLuint * renderbuffers) __attribute__((alias("glshim_glDeleteRenderbuffers"))); +void glDeleteRenderbuffers(GLsizei n, GLuint * renderbuffers) __attribute__((alias("glshim_glDeleteRenderbuffers"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDrawTexf void glshim_glDrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) { @@ -98,7 +98,7 @@ void glshim_glDrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat h #endif gles_glDrawTexf(x, y, z, width, height); } -void glDrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) __attribute__((alias("glshim_glDrawTexf"))); +void glDrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) __attribute__((alias("glshim_glDrawTexf"))) __attribute__((visibility("default"))); #endif #ifndef skip_glDrawTexi void glshim_glDrawTexi(GLint x, GLint y, GLint z, GLint width, GLint height) { @@ -108,7 +108,7 @@ void glshim_glDrawTexi(GLint x, GLint y, GLint z, GLint width, GLint height) { #endif gles_glDrawTexi(x, y, z, width, height); } -void glDrawTexi(GLint x, GLint y, GLint z, GLint width, GLint height) __attribute__((alias("glshim_glDrawTexi"))); +void glDrawTexi(GLint x, GLint y, GLint z, GLint width, GLint height) __attribute__((alias("glshim_glDrawTexi"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFramebufferRenderbuffer void glshim_glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) { @@ -118,7 +118,7 @@ void glshim_glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum r #endif gles_glFramebufferRenderbuffer(target, attachment, renderbuffertarget, renderbuffer); } -void glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) __attribute__((alias("glshim_glFramebufferRenderbuffer"))); +void glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) __attribute__((alias("glshim_glFramebufferRenderbuffer"))) __attribute__((visibility("default"))); #endif #ifndef skip_glFramebufferTexture2D void glshim_glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) { @@ -128,7 +128,7 @@ void glshim_glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum text #endif gles_glFramebufferTexture2D(target, attachment, textarget, texture, level); } -void glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) __attribute__((alias("glshim_glFramebufferTexture2D"))); +void glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) __attribute__((alias("glshim_glFramebufferTexture2D"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGenFramebuffers void glshim_glGenFramebuffers(GLsizei n, GLuint * ids) { @@ -138,7 +138,7 @@ void glshim_glGenFramebuffers(GLsizei n, GLuint * ids) { #endif gles_glGenFramebuffers(n, ids); } -void glGenFramebuffers(GLsizei n, GLuint * ids) __attribute__((alias("glshim_glGenFramebuffers"))); +void glGenFramebuffers(GLsizei n, GLuint * ids) __attribute__((alias("glshim_glGenFramebuffers"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGenRenderbuffers void glshim_glGenRenderbuffers(GLsizei n, GLuint * renderbuffers) { @@ -148,7 +148,7 @@ void glshim_glGenRenderbuffers(GLsizei n, GLuint * renderbuffers) { #endif gles_glGenRenderbuffers(n, renderbuffers); } -void glGenRenderbuffers(GLsizei n, GLuint * renderbuffers) __attribute__((alias("glshim_glGenRenderbuffers"))); +void glGenRenderbuffers(GLsizei n, GLuint * renderbuffers) __attribute__((alias("glshim_glGenRenderbuffers"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGenerateMipmap void glshim_glGenerateMipmap(GLenum target) { @@ -158,7 +158,7 @@ void glshim_glGenerateMipmap(GLenum target) { #endif gles_glGenerateMipmap(target); } -void glGenerateMipmap(GLenum target) __attribute__((alias("glshim_glGenerateMipmap"))); +void glGenerateMipmap(GLenum target) __attribute__((alias("glshim_glGenerateMipmap"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetFramebufferAttachmentParameteriv void glshim_glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint * params) { @@ -168,7 +168,7 @@ void glshim_glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachme #endif gles_glGetFramebufferAttachmentParameteriv(target, attachment, pname, params); } -void glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetFramebufferAttachmentParameteriv"))); +void glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetFramebufferAttachmentParameteriv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glGetRenderbufferParameteriv void glshim_glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint * params) { @@ -178,7 +178,7 @@ void glshim_glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint * pa #endif gles_glGetRenderbufferParameteriv(target, pname, params); } -void glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetRenderbufferParameteriv"))); +void glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetRenderbufferParameteriv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glIsFramebuffer GLboolean glshim_glIsFramebuffer(GLuint framebuffer) { @@ -188,7 +188,7 @@ GLboolean glshim_glIsFramebuffer(GLuint framebuffer) { #endif return gles_glIsFramebuffer(framebuffer); } -GLboolean glIsFramebuffer(GLuint framebuffer) __attribute__((alias("glshim_glIsFramebuffer"))); +GLboolean glIsFramebuffer(GLuint framebuffer) __attribute__((alias("glshim_glIsFramebuffer"))) __attribute__((visibility("default"))); #endif #ifndef skip_glIsRenderbuffer GLboolean glshim_glIsRenderbuffer(GLuint renderbuffer) { @@ -198,7 +198,27 @@ GLboolean glshim_glIsRenderbuffer(GLuint renderbuffer) { #endif return gles_glIsRenderbuffer(renderbuffer); } -GLboolean glIsRenderbuffer(GLuint renderbuffer) __attribute__((alias("glshim_glIsRenderbuffer"))); +GLboolean glIsRenderbuffer(GLuint renderbuffer) __attribute__((alias("glshim_glIsRenderbuffer"))) __attribute__((visibility("default"))); +#endif +#ifndef skip_glMultiDrawArrays +void glshim_glMultiDrawArrays(GLenum mode, const GLint * first, const GLsizei * count, GLsizei primcount) { + LOAD_GLES_OES(glMultiDrawArrays); +#ifndef direct_glMultiDrawArrays + PUSH_IF_COMPILING(glMultiDrawArrays) +#endif + gles_glMultiDrawArrays(mode, first, count, primcount); +} +void glMultiDrawArrays(GLenum mode, const GLint * first, const GLsizei * count, GLsizei primcount) __attribute__((alias("glshim_glMultiDrawArrays"))) __attribute__((visibility("default"))); +#endif +#ifndef skip_glMultiDrawElements +void glshim_glMultiDrawElements(GLenum mode, GLsizei * count, GLenum type, const void * const * indices, GLsizei primcount) { + LOAD_GLES_OES(glMultiDrawElements); +#ifndef direct_glMultiDrawElements + PUSH_IF_COMPILING(glMultiDrawElements) +#endif + gles_glMultiDrawElements(mode, count, type, indices, primcount); +} +void glMultiDrawElements(GLenum mode, GLsizei * count, GLenum type, const void * const * indices, GLsizei primcount) __attribute__((alias("glshim_glMultiDrawElements"))) __attribute__((visibility("default"))); #endif #ifndef skip_glRenderbufferStorage void glshim_glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) { @@ -208,7 +228,7 @@ void glshim_glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei #endif gles_glRenderbufferStorage(target, internalformat, width, height); } -void glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) __attribute__((alias("glshim_glRenderbufferStorage"))); +void glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) __attribute__((alias("glshim_glRenderbufferStorage"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexGenfv void glshim_glTexGenfv(GLenum coord, GLenum pname, const GLfloat * params) { @@ -218,7 +238,7 @@ void glshim_glTexGenfv(GLenum coord, GLenum pname, const GLfloat * params) { #endif gles_glTexGenfv(coord, pname, params); } -void glTexGenfv(GLenum coord, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexGenfv"))); +void glTexGenfv(GLenum coord, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexGenfv"))) __attribute__((visibility("default"))); #endif #ifndef skip_glTexGeni void glshim_glTexGeni(GLenum coord, GLenum pname, GLint param) { @@ -228,6 +248,6 @@ void glshim_glTexGeni(GLenum coord, GLenum pname, GLint param) { #endif gles_glTexGeni(coord, pname, param); } -void glTexGeni(GLenum coord, GLenum pname, GLint param) __attribute__((alias("glshim_glTexGeni"))); +void glTexGeni(GLenum coord, GLenum pname, GLint param) __attribute__((alias("glshim_glTexGeni"))) __attribute__((visibility("default"))); #endif #endif diff --git a/project/jni/glshim/src/gl/wrap/glstub.c b/project/jni/glshim/src/gl/wrap/glstub.c index e7d1e46a2..a6255459c 100755 --- a/project/jni/glshim/src/gl/wrap/glstub.c +++ b/project/jni/glshim/src/gl/wrap/glstub.c @@ -6,7 +6,7 @@ ret glshim_ ## def args {\ if (debug && strcmp(debug, "1") == 0)\ printf("stub: %s;\n", #def);\ } \ -ret def args __attribute((alias("glshim_"#def))); +ret def args __attribute((alias("glshim_"#def))) __attribute__((visibility("default"))); STUB(void,glFogCoordd,(GLdouble coord)); STUB(void,glFogCoordf,(GLfloat coord)); diff --git a/project/jni/glshim/src/glx/glesfuncs.inc b/project/jni/glshim/src/glx/glesfuncs.inc index 230cf9f06..93ffba5d1 100755 --- a/project/jni/glshim/src/glx/glesfuncs.inc +++ b/project/jni/glshim/src/glx/glesfuncs.inc @@ -5,7 +5,7 @@ _EX(glBindBuffer); _EX(glBindFramebuffer); _EX(glBindRenderbuffer); _EX(glBindTexture); -//_EX(glBlendColor); +_EX(glBlendColor); _EX(glBlendEquation); _EX(glBlendEquationSeparate); _EX(glBlendFunc); @@ -113,6 +113,8 @@ _EX(glMaterialxv); _EX(glMatrixMode); _EX(glMultMatrixf); _EX(glMultMatrixx); +_EX(glMultiDrawArrays); +_EX(glMultiDrawElements); _EX(glMultiTexCoord4f); _EX(glMultiTexCoord4x); _EX(glNormal3f); diff --git a/project/jni/glshim/src/glx/glx.c b/project/jni/glshim/src/glx/glx.c index 17179c140..ce32430f2 100755 --- a/project/jni/glshim/src/glx/glx.c +++ b/project/jni/glshim/src/glx/glx.c @@ -24,6 +24,8 @@ #include "../gl/gl.h" #include "../glx/streaming.h" +#define EXPORT __attribute__((visibility("default"))) + #ifndef EGL_GL_COLORSPACE_KHR #define EGL_GL_COLORSPACE_KHR 0x309D #define EGL_GL_COLORSPACE_SRGB_KHR 0x3089 @@ -516,7 +518,7 @@ static void scan_env() { printf("LIBGL: Current folder is:%s\n", cwd); } #ifndef ANDROID -GLXContext glXCreateContext(Display *display, +EXPORT GLXContext glXCreateContext(Display *display, XVisualInfo *visual, GLXContext shareList, Bool isDirect) { @@ -660,13 +662,13 @@ GLXContext glXCreateContext(Display *display, return fake; } -GLXContext glXCreateContextAttribsARB(Display *display, void *config, +EXPORT GLXContext glXCreateContextAttribsARB(Display *display, void *config, GLXContext share_context, Bool direct, const int *attrib_list) { return glXCreateContext(display, NULL, NULL, direct); } -void glXDestroyContext(Display *display, GLXContext ctx) { +EXPORT void glXDestroyContext(Display *display, GLXContext ctx) { //printf("glXDestroyContext(%p, %p)\n", display, ctx); if (g_usefb) { if (fbcontext_count==0) @@ -706,7 +708,7 @@ void glXDestroyContext(Display *display, GLXContext ctx) { return; } -Display *glXGetCurrentDisplay() { +EXPORT Display *glXGetCurrentDisplay() { if (!g_usefb) return XOpenDisplay(NULL); else @@ -716,7 +718,7 @@ Display *glXGetCurrentDisplay() { return XOpenDisplay(NULL); } -XVisualInfo *glXChooseVisual(Display *display, +EXPORT XVisualInfo *glXChooseVisual(Display *display, int screen, int *attributes) { @@ -746,7 +748,7 @@ EGL_NO_SURFACE, or if draw or read are set to EGL_NO_SURFACE and context is not set to EGL_NO_CONTEXT. */ -Bool glXMakeCurrent(Display *display, +EXPORT Bool glXMakeCurrent(Display *display, GLXDrawable drawable, GLXContext context) { //printf("glXMakeCurrent(%p, %p, %p)\n", display, drawable, context); @@ -826,12 +828,12 @@ Bool glXMakeCurrent(Display *display, return false; } -Bool glXMakeContextCurrent(Display *display, int drawable, +EXPORT Bool glXMakeContextCurrent(Display *display, int drawable, int readable, GLXContext context) { return glXMakeCurrent(display, drawable, context); } -void glXSwapBuffers(Display *display, +EXPORT void glXSwapBuffers(Display *display, int drawable) { static int frames = 0; @@ -901,14 +903,14 @@ void glXSwapBuffers(Display *display, } } -int glXGetConfig(Display *display, +EXPORT int glXGetConfig(Display *display, XVisualInfo *visual, int attribute, int *value) { return get_config_default(attribute, value); } -const char *glXQueryExtensionsString(Display *display, int screen) { +EXPORT const char *glXQueryExtensionsString(Display *display, int screen) { const char *extensions = { "GLX_ARB_create_context " "GLX_ARB_create_context_profile " @@ -918,11 +920,11 @@ const char *glXQueryExtensionsString(Display *display, int screen) { return extensions; } -const char *glXQueryServerString(Display *display, int screen, int name) { +EXPORT const char *glXQueryServerString(Display *display, int screen, int name) { return ""; } -Bool glXQueryExtension(Display *display, int *errorBase, int *eventBase) { +EXPORT Bool glXQueryExtension(Display *display, int *errorBase, int *eventBase) { if (errorBase) *errorBase = 0; @@ -932,14 +934,14 @@ Bool glXQueryExtension(Display *display, int *errorBase, int *eventBase) { return true; } -Bool glXQueryVersion(Display *display, int *major, int *minor) { +EXPORT Bool glXQueryVersion(Display *display, int *major, int *minor) { // TODO: figure out which version we want to pretend to implement *major = 1; *minor = 4; return true; } -const char *glXGetClientString(Display *display, int name) { +EXPORT const char *glXGetClientString(Display *display, int name) { // TODO: return actual data here switch (name) { case GLX_VENDOR: return "ptitSeb"; @@ -949,7 +951,7 @@ const char *glXGetClientString(Display *display, int name) { return ""; } -int glXQueryContext( Display *dpy, GLXContext ctx, int attribute, int *value ){ +EXPORT int glXQueryContext( Display *dpy, GLXContext ctx, int attribute, int *value ){ *value=0; if (ctx) switch (attribute) { case GLX_FBCONFIG_ID: *value=ctx->xid; break; @@ -960,13 +962,13 @@ int glXQueryContext( Display *dpy, GLXContext ctx, int attribute, int *value ){ } /* -void glXQueryDrawable( Display *dpy, int draw, int attribute, +EXPORT void glXQueryDrawable( Display *dpy, int draw, int attribute, unsigned int *value ) { *value=0; } */ // stubs for glfw (GLX 1.3) -GLXContext glXGetCurrentContext() { +EXPORT GLXContext glXGetCurrentContext() { // hack to make some games start if (g_usefb) return glxContext ? glxContext : fbContext; @@ -974,28 +976,28 @@ GLXContext glXGetCurrentContext() { return glxContext; } -GLXFBConfig *glXChooseFBConfig(Display *display, int screen, +EXPORT GLXFBConfig *glXChooseFBConfig(Display *display, int screen, const int *attrib_list, int *count) { *count = 1; GLXFBConfig *configs = malloc(sizeof(GLXFBConfig) * *count); return configs; } -GLXFBConfig *glXChooseFBConfigSGIX(Display *display, int screen, +EXPORT GLXFBConfig *glXChooseFBConfigSGIX(Display *display, int screen, const int *attrib_list, int *count) { return glXChooseFBConfig(display, screen, attrib_list, count); } -GLXFBConfig *glXGetFBConfigs(Display *display, int screen, int *count) { +EXPORT GLXFBConfig *glXGetFBConfigs(Display *display, int screen, int *count) { *count = 1; GLXFBConfig *configs = malloc(sizeof(GLXFBConfig) * *count); return configs; } -int glXGetFBConfigAttrib(Display *display, GLXFBConfig config, int attribute, int *value) { +EXPORT int glXGetFBConfigAttrib(Display *display, GLXFBConfig config, int attribute, int *value) { return get_config_default(attribute, value); } -XVisualInfo *glXGetVisualFromFBConfig(Display *display, GLXFBConfig config) { +EXPORT XVisualInfo *glXGetVisualFromFBConfig(Display *display, GLXFBConfig config) { /*if (g_display == NULL) { g_display = XOpenDisplay(NULL); }*/ @@ -1006,13 +1008,14 @@ XVisualInfo *glXGetVisualFromFBConfig(Display *display, GLXFBConfig config) { return visual; } -GLXContext glXCreateNewContext(Display *display, GLXFBConfig config, +EXPORT GLXContext glXCreateNewContext(Display *display, GLXFBConfig config, int render_type, GLXContext share_list, Bool is_direct) { +printf("glXCreateNewContext(%p, %p, %d, %p, %i)\n", display, config, render_type, share_list, is_direct); return glXCreateContext(display, 0, share_list, is_direct); } #endif //ANDROID -void glXSwapIntervalMESA(int interval) { +EXPORT void glXSwapIntervalMESA(int interval) { printf("glXSwapInterval(%i)\n", interval); #ifdef USE_FBIO if (! g_vsync) @@ -1024,37 +1027,37 @@ void glXSwapIntervalMESA(int interval) { #endif } -void glXSwapIntervalSGI(int interval) { +EXPORT void glXSwapIntervalSGI(int interval) { glXSwapIntervalMESA(interval); } #ifndef ANDROID -void glXSwapIntervalEXT(Display *display, int drawable, int interval) { +EXPORT void glXSwapIntervalEXT(Display *display, int drawable, int interval) { glXSwapIntervalMESA(interval); } // misc stubs -void glXCopyContext(Display *display, GLXContext src, GLXContext dst, GLuint mask) { +EXPORT void glXCopyContext(Display *display, GLXContext src, GLXContext dst, GLuint mask) { // mask is ignored for now, but should include glPushAttrib / glPopAttrib memcpy(dst, src, sizeof(struct __GLXContextRec)); } -void glXCreateGLXPixmap(Display *display, XVisualInfo * visual, Pixmap pixmap) {} // should return GLXPixmap -void glXDestroyGLXPixmap(Display *display, void *pixmap) {} // really wants a GLXpixmap -Window glXCreateWindow(Display *display, GLXFBConfig config, Window win, int *attrib_list) {return win;} // should return GLXWindow -void glXDestroyWindow(Display *display, void *win) {} // really wants a GLXWindow +EXPORT void glXCreateGLXPixmap(Display *display, XVisualInfo * visual, Pixmap pixmap) {} // should return GLXPixmap +EXPORT void glXDestroyGLXPixmap(Display *display, void *pixmap) {} // really wants a GLXpixmap +EXPORT Window glXCreateWindow(Display *display, GLXFBConfig config, Window win, int *attrib_list) {return win;} // should return GLXWindow +EXPORT void glXDestroyWindow(Display *display, void *win) {} // really wants a GLXWindow -GLXDrawable glXGetCurrentDrawable() { +EXPORT GLXDrawable glXGetCurrentDrawable() { if (glxContext) return glxContext->drawable; else return 0; } // this should actually return GLXDrawable. -Bool glXIsDirect(Display * display, GLXContext ctx) { +EXPORT Bool glXIsDirect(Display * display, GLXContext ctx) { return true; } -void glXUseXFont(Font font, int first, int count, int listBase) { +EXPORT void glXUseXFont(Font font, int first, int count, int listBase) { /* Mostly from MesaGL-9.0.1 * */ @@ -1181,12 +1184,12 @@ void glXUseXFont(Font font, int first, int count, int listBase) { // All done } #endif //ANDROID -void glXWaitGL() {} -void glXWaitX() {} -void glXReleaseBuffersMESA() {} +EXPORT void glXWaitGL() {} +EXPORT void glXWaitX() {} +EXPORT void glXReleaseBuffersMESA() {} #ifndef ANDROID /* TODO proper implementation */ -int glXQueryDrawable(Display *dpy, GLXDrawable draw, int attribute, unsigned int *value) { +EXPORT int glXQueryDrawable(Display *dpy, GLXDrawable draw, int attribute, unsigned int *value) { *value = 0; switch(attribute) { case GLX_WIDTH: @@ -1206,10 +1209,10 @@ int glXQueryDrawable(Display *dpy, GLXDrawable draw, int attribute, unsigned int return 0; } -void glXDestroyPbuffer(Display * dpy, GLXPbuffer pbuf) { +EXPORT void glXDestroyPbuffer(Display * dpy, GLXPbuffer pbuf) { printf("LIBGL: Warning, stub glxDestroyPBuffer called\n"); } -GLXPbuffer glXCreatePbuffer(Display * dpy, GLXFBConfig config, const int * attrib_list) { +EXPORT GLXPbuffer glXCreatePbuffer(Display * dpy, GLXFBConfig config, const int * attrib_list) { printf("LIBGL: Warning, stub glxCreatePBuffer called\n"); return 0; } diff --git a/project/jni/glshim/src/glx/lookup.c b/project/jni/glshim/src/glx/lookup.c index 375d68ac3..606c2a922 100755 --- a/project/jni/glshim/src/glx/lookup.c +++ b/project/jni/glshim/src/glx/lookup.c @@ -4,6 +4,9 @@ #include "glx.h" #include "../gl/directstate.h" + +#define EXPORT __attribute__((visibility("default"))) + //#define DEBUG_ADDRESS extern int export_blendcolor; @@ -42,7 +45,8 @@ void glXStub(void *x, ...) { return; } -void *glXGetProcAddressARB(const char *name) { + +EXPORT void *glXGetProcAddressARB(const char *name) { LOAD_EGL(eglGetProcAddress); #ifdef DEBUG_ADDRESS static int cnt = 0; @@ -494,6 +498,14 @@ void *glXGetProcAddressARB(const char *name) { _EX(glPixelStoref); STUB(glPrioritizeTextures); STUB(glSelectBuffer); //TODO + + _EX(glMultiDrawArrays); + _EXT(glMultiDrawArrays); + _EX(glMultiDrawElements); + _EXT(glMultiDrawElements); + + _EX(glPointParameteri); + _EX(glPointParameteriv); STUB(glFogCoordPointer); /*STUB(glEdgeFlagPointerEXT); @@ -607,6 +619,6 @@ void *glXGetProcAddressARB(const char *name) { return NULL; } -void *glXGetProcAddress(const char *name) { +EXPORT void *glXGetProcAddress(const char *name) { return glXGetProcAddressARB(name); } diff --git a/project/jni/glshim/src/proxy/client/src/client.c b/project/jni/glshim/src/proxy/client/src/client.c index d0f2da761..6b1c69445 100644 --- a/project/jni/glshim/src/proxy/client/src/client.c +++ b/project/jni/glshim/src/proxy/client/src/client.c @@ -7,7 +7,7 @@ void glshim_glAccum(GLenum op, GLfloat value) { packed_data.args.a2 = (GLfloat)value; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glAccum(GLenum op, GLfloat value) __attribute__((alias("glshim_glAccum"))); +void glAccum(GLenum op, GLfloat value) __attribute__((alias("glshim_glAccum"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glActiveTexture) && !defined(skip_index_glActiveTexture) void glshim_glActiveTexture(GLenum texture) { @@ -16,7 +16,7 @@ void glshim_glActiveTexture(GLenum texture) { packed_data.args.a1 = (GLenum)texture; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glActiveTexture(GLenum texture) __attribute__((alias("glshim_glActiveTexture"))); +void glActiveTexture(GLenum texture) __attribute__((alias("glshim_glActiveTexture"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glAlphaFunc) && !defined(skip_index_glAlphaFunc) void glshim_glAlphaFunc(GLenum func, GLfloat ref) { @@ -26,7 +26,7 @@ void glshim_glAlphaFunc(GLenum func, GLfloat ref) { packed_data.args.a2 = (GLfloat)ref; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glAlphaFunc(GLenum func, GLfloat ref) __attribute__((alias("glshim_glAlphaFunc"))); +void glAlphaFunc(GLenum func, GLfloat ref) __attribute__((alias("glshim_glAlphaFunc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glAreTexturesResident) && !defined(skip_index_glAreTexturesResident) GLboolean glshim_glAreTexturesResident(GLsizei n, const GLuint * textures, GLboolean * residences) { @@ -39,7 +39,7 @@ GLboolean glshim_glAreTexturesResident(GLsizei n, const GLuint * textures, GLboo syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLboolean glAreTexturesResident(GLsizei n, const GLuint * textures, GLboolean * residences) __attribute__((alias("glshim_glAreTexturesResident"))); +GLboolean glAreTexturesResident(GLsizei n, const GLuint * textures, GLboolean * residences) __attribute__((alias("glshim_glAreTexturesResident"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glArrayElement) && !defined(skip_index_glArrayElement) void glshim_glArrayElement(GLint i) { @@ -48,7 +48,7 @@ void glshim_glArrayElement(GLint i) { packed_data.args.a1 = (GLint)i; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glArrayElement(GLint i) __attribute__((alias("glshim_glArrayElement"))); +void glArrayElement(GLint i) __attribute__((alias("glshim_glArrayElement"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBegin) && !defined(skip_index_glBegin) void glshim_glBegin(GLenum mode) { @@ -57,7 +57,7 @@ void glshim_glBegin(GLenum mode) { packed_data.args.a1 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBegin(GLenum mode) __attribute__((alias("glshim_glBegin"))); +void glBegin(GLenum mode) __attribute__((alias("glshim_glBegin"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBeginQuery) && !defined(skip_index_glBeginQuery) void glshim_glBeginQuery(GLenum target, GLuint id) { @@ -67,7 +67,7 @@ void glshim_glBeginQuery(GLenum target, GLuint id) { packed_data.args.a2 = (GLuint)id; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBeginQuery(GLenum target, GLuint id) __attribute__((alias("glshim_glBeginQuery"))); +void glBeginQuery(GLenum target, GLuint id) __attribute__((alias("glshim_glBeginQuery"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBindBuffer) && !defined(skip_index_glBindBuffer) void glshim_glBindBuffer(GLenum target, GLuint buffer) { @@ -77,7 +77,7 @@ void glshim_glBindBuffer(GLenum target, GLuint buffer) { packed_data.args.a2 = (GLuint)buffer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBindBuffer(GLenum target, GLuint buffer) __attribute__((alias("glshim_glBindBuffer"))); +void glBindBuffer(GLenum target, GLuint buffer) __attribute__((alias("glshim_glBindBuffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBindTexture) && !defined(skip_index_glBindTexture) void glshim_glBindTexture(GLenum target, GLuint texture) { @@ -87,7 +87,7 @@ void glshim_glBindTexture(GLenum target, GLuint texture) { packed_data.args.a2 = (GLuint)texture; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBindTexture(GLenum target, GLuint texture) __attribute__((alias("glshim_glBindTexture"))); +void glBindTexture(GLenum target, GLuint texture) __attribute__((alias("glshim_glBindTexture"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBitmap) && !defined(skip_index_glBitmap) void glshim_glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte * bitmap) { @@ -102,7 +102,7 @@ void glshim_glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig packed_data.args.a7 = (GLubyte *)bitmap; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte * bitmap) __attribute__((alias("glshim_glBitmap"))); +void glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte * bitmap) __attribute__((alias("glshim_glBitmap"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBlendColor) && !defined(skip_index_glBlendColor) void glshim_glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { @@ -114,7 +114,7 @@ void glshim_glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha packed_data.args.a4 = (GLfloat)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glBlendColor"))); +void glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glBlendColor"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBlendEquation) && !defined(skip_index_glBlendEquation) void glshim_glBlendEquation(GLenum mode) { @@ -123,7 +123,7 @@ void glshim_glBlendEquation(GLenum mode) { packed_data.args.a1 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBlendEquation(GLenum mode) __attribute__((alias("glshim_glBlendEquation"))); +void glBlendEquation(GLenum mode) __attribute__((alias("glshim_glBlendEquation"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBlendFunc) && !defined(skip_index_glBlendFunc) void glshim_glBlendFunc(GLenum sfactor, GLenum dfactor) { @@ -133,7 +133,7 @@ void glshim_glBlendFunc(GLenum sfactor, GLenum dfactor) { packed_data.args.a2 = (GLenum)dfactor; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBlendFunc(GLenum sfactor, GLenum dfactor) __attribute__((alias("glshim_glBlendFunc"))); +void glBlendFunc(GLenum sfactor, GLenum dfactor) __attribute__((alias("glshim_glBlendFunc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBlendFuncSeparate) && !defined(skip_index_glBlendFuncSeparate) void glshim_glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) { @@ -145,7 +145,7 @@ void glshim_glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfa packed_data.args.a4 = (GLenum)dfactorAlpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) __attribute__((alias("glshim_glBlendFuncSeparate"))); +void glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) __attribute__((alias("glshim_glBlendFuncSeparate"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBufferData) && !defined(skip_index_glBufferData) void glshim_glBufferData(GLenum target, GLsizeiptr size, const GLvoid * data, GLenum usage) { @@ -157,7 +157,7 @@ void glshim_glBufferData(GLenum target, GLsizeiptr size, const GLvoid * data, GL packed_data.args.a4 = (GLenum)usage; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBufferData(GLenum target, GLsizeiptr size, const GLvoid * data, GLenum usage) __attribute__((alias("glshim_glBufferData"))); +void glBufferData(GLenum target, GLsizeiptr size, const GLvoid * data, GLenum usage) __attribute__((alias("glshim_glBufferData"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glBufferSubData) && !defined(skip_index_glBufferSubData) void glshim_glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data) { @@ -169,7 +169,7 @@ void glshim_glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, con packed_data.args.a4 = (GLvoid *)data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data) __attribute__((alias("glshim_glBufferSubData"))); +void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data) __attribute__((alias("glshim_glBufferSubData"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCallList) && !defined(skip_index_glCallList) void glshim_glCallList(GLuint list) { @@ -178,7 +178,7 @@ void glshim_glCallList(GLuint list) { packed_data.args.a1 = (GLuint)list; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCallList(GLuint list) __attribute__((alias("glshim_glCallList"))); +void glCallList(GLuint list) __attribute__((alias("glshim_glCallList"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCallLists) && !defined(skip_index_glCallLists) void glshim_glCallLists(GLsizei n, GLenum type, const GLvoid * lists) { @@ -189,7 +189,7 @@ void glshim_glCallLists(GLsizei n, GLenum type, const GLvoid * lists) { packed_data.args.a3 = (GLvoid *)lists; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCallLists(GLsizei n, GLenum type, const GLvoid * lists) __attribute__((alias("glshim_glCallLists"))); +void glCallLists(GLsizei n, GLenum type, const GLvoid * lists) __attribute__((alias("glshim_glCallLists"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glClear) && !defined(skip_index_glClear) void glshim_glClear(GLbitfield mask) { @@ -198,7 +198,7 @@ void glshim_glClear(GLbitfield mask) { packed_data.args.a1 = (GLbitfield)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glClear(GLbitfield mask) __attribute__((alias("glshim_glClear"))); +void glClear(GLbitfield mask) __attribute__((alias("glshim_glClear"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glClearAccum) && !defined(skip_index_glClearAccum) void glshim_glClearAccum(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { @@ -210,7 +210,7 @@ void glshim_glClearAccum(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha packed_data.args.a4 = (GLfloat)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glClearAccum(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glClearAccum"))); +void glClearAccum(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glClearAccum"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glClearColor) && !defined(skip_index_glClearColor) void glshim_glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { @@ -222,7 +222,7 @@ void glshim_glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha packed_data.args.a4 = (GLfloat)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glClearColor"))); +void glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glClearColor"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glClearDepth) && !defined(skip_index_glClearDepth) void glshim_glClearDepth(GLdouble depth) { @@ -231,7 +231,7 @@ void glshim_glClearDepth(GLdouble depth) { packed_data.args.a1 = (GLdouble)depth; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glClearDepth(GLdouble depth) __attribute__((alias("glshim_glClearDepth"))); +void glClearDepth(GLdouble depth) __attribute__((alias("glshim_glClearDepth"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glClearIndex) && !defined(skip_index_glClearIndex) void glshim_glClearIndex(GLfloat c) { @@ -240,7 +240,7 @@ void glshim_glClearIndex(GLfloat c) { packed_data.args.a1 = (GLfloat)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glClearIndex(GLfloat c) __attribute__((alias("glshim_glClearIndex"))); +void glClearIndex(GLfloat c) __attribute__((alias("glshim_glClearIndex"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glClearStencil) && !defined(skip_index_glClearStencil) void glshim_glClearStencil(GLint s) { @@ -249,7 +249,7 @@ void glshim_glClearStencil(GLint s) { packed_data.args.a1 = (GLint)s; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glClearStencil(GLint s) __attribute__((alias("glshim_glClearStencil"))); +void glClearStencil(GLint s) __attribute__((alias("glshim_glClearStencil"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glClientActiveTexture) && !defined(skip_index_glClientActiveTexture) void glshim_glClientActiveTexture(GLenum texture) { @@ -258,7 +258,7 @@ void glshim_glClientActiveTexture(GLenum texture) { packed_data.args.a1 = (GLenum)texture; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glClientActiveTexture(GLenum texture) __attribute__((alias("glshim_glClientActiveTexture"))); +void glClientActiveTexture(GLenum texture) __attribute__((alias("glshim_glClientActiveTexture"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glClipPlane) && !defined(skip_index_glClipPlane) void glshim_glClipPlane(GLenum plane, const GLdouble * equation) { @@ -268,7 +268,7 @@ void glshim_glClipPlane(GLenum plane, const GLdouble * equation) { packed_data.args.a2 = (GLdouble *)equation; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glClipPlane(GLenum plane, const GLdouble * equation) __attribute__((alias("glshim_glClipPlane"))); +void glClipPlane(GLenum plane, const GLdouble * equation) __attribute__((alias("glshim_glClipPlane"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3b) && !defined(skip_index_glColor3b) void glshim_glColor3b(GLbyte red, GLbyte green, GLbyte blue) { @@ -279,7 +279,7 @@ void glshim_glColor3b(GLbyte red, GLbyte green, GLbyte blue) { packed_data.args.a3 = (GLbyte)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3b(GLbyte red, GLbyte green, GLbyte blue) __attribute__((alias("glshim_glColor3b"))); +void glColor3b(GLbyte red, GLbyte green, GLbyte blue) __attribute__((alias("glshim_glColor3b"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3bv) && !defined(skip_index_glColor3bv) void glshim_glColor3bv(const GLbyte * v) { @@ -288,7 +288,7 @@ void glshim_glColor3bv(const GLbyte * v) { packed_data.args.a1 = (GLbyte *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3bv(const GLbyte * v) __attribute__((alias("glshim_glColor3bv"))); +void glColor3bv(const GLbyte * v) __attribute__((alias("glshim_glColor3bv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3d) && !defined(skip_index_glColor3d) void glshim_glColor3d(GLdouble red, GLdouble green, GLdouble blue) { @@ -299,7 +299,7 @@ void glshim_glColor3d(GLdouble red, GLdouble green, GLdouble blue) { packed_data.args.a3 = (GLdouble)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3d(GLdouble red, GLdouble green, GLdouble blue) __attribute__((alias("glshim_glColor3d"))); +void glColor3d(GLdouble red, GLdouble green, GLdouble blue) __attribute__((alias("glshim_glColor3d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3dv) && !defined(skip_index_glColor3dv) void glshim_glColor3dv(const GLdouble * v) { @@ -308,7 +308,7 @@ void glshim_glColor3dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3dv(const GLdouble * v) __attribute__((alias("glshim_glColor3dv"))); +void glColor3dv(const GLdouble * v) __attribute__((alias("glshim_glColor3dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3f) && !defined(skip_index_glColor3f) void glshim_glColor3f(GLfloat red, GLfloat green, GLfloat blue) { @@ -319,7 +319,7 @@ void glshim_glColor3f(GLfloat red, GLfloat green, GLfloat blue) { packed_data.args.a3 = (GLfloat)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3f(GLfloat red, GLfloat green, GLfloat blue) __attribute__((alias("glshim_glColor3f"))); +void glColor3f(GLfloat red, GLfloat green, GLfloat blue) __attribute__((alias("glshim_glColor3f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3fv) && !defined(skip_index_glColor3fv) void glshim_glColor3fv(const GLfloat * v) { @@ -328,7 +328,7 @@ void glshim_glColor3fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3fv(const GLfloat * v) __attribute__((alias("glshim_glColor3fv"))); +void glColor3fv(const GLfloat * v) __attribute__((alias("glshim_glColor3fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3i) && !defined(skip_index_glColor3i) void glshim_glColor3i(GLint red, GLint green, GLint blue) { @@ -339,7 +339,7 @@ void glshim_glColor3i(GLint red, GLint green, GLint blue) { packed_data.args.a3 = (GLint)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3i(GLint red, GLint green, GLint blue) __attribute__((alias("glshim_glColor3i"))); +void glColor3i(GLint red, GLint green, GLint blue) __attribute__((alias("glshim_glColor3i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3iv) && !defined(skip_index_glColor3iv) void glshim_glColor3iv(const GLint * v) { @@ -348,7 +348,7 @@ void glshim_glColor3iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3iv(const GLint * v) __attribute__((alias("glshim_glColor3iv"))); +void glColor3iv(const GLint * v) __attribute__((alias("glshim_glColor3iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3s) && !defined(skip_index_glColor3s) void glshim_glColor3s(GLshort red, GLshort green, GLshort blue) { @@ -359,7 +359,7 @@ void glshim_glColor3s(GLshort red, GLshort green, GLshort blue) { packed_data.args.a3 = (GLshort)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3s(GLshort red, GLshort green, GLshort blue) __attribute__((alias("glshim_glColor3s"))); +void glColor3s(GLshort red, GLshort green, GLshort blue) __attribute__((alias("glshim_glColor3s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3sv) && !defined(skip_index_glColor3sv) void glshim_glColor3sv(const GLshort * v) { @@ -368,7 +368,7 @@ void glshim_glColor3sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3sv(const GLshort * v) __attribute__((alias("glshim_glColor3sv"))); +void glColor3sv(const GLshort * v) __attribute__((alias("glshim_glColor3sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3ub) && !defined(skip_index_glColor3ub) void glshim_glColor3ub(GLubyte red, GLubyte green, GLubyte blue) { @@ -379,7 +379,7 @@ void glshim_glColor3ub(GLubyte red, GLubyte green, GLubyte blue) { packed_data.args.a3 = (GLubyte)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3ub(GLubyte red, GLubyte green, GLubyte blue) __attribute__((alias("glshim_glColor3ub"))); +void glColor3ub(GLubyte red, GLubyte green, GLubyte blue) __attribute__((alias("glshim_glColor3ub"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3ubv) && !defined(skip_index_glColor3ubv) void glshim_glColor3ubv(const GLubyte * v) { @@ -388,7 +388,7 @@ void glshim_glColor3ubv(const GLubyte * v) { packed_data.args.a1 = (GLubyte *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3ubv(const GLubyte * v) __attribute__((alias("glshim_glColor3ubv"))); +void glColor3ubv(const GLubyte * v) __attribute__((alias("glshim_glColor3ubv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3ui) && !defined(skip_index_glColor3ui) void glshim_glColor3ui(GLuint red, GLuint green, GLuint blue) { @@ -399,7 +399,7 @@ void glshim_glColor3ui(GLuint red, GLuint green, GLuint blue) { packed_data.args.a3 = (GLuint)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3ui(GLuint red, GLuint green, GLuint blue) __attribute__((alias("glshim_glColor3ui"))); +void glColor3ui(GLuint red, GLuint green, GLuint blue) __attribute__((alias("glshim_glColor3ui"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3uiv) && !defined(skip_index_glColor3uiv) void glshim_glColor3uiv(const GLuint * v) { @@ -408,7 +408,7 @@ void glshim_glColor3uiv(const GLuint * v) { packed_data.args.a1 = (GLuint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3uiv(const GLuint * v) __attribute__((alias("glshim_glColor3uiv"))); +void glColor3uiv(const GLuint * v) __attribute__((alias("glshim_glColor3uiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3us) && !defined(skip_index_glColor3us) void glshim_glColor3us(GLushort red, GLushort green, GLushort blue) { @@ -419,7 +419,7 @@ void glshim_glColor3us(GLushort red, GLushort green, GLushort blue) { packed_data.args.a3 = (GLushort)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3us(GLushort red, GLushort green, GLushort blue) __attribute__((alias("glshim_glColor3us"))); +void glColor3us(GLushort red, GLushort green, GLushort blue) __attribute__((alias("glshim_glColor3us"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor3usv) && !defined(skip_index_glColor3usv) void glshim_glColor3usv(const GLushort * v) { @@ -428,7 +428,7 @@ void glshim_glColor3usv(const GLushort * v) { packed_data.args.a1 = (GLushort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor3usv(const GLushort * v) __attribute__((alias("glshim_glColor3usv"))); +void glColor3usv(const GLushort * v) __attribute__((alias("glshim_glColor3usv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4b) && !defined(skip_index_glColor4b) void glshim_glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha) { @@ -440,7 +440,7 @@ void glshim_glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha) { packed_data.args.a4 = (GLbyte)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha) __attribute__((alias("glshim_glColor4b"))); +void glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha) __attribute__((alias("glshim_glColor4b"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4bv) && !defined(skip_index_glColor4bv) void glshim_glColor4bv(const GLbyte * v) { @@ -449,7 +449,7 @@ void glshim_glColor4bv(const GLbyte * v) { packed_data.args.a1 = (GLbyte *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4bv(const GLbyte * v) __attribute__((alias("glshim_glColor4bv"))); +void glColor4bv(const GLbyte * v) __attribute__((alias("glshim_glColor4bv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4d) && !defined(skip_index_glColor4d) void glshim_glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha) { @@ -461,7 +461,7 @@ void glshim_glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alph packed_data.args.a4 = (GLdouble)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha) __attribute__((alias("glshim_glColor4d"))); +void glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha) __attribute__((alias("glshim_glColor4d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4dv) && !defined(skip_index_glColor4dv) void glshim_glColor4dv(const GLdouble * v) { @@ -470,7 +470,7 @@ void glshim_glColor4dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4dv(const GLdouble * v) __attribute__((alias("glshim_glColor4dv"))); +void glColor4dv(const GLdouble * v) __attribute__((alias("glshim_glColor4dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4f) && !defined(skip_index_glColor4f) void glshim_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { @@ -482,7 +482,7 @@ void glshim_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { packed_data.args.a4 = (GLfloat)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glColor4f"))); +void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) __attribute__((alias("glshim_glColor4f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4fv) && !defined(skip_index_glColor4fv) void glshim_glColor4fv(const GLfloat * v) { @@ -491,7 +491,7 @@ void glshim_glColor4fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4fv(const GLfloat * v) __attribute__((alias("glshim_glColor4fv"))); +void glColor4fv(const GLfloat * v) __attribute__((alias("glshim_glColor4fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4i) && !defined(skip_index_glColor4i) void glshim_glColor4i(GLint red, GLint green, GLint blue, GLint alpha) { @@ -503,7 +503,7 @@ void glshim_glColor4i(GLint red, GLint green, GLint blue, GLint alpha) { packed_data.args.a4 = (GLint)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4i(GLint red, GLint green, GLint blue, GLint alpha) __attribute__((alias("glshim_glColor4i"))); +void glColor4i(GLint red, GLint green, GLint blue, GLint alpha) __attribute__((alias("glshim_glColor4i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4iv) && !defined(skip_index_glColor4iv) void glshim_glColor4iv(const GLint * v) { @@ -512,7 +512,7 @@ void glshim_glColor4iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4iv(const GLint * v) __attribute__((alias("glshim_glColor4iv"))); +void glColor4iv(const GLint * v) __attribute__((alias("glshim_glColor4iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4s) && !defined(skip_index_glColor4s) void glshim_glColor4s(GLshort red, GLshort green, GLshort blue, GLshort alpha) { @@ -524,7 +524,7 @@ void glshim_glColor4s(GLshort red, GLshort green, GLshort blue, GLshort alpha) { packed_data.args.a4 = (GLshort)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4s(GLshort red, GLshort green, GLshort blue, GLshort alpha) __attribute__((alias("glshim_glColor4s"))); +void glColor4s(GLshort red, GLshort green, GLshort blue, GLshort alpha) __attribute__((alias("glshim_glColor4s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4sv) && !defined(skip_index_glColor4sv) void glshim_glColor4sv(const GLshort * v) { @@ -533,7 +533,7 @@ void glshim_glColor4sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4sv(const GLshort * v) __attribute__((alias("glshim_glColor4sv"))); +void glColor4sv(const GLshort * v) __attribute__((alias("glshim_glColor4sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4ub) && !defined(skip_index_glColor4ub) void glshim_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) { @@ -545,7 +545,7 @@ void glshim_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) packed_data.args.a4 = (GLubyte)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) __attribute__((alias("glshim_glColor4ub"))); +void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) __attribute__((alias("glshim_glColor4ub"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4ubv) && !defined(skip_index_glColor4ubv) void glshim_glColor4ubv(const GLubyte * v) { @@ -554,7 +554,7 @@ void glshim_glColor4ubv(const GLubyte * v) { packed_data.args.a1 = (GLubyte *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4ubv(const GLubyte * v) __attribute__((alias("glshim_glColor4ubv"))); +void glColor4ubv(const GLubyte * v) __attribute__((alias("glshim_glColor4ubv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4ui) && !defined(skip_index_glColor4ui) void glshim_glColor4ui(GLuint red, GLuint green, GLuint blue, GLuint alpha) { @@ -566,7 +566,7 @@ void glshim_glColor4ui(GLuint red, GLuint green, GLuint blue, GLuint alpha) { packed_data.args.a4 = (GLuint)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4ui(GLuint red, GLuint green, GLuint blue, GLuint alpha) __attribute__((alias("glshim_glColor4ui"))); +void glColor4ui(GLuint red, GLuint green, GLuint blue, GLuint alpha) __attribute__((alias("glshim_glColor4ui"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4uiv) && !defined(skip_index_glColor4uiv) void glshim_glColor4uiv(const GLuint * v) { @@ -575,7 +575,7 @@ void glshim_glColor4uiv(const GLuint * v) { packed_data.args.a1 = (GLuint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4uiv(const GLuint * v) __attribute__((alias("glshim_glColor4uiv"))); +void glColor4uiv(const GLuint * v) __attribute__((alias("glshim_glColor4uiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4us) && !defined(skip_index_glColor4us) void glshim_glColor4us(GLushort red, GLushort green, GLushort blue, GLushort alpha) { @@ -587,7 +587,7 @@ void glshim_glColor4us(GLushort red, GLushort green, GLushort blue, GLushort alp packed_data.args.a4 = (GLushort)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4us(GLushort red, GLushort green, GLushort blue, GLushort alpha) __attribute__((alias("glshim_glColor4us"))); +void glColor4us(GLushort red, GLushort green, GLushort blue, GLushort alpha) __attribute__((alias("glshim_glColor4us"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColor4usv) && !defined(skip_index_glColor4usv) void glshim_glColor4usv(const GLushort * v) { @@ -596,7 +596,7 @@ void glshim_glColor4usv(const GLushort * v) { packed_data.args.a1 = (GLushort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColor4usv(const GLushort * v) __attribute__((alias("glshim_glColor4usv"))); +void glColor4usv(const GLushort * v) __attribute__((alias("glshim_glColor4usv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColorMask) && !defined(skip_index_glColorMask) void glshim_glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) { @@ -608,7 +608,7 @@ void glshim_glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolea packed_data.args.a4 = (GLboolean)alpha; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) __attribute__((alias("glshim_glColorMask"))); +void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) __attribute__((alias("glshim_glColorMask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColorMaterial) && !defined(skip_index_glColorMaterial) void glshim_glColorMaterial(GLenum face, GLenum mode) { @@ -618,7 +618,7 @@ void glshim_glColorMaterial(GLenum face, GLenum mode) { packed_data.args.a2 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColorMaterial(GLenum face, GLenum mode) __attribute__((alias("glshim_glColorMaterial"))); +void glColorMaterial(GLenum face, GLenum mode) __attribute__((alias("glshim_glColorMaterial"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColorPointer) && !defined(skip_index_glColorPointer) void glshim_glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -630,7 +630,7 @@ void glshim_glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid packed_data.args.a4 = (GLvoid *)pointer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glColorPointer"))); +void glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glColorPointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColorSubTable) && !defined(skip_index_glColorSubTable) void glshim_glColorSubTable(GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid * data) { @@ -644,7 +644,7 @@ void glshim_glColorSubTable(GLenum target, GLsizei start, GLsizei count, GLenum packed_data.args.a6 = (GLvoid *)data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColorSubTable(GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid * data) __attribute__((alias("glshim_glColorSubTable"))); +void glColorSubTable(GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid * data) __attribute__((alias("glshim_glColorSubTable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColorTable) && !defined(skip_index_glColorTable) void glshim_glColorTable(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid * table) { @@ -658,7 +658,7 @@ void glshim_glColorTable(GLenum target, GLenum internalformat, GLsizei width, GL packed_data.args.a6 = (GLvoid *)table; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColorTable(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid * table) __attribute__((alias("glshim_glColorTable"))); +void glColorTable(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid * table) __attribute__((alias("glshim_glColorTable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColorTableParameterfv) && !defined(skip_index_glColorTableParameterfv) void glshim_glColorTableParameterfv(GLenum target, GLenum pname, const GLfloat * params) { @@ -669,7 +669,7 @@ void glshim_glColorTableParameterfv(GLenum target, GLenum pname, const GLfloat * packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColorTableParameterfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glColorTableParameterfv"))); +void glColorTableParameterfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glColorTableParameterfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glColorTableParameteriv) && !defined(skip_index_glColorTableParameteriv) void glshim_glColorTableParameteriv(GLenum target, GLenum pname, const GLint * params) { @@ -680,7 +680,7 @@ void glshim_glColorTableParameteriv(GLenum target, GLenum pname, const GLint * p packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glColorTableParameteriv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glColorTableParameteriv"))); +void glColorTableParameteriv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glColorTableParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCompressedTexImage1D) && !defined(skip_index_glCompressedTexImage1D) void glshim_glCompressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid * data) { @@ -695,7 +695,7 @@ void glshim_glCompressedTexImage1D(GLenum target, GLint level, GLenum internalfo packed_data.args.a7 = (GLvoid *)data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCompressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexImage1D"))); +void glCompressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexImage1D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCompressedTexImage2D) && !defined(skip_index_glCompressedTexImage2D) void glshim_glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid * data) { @@ -711,7 +711,7 @@ void glshim_glCompressedTexImage2D(GLenum target, GLint level, GLenum internalfo packed_data.args.a8 = (GLvoid *)data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexImage2D"))); +void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexImage2D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCompressedTexImage3D) && !defined(skip_index_glCompressedTexImage3D) void glshim_glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid * data) { @@ -728,7 +728,7 @@ void glshim_glCompressedTexImage3D(GLenum target, GLint level, GLenum internalfo packed_data.args.a9 = (GLvoid *)data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexImage3D"))); +void glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexImage3D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCompressedTexSubImage1D) && !defined(skip_index_glCompressedTexSubImage1D) void glshim_glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid * data) { @@ -743,7 +743,7 @@ void glshim_glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, packed_data.args.a7 = (GLvoid *)data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexSubImage1D"))); +void glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexSubImage1D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCompressedTexSubImage2D) && !defined(skip_index_glCompressedTexSubImage2D) void glshim_glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid * data) { @@ -760,7 +760,7 @@ void glshim_glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, packed_data.args.a9 = (GLvoid *)data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexSubImage2D"))); +void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexSubImage2D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCompressedTexSubImage3D) && !defined(skip_index_glCompressedTexSubImage3D) void glshim_glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid * data) { @@ -779,7 +779,7 @@ void glshim_glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, packed_data.args.a11 = (GLvoid *)data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexSubImage3D"))); +void glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid * data) __attribute__((alias("glshim_glCompressedTexSubImage3D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glConvolutionFilter1D) && !defined(skip_index_glConvolutionFilter1D) void glshim_glConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid * image) { @@ -793,7 +793,7 @@ void glshim_glConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei packed_data.args.a6 = (GLvoid *)image; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid * image) __attribute__((alias("glshim_glConvolutionFilter1D"))); +void glConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid * image) __attribute__((alias("glshim_glConvolutionFilter1D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glConvolutionFilter2D) && !defined(skip_index_glConvolutionFilter2D) void glshim_glConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * image) { @@ -808,7 +808,7 @@ void glshim_glConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei packed_data.args.a7 = (GLvoid *)image; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * image) __attribute__((alias("glshim_glConvolutionFilter2D"))); +void glConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * image) __attribute__((alias("glshim_glConvolutionFilter2D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glConvolutionParameterf) && !defined(skip_index_glConvolutionParameterf) void glshim_glConvolutionParameterf(GLenum target, GLenum pname, GLfloat params) { @@ -819,7 +819,7 @@ void glshim_glConvolutionParameterf(GLenum target, GLenum pname, GLfloat params) packed_data.args.a3 = (GLfloat)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glConvolutionParameterf(GLenum target, GLenum pname, GLfloat params) __attribute__((alias("glshim_glConvolutionParameterf"))); +void glConvolutionParameterf(GLenum target, GLenum pname, GLfloat params) __attribute__((alias("glshim_glConvolutionParameterf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glConvolutionParameterfv) && !defined(skip_index_glConvolutionParameterfv) void glshim_glConvolutionParameterfv(GLenum target, GLenum pname, const GLfloat * params) { @@ -830,7 +830,7 @@ void glshim_glConvolutionParameterfv(GLenum target, GLenum pname, const GLfloat packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glConvolutionParameterfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glConvolutionParameterfv"))); +void glConvolutionParameterfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glConvolutionParameterfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glConvolutionParameteri) && !defined(skip_index_glConvolutionParameteri) void glshim_glConvolutionParameteri(GLenum target, GLenum pname, GLint params) { @@ -841,7 +841,7 @@ void glshim_glConvolutionParameteri(GLenum target, GLenum pname, GLint params) { packed_data.args.a3 = (GLint)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glConvolutionParameteri(GLenum target, GLenum pname, GLint params) __attribute__((alias("glshim_glConvolutionParameteri"))); +void glConvolutionParameteri(GLenum target, GLenum pname, GLint params) __attribute__((alias("glshim_glConvolutionParameteri"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glConvolutionParameteriv) && !defined(skip_index_glConvolutionParameteriv) void glshim_glConvolutionParameteriv(GLenum target, GLenum pname, const GLint * params) { @@ -852,7 +852,7 @@ void glshim_glConvolutionParameteriv(GLenum target, GLenum pname, const GLint * packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glConvolutionParameteriv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glConvolutionParameteriv"))); +void glConvolutionParameteriv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glConvolutionParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCopyColorSubTable) && !defined(skip_index_glCopyColorSubTable) void glshim_glCopyColorSubTable(GLenum target, GLsizei start, GLint x, GLint y, GLsizei width) { @@ -865,7 +865,7 @@ void glshim_glCopyColorSubTable(GLenum target, GLsizei start, GLint x, GLint y, packed_data.args.a5 = (GLsizei)width; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCopyColorSubTable(GLenum target, GLsizei start, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyColorSubTable"))); +void glCopyColorSubTable(GLenum target, GLsizei start, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyColorSubTable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCopyColorTable) && !defined(skip_index_glCopyColorTable) void glshim_glCopyColorTable(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width) { @@ -878,7 +878,7 @@ void glshim_glCopyColorTable(GLenum target, GLenum internalformat, GLint x, GLin packed_data.args.a5 = (GLsizei)width; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCopyColorTable(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyColorTable"))); +void glCopyColorTable(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyColorTable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCopyConvolutionFilter1D) && !defined(skip_index_glCopyConvolutionFilter1D) void glshim_glCopyConvolutionFilter1D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width) { @@ -891,7 +891,7 @@ void glshim_glCopyConvolutionFilter1D(GLenum target, GLenum internalformat, GLin packed_data.args.a5 = (GLsizei)width; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCopyConvolutionFilter1D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyConvolutionFilter1D"))); +void glCopyConvolutionFilter1D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyConvolutionFilter1D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCopyConvolutionFilter2D) && !defined(skip_index_glCopyConvolutionFilter2D) void glshim_glCopyConvolutionFilter2D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height) { @@ -905,7 +905,7 @@ void glshim_glCopyConvolutionFilter2D(GLenum target, GLenum internalformat, GLin packed_data.args.a6 = (GLsizei)height; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCopyConvolutionFilter2D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyConvolutionFilter2D"))); +void glCopyConvolutionFilter2D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyConvolutionFilter2D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCopyPixels) && !defined(skip_index_glCopyPixels) void glshim_glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type) { @@ -918,7 +918,7 @@ void glshim_glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum packed_data.args.a5 = (GLenum)type; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type) __attribute__((alias("glshim_glCopyPixels"))); +void glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type) __attribute__((alias("glshim_glCopyPixels"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCopyTexImage1D) && !defined(skip_index_glCopyTexImage1D) void glshim_glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) { @@ -933,7 +933,7 @@ void glshim_glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, packed_data.args.a7 = (GLint)border; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) __attribute__((alias("glshim_glCopyTexImage1D"))); +void glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) __attribute__((alias("glshim_glCopyTexImage1D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCopyTexImage2D) && !defined(skip_index_glCopyTexImage2D) void glshim_glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) { @@ -949,7 +949,7 @@ void glshim_glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, packed_data.args.a8 = (GLint)border; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) __attribute__((alias("glshim_glCopyTexImage2D"))); +void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) __attribute__((alias("glshim_glCopyTexImage2D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCopyTexSubImage1D) && !defined(skip_index_glCopyTexSubImage1D) void glshim_glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) { @@ -963,7 +963,7 @@ void glshim_glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint packed_data.args.a6 = (GLsizei)width; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyTexSubImage1D"))); +void glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) __attribute__((alias("glshim_glCopyTexSubImage1D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCopyTexSubImage2D) && !defined(skip_index_glCopyTexSubImage2D) void glshim_glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) { @@ -979,7 +979,7 @@ void glshim_glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint packed_data.args.a8 = (GLsizei)height; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTexSubImage2D"))); +void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTexSubImage2D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCopyTexSubImage3D) && !defined(skip_index_glCopyTexSubImage3D) void glshim_glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) { @@ -996,7 +996,7 @@ void glshim_glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint packed_data.args.a9 = (GLsizei)height; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTexSubImage3D"))); +void glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glCopyTexSubImage3D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glCullFace) && !defined(skip_index_glCullFace) void glshim_glCullFace(GLenum mode) { @@ -1005,7 +1005,7 @@ void glshim_glCullFace(GLenum mode) { packed_data.args.a1 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glCullFace(GLenum mode) __attribute__((alias("glshim_glCullFace"))); +void glCullFace(GLenum mode) __attribute__((alias("glshim_glCullFace"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDeleteBuffers) && !defined(skip_index_glDeleteBuffers) void glshim_glDeleteBuffers(GLsizei n, const GLuint * buffers) { @@ -1015,7 +1015,7 @@ void glshim_glDeleteBuffers(GLsizei n, const GLuint * buffers) { packed_data.args.a2 = (GLuint *)buffers; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDeleteBuffers(GLsizei n, const GLuint * buffers) __attribute__((alias("glshim_glDeleteBuffers"))); +void glDeleteBuffers(GLsizei n, const GLuint * buffers) __attribute__((alias("glshim_glDeleteBuffers"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDeleteLists) && !defined(skip_index_glDeleteLists) void glshim_glDeleteLists(GLuint list, GLsizei range) { @@ -1025,7 +1025,7 @@ void glshim_glDeleteLists(GLuint list, GLsizei range) { packed_data.args.a2 = (GLsizei)range; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDeleteLists(GLuint list, GLsizei range) __attribute__((alias("glshim_glDeleteLists"))); +void glDeleteLists(GLuint list, GLsizei range) __attribute__((alias("glshim_glDeleteLists"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDeleteQueries) && !defined(skip_index_glDeleteQueries) void glshim_glDeleteQueries(GLsizei n, const GLuint * ids) { @@ -1035,7 +1035,7 @@ void glshim_glDeleteQueries(GLsizei n, const GLuint * ids) { packed_data.args.a2 = (GLuint *)ids; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDeleteQueries(GLsizei n, const GLuint * ids) __attribute__((alias("glshim_glDeleteQueries"))); +void glDeleteQueries(GLsizei n, const GLuint * ids) __attribute__((alias("glshim_glDeleteQueries"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDeleteTextures) && !defined(skip_index_glDeleteTextures) void glshim_glDeleteTextures(GLsizei n, const GLuint * textures) { @@ -1045,7 +1045,7 @@ void glshim_glDeleteTextures(GLsizei n, const GLuint * textures) { packed_data.args.a2 = (GLuint *)textures; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDeleteTextures(GLsizei n, const GLuint * textures) __attribute__((alias("glshim_glDeleteTextures"))); +void glDeleteTextures(GLsizei n, const GLuint * textures) __attribute__((alias("glshim_glDeleteTextures"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDepthFunc) && !defined(skip_index_glDepthFunc) void glshim_glDepthFunc(GLenum func) { @@ -1054,7 +1054,7 @@ void glshim_glDepthFunc(GLenum func) { packed_data.args.a1 = (GLenum)func; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDepthFunc(GLenum func) __attribute__((alias("glshim_glDepthFunc"))); +void glDepthFunc(GLenum func) __attribute__((alias("glshim_glDepthFunc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDepthMask) && !defined(skip_index_glDepthMask) void glshim_glDepthMask(GLboolean flag) { @@ -1063,7 +1063,7 @@ void glshim_glDepthMask(GLboolean flag) { packed_data.args.a1 = (GLboolean)flag; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDepthMask(GLboolean flag) __attribute__((alias("glshim_glDepthMask"))); +void glDepthMask(GLboolean flag) __attribute__((alias("glshim_glDepthMask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDepthRange) && !defined(skip_index_glDepthRange) void glshim_glDepthRange(GLdouble near, GLdouble far) { @@ -1073,7 +1073,7 @@ void glshim_glDepthRange(GLdouble near, GLdouble far) { packed_data.args.a2 = (GLdouble)far; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDepthRange(GLdouble near, GLdouble far) __attribute__((alias("glshim_glDepthRange"))); +void glDepthRange(GLdouble near, GLdouble far) __attribute__((alias("glshim_glDepthRange"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDisable) && !defined(skip_index_glDisable) void glshim_glDisable(GLenum cap) { @@ -1082,7 +1082,7 @@ void glshim_glDisable(GLenum cap) { packed_data.args.a1 = (GLenum)cap; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDisable(GLenum cap) __attribute__((alias("glshim_glDisable"))); +void glDisable(GLenum cap) __attribute__((alias("glshim_glDisable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDisableClientState) && !defined(skip_index_glDisableClientState) void glshim_glDisableClientState(GLenum array) { @@ -1091,7 +1091,7 @@ void glshim_glDisableClientState(GLenum array) { packed_data.args.a1 = (GLenum)array; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDisableClientState(GLenum array) __attribute__((alias("glshim_glDisableClientState"))); +void glDisableClientState(GLenum array) __attribute__((alias("glshim_glDisableClientState"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDrawArrays) && !defined(skip_index_glDrawArrays) void glshim_glDrawArrays(GLenum mode, GLint first, GLsizei count) { @@ -1102,7 +1102,7 @@ void glshim_glDrawArrays(GLenum mode, GLint first, GLsizei count) { packed_data.args.a3 = (GLsizei)count; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDrawArrays(GLenum mode, GLint first, GLsizei count) __attribute__((alias("glshim_glDrawArrays"))); +void glDrawArrays(GLenum mode, GLint first, GLsizei count) __attribute__((alias("glshim_glDrawArrays"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDrawBuffer) && !defined(skip_index_glDrawBuffer) void glshim_glDrawBuffer(GLenum mode) { @@ -1111,7 +1111,7 @@ void glshim_glDrawBuffer(GLenum mode) { packed_data.args.a1 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDrawBuffer(GLenum mode) __attribute__((alias("glshim_glDrawBuffer"))); +void glDrawBuffer(GLenum mode) __attribute__((alias("glshim_glDrawBuffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDrawElements) && !defined(skip_index_glDrawElements) void glshim_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) { @@ -1123,7 +1123,7 @@ void glshim_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid packed_data.args.a4 = (GLvoid *)indices; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) __attribute__((alias("glshim_glDrawElements"))); +void glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) __attribute__((alias("glshim_glDrawElements"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDrawPixels) && !defined(skip_index_glDrawPixels) void glshim_glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * pixels) { @@ -1136,7 +1136,7 @@ void glshim_glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum ty packed_data.args.a5 = (GLvoid *)pixels; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glDrawPixels"))); +void glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glDrawPixels"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glDrawRangeElements) && !defined(skip_index_glDrawRangeElements) void glshim_glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) { @@ -1150,7 +1150,7 @@ void glshim_glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei c packed_data.args.a6 = (GLvoid *)indices; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) __attribute__((alias("glshim_glDrawRangeElements"))); +void glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) __attribute__((alias("glshim_glDrawRangeElements"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEdgeFlag) && !defined(skip_index_glEdgeFlag) void glshim_glEdgeFlag(GLboolean flag) { @@ -1159,7 +1159,7 @@ void glshim_glEdgeFlag(GLboolean flag) { packed_data.args.a1 = (GLboolean)flag; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEdgeFlag(GLboolean flag) __attribute__((alias("glshim_glEdgeFlag"))); +void glEdgeFlag(GLboolean flag) __attribute__((alias("glshim_glEdgeFlag"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEdgeFlagPointer) && !defined(skip_index_glEdgeFlagPointer) void glshim_glEdgeFlagPointer(GLsizei stride, const GLvoid * pointer) { @@ -1169,7 +1169,7 @@ void glshim_glEdgeFlagPointer(GLsizei stride, const GLvoid * pointer) { packed_data.args.a2 = (GLvoid *)pointer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEdgeFlagPointer(GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glEdgeFlagPointer"))); +void glEdgeFlagPointer(GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glEdgeFlagPointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEdgeFlagv) && !defined(skip_index_glEdgeFlagv) void glshim_glEdgeFlagv(const GLboolean * flag) { @@ -1178,7 +1178,7 @@ void glshim_glEdgeFlagv(const GLboolean * flag) { packed_data.args.a1 = (GLboolean *)flag; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEdgeFlagv(const GLboolean * flag) __attribute__((alias("glshim_glEdgeFlagv"))); +void glEdgeFlagv(const GLboolean * flag) __attribute__((alias("glshim_glEdgeFlagv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEnable) && !defined(skip_index_glEnable) void glshim_glEnable(GLenum cap) { @@ -1187,7 +1187,7 @@ void glshim_glEnable(GLenum cap) { packed_data.args.a1 = (GLenum)cap; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEnable(GLenum cap) __attribute__((alias("glshim_glEnable"))); +void glEnable(GLenum cap) __attribute__((alias("glshim_glEnable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEnableClientState) && !defined(skip_index_glEnableClientState) void glshim_glEnableClientState(GLenum array) { @@ -1196,7 +1196,7 @@ void glshim_glEnableClientState(GLenum array) { packed_data.args.a1 = (GLenum)array; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEnableClientState(GLenum array) __attribute__((alias("glshim_glEnableClientState"))); +void glEnableClientState(GLenum array) __attribute__((alias("glshim_glEnableClientState"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEnd) && !defined(skip_index_glEnd) void glshim_glEnd() { @@ -1204,7 +1204,7 @@ void glshim_glEnd() { packed_data.func = glEnd_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEnd() __attribute__((alias("glshim_glEnd"))); +void glEnd() __attribute__((alias("glshim_glEnd"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEndList) && !defined(skip_index_glEndList) void glshim_glEndList() { @@ -1212,7 +1212,7 @@ void glshim_glEndList() { packed_data.func = glEndList_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEndList() __attribute__((alias("glshim_glEndList"))); +void glEndList() __attribute__((alias("glshim_glEndList"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEndQuery) && !defined(skip_index_glEndQuery) void glshim_glEndQuery(GLenum target) { @@ -1221,7 +1221,7 @@ void glshim_glEndQuery(GLenum target) { packed_data.args.a1 = (GLenum)target; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEndQuery(GLenum target) __attribute__((alias("glshim_glEndQuery"))); +void glEndQuery(GLenum target) __attribute__((alias("glshim_glEndQuery"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalCoord1d) && !defined(skip_index_glEvalCoord1d) void glshim_glEvalCoord1d(GLdouble u) { @@ -1230,7 +1230,7 @@ void glshim_glEvalCoord1d(GLdouble u) { packed_data.args.a1 = (GLdouble)u; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalCoord1d(GLdouble u) __attribute__((alias("glshim_glEvalCoord1d"))); +void glEvalCoord1d(GLdouble u) __attribute__((alias("glshim_glEvalCoord1d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalCoord1dv) && !defined(skip_index_glEvalCoord1dv) void glshim_glEvalCoord1dv(const GLdouble * u) { @@ -1239,7 +1239,7 @@ void glshim_glEvalCoord1dv(const GLdouble * u) { packed_data.args.a1 = (GLdouble *)u; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalCoord1dv(const GLdouble * u) __attribute__((alias("glshim_glEvalCoord1dv"))); +void glEvalCoord1dv(const GLdouble * u) __attribute__((alias("glshim_glEvalCoord1dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalCoord1f) && !defined(skip_index_glEvalCoord1f) void glshim_glEvalCoord1f(GLfloat u) { @@ -1248,7 +1248,7 @@ void glshim_glEvalCoord1f(GLfloat u) { packed_data.args.a1 = (GLfloat)u; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalCoord1f(GLfloat u) __attribute__((alias("glshim_glEvalCoord1f"))); +void glEvalCoord1f(GLfloat u) __attribute__((alias("glshim_glEvalCoord1f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalCoord1fv) && !defined(skip_index_glEvalCoord1fv) void glshim_glEvalCoord1fv(const GLfloat * u) { @@ -1257,7 +1257,7 @@ void glshim_glEvalCoord1fv(const GLfloat * u) { packed_data.args.a1 = (GLfloat *)u; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalCoord1fv(const GLfloat * u) __attribute__((alias("glshim_glEvalCoord1fv"))); +void glEvalCoord1fv(const GLfloat * u) __attribute__((alias("glshim_glEvalCoord1fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalCoord2d) && !defined(skip_index_glEvalCoord2d) void glshim_glEvalCoord2d(GLdouble u, GLdouble v) { @@ -1267,7 +1267,7 @@ void glshim_glEvalCoord2d(GLdouble u, GLdouble v) { packed_data.args.a2 = (GLdouble)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalCoord2d(GLdouble u, GLdouble v) __attribute__((alias("glshim_glEvalCoord2d"))); +void glEvalCoord2d(GLdouble u, GLdouble v) __attribute__((alias("glshim_glEvalCoord2d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalCoord2dv) && !defined(skip_index_glEvalCoord2dv) void glshim_glEvalCoord2dv(const GLdouble * u) { @@ -1276,7 +1276,7 @@ void glshim_glEvalCoord2dv(const GLdouble * u) { packed_data.args.a1 = (GLdouble *)u; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalCoord2dv(const GLdouble * u) __attribute__((alias("glshim_glEvalCoord2dv"))); +void glEvalCoord2dv(const GLdouble * u) __attribute__((alias("glshim_glEvalCoord2dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalCoord2f) && !defined(skip_index_glEvalCoord2f) void glshim_glEvalCoord2f(GLfloat u, GLfloat v) { @@ -1286,7 +1286,7 @@ void glshim_glEvalCoord2f(GLfloat u, GLfloat v) { packed_data.args.a2 = (GLfloat)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalCoord2f(GLfloat u, GLfloat v) __attribute__((alias("glshim_glEvalCoord2f"))); +void glEvalCoord2f(GLfloat u, GLfloat v) __attribute__((alias("glshim_glEvalCoord2f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalCoord2fv) && !defined(skip_index_glEvalCoord2fv) void glshim_glEvalCoord2fv(const GLfloat * u) { @@ -1295,7 +1295,7 @@ void glshim_glEvalCoord2fv(const GLfloat * u) { packed_data.args.a1 = (GLfloat *)u; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalCoord2fv(const GLfloat * u) __attribute__((alias("glshim_glEvalCoord2fv"))); +void glEvalCoord2fv(const GLfloat * u) __attribute__((alias("glshim_glEvalCoord2fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalMesh1) && !defined(skip_index_glEvalMesh1) void glshim_glEvalMesh1(GLenum mode, GLint i1, GLint i2) { @@ -1306,7 +1306,7 @@ void glshim_glEvalMesh1(GLenum mode, GLint i1, GLint i2) { packed_data.args.a3 = (GLint)i2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalMesh1(GLenum mode, GLint i1, GLint i2) __attribute__((alias("glshim_glEvalMesh1"))); +void glEvalMesh1(GLenum mode, GLint i1, GLint i2) __attribute__((alias("glshim_glEvalMesh1"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalMesh2) && !defined(skip_index_glEvalMesh2) void glshim_glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2) { @@ -1319,7 +1319,7 @@ void glshim_glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2) { packed_data.args.a5 = (GLint)j2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2) __attribute__((alias("glshim_glEvalMesh2"))); +void glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2) __attribute__((alias("glshim_glEvalMesh2"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalPoint1) && !defined(skip_index_glEvalPoint1) void glshim_glEvalPoint1(GLint i) { @@ -1328,7 +1328,7 @@ void glshim_glEvalPoint1(GLint i) { packed_data.args.a1 = (GLint)i; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalPoint1(GLint i) __attribute__((alias("glshim_glEvalPoint1"))); +void glEvalPoint1(GLint i) __attribute__((alias("glshim_glEvalPoint1"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glEvalPoint2) && !defined(skip_index_glEvalPoint2) void glshim_glEvalPoint2(GLint i, GLint j) { @@ -1338,7 +1338,7 @@ void glshim_glEvalPoint2(GLint i, GLint j) { packed_data.args.a2 = (GLint)j; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glEvalPoint2(GLint i, GLint j) __attribute__((alias("glshim_glEvalPoint2"))); +void glEvalPoint2(GLint i, GLint j) __attribute__((alias("glshim_glEvalPoint2"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFeedbackBuffer) && !defined(skip_index_glFeedbackBuffer) void glshim_glFeedbackBuffer(GLsizei size, GLenum type, GLfloat * buffer) { @@ -1349,7 +1349,7 @@ void glshim_glFeedbackBuffer(GLsizei size, GLenum type, GLfloat * buffer) { packed_data.args.a3 = (GLfloat *)buffer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFeedbackBuffer(GLsizei size, GLenum type, GLfloat * buffer) __attribute__((alias("glshim_glFeedbackBuffer"))); +void glFeedbackBuffer(GLsizei size, GLenum type, GLfloat * buffer) __attribute__((alias("glshim_glFeedbackBuffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFinish) && !defined(skip_index_glFinish) void glshim_glFinish() { @@ -1357,7 +1357,7 @@ void glshim_glFinish() { packed_data.func = glFinish_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFinish() __attribute__((alias("glshim_glFinish"))); +void glFinish() __attribute__((alias("glshim_glFinish"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFlush) && !defined(skip_index_glFlush) void glshim_glFlush() { @@ -1365,7 +1365,7 @@ void glshim_glFlush() { packed_data.func = glFlush_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFlush() __attribute__((alias("glshim_glFlush"))); +void glFlush() __attribute__((alias("glshim_glFlush"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFogCoordPointer) && !defined(skip_index_glFogCoordPointer) void glshim_glFogCoordPointer(GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -1376,7 +1376,7 @@ void glshim_glFogCoordPointer(GLenum type, GLsizei stride, const GLvoid * pointe packed_data.args.a3 = (GLvoid *)pointer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFogCoordPointer(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glFogCoordPointer"))); +void glFogCoordPointer(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glFogCoordPointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFogCoordd) && !defined(skip_index_glFogCoordd) void glshim_glFogCoordd(GLdouble coord) { @@ -1385,7 +1385,7 @@ void glshim_glFogCoordd(GLdouble coord) { packed_data.args.a1 = (GLdouble)coord; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFogCoordd(GLdouble coord) __attribute__((alias("glshim_glFogCoordd"))); +void glFogCoordd(GLdouble coord) __attribute__((alias("glshim_glFogCoordd"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFogCoorddv) && !defined(skip_index_glFogCoorddv) void glshim_glFogCoorddv(const GLdouble * coord) { @@ -1394,7 +1394,7 @@ void glshim_glFogCoorddv(const GLdouble * coord) { packed_data.args.a1 = (GLdouble *)coord; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFogCoorddv(const GLdouble * coord) __attribute__((alias("glshim_glFogCoorddv"))); +void glFogCoorddv(const GLdouble * coord) __attribute__((alias("glshim_glFogCoorddv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFogCoordf) && !defined(skip_index_glFogCoordf) void glshim_glFogCoordf(GLfloat coord) { @@ -1403,7 +1403,7 @@ void glshim_glFogCoordf(GLfloat coord) { packed_data.args.a1 = (GLfloat)coord; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFogCoordf(GLfloat coord) __attribute__((alias("glshim_glFogCoordf"))); +void glFogCoordf(GLfloat coord) __attribute__((alias("glshim_glFogCoordf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFogCoordfv) && !defined(skip_index_glFogCoordfv) void glshim_glFogCoordfv(const GLfloat * coord) { @@ -1412,7 +1412,7 @@ void glshim_glFogCoordfv(const GLfloat * coord) { packed_data.args.a1 = (GLfloat *)coord; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFogCoordfv(const GLfloat * coord) __attribute__((alias("glshim_glFogCoordfv"))); +void glFogCoordfv(const GLfloat * coord) __attribute__((alias("glshim_glFogCoordfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFogf) && !defined(skip_index_glFogf) void glshim_glFogf(GLenum pname, GLfloat param) { @@ -1422,7 +1422,7 @@ void glshim_glFogf(GLenum pname, GLfloat param) { packed_data.args.a2 = (GLfloat)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFogf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glFogf"))); +void glFogf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glFogf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFogfv) && !defined(skip_index_glFogfv) void glshim_glFogfv(GLenum pname, const GLfloat * params) { @@ -1432,7 +1432,7 @@ void glshim_glFogfv(GLenum pname, const GLfloat * params) { packed_data.args.a2 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFogfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glFogfv"))); +void glFogfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glFogfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFogi) && !defined(skip_index_glFogi) void glshim_glFogi(GLenum pname, GLint param) { @@ -1442,7 +1442,7 @@ void glshim_glFogi(GLenum pname, GLint param) { packed_data.args.a2 = (GLint)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFogi(GLenum pname, GLint param) __attribute__((alias("glshim_glFogi"))); +void glFogi(GLenum pname, GLint param) __attribute__((alias("glshim_glFogi"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFogiv) && !defined(skip_index_glFogiv) void glshim_glFogiv(GLenum pname, const GLint * params) { @@ -1452,7 +1452,7 @@ void glshim_glFogiv(GLenum pname, const GLint * params) { packed_data.args.a2 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFogiv(GLenum pname, const GLint * params) __attribute__((alias("glshim_glFogiv"))); +void glFogiv(GLenum pname, const GLint * params) __attribute__((alias("glshim_glFogiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFrontFace) && !defined(skip_index_glFrontFace) void glshim_glFrontFace(GLenum mode) { @@ -1461,7 +1461,7 @@ void glshim_glFrontFace(GLenum mode) { packed_data.args.a1 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFrontFace(GLenum mode) __attribute__((alias("glshim_glFrontFace"))); +void glFrontFace(GLenum mode) __attribute__((alias("glshim_glFrontFace"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glFrustum) && !defined(skip_index_glFrustum) void glshim_glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar) { @@ -1475,7 +1475,7 @@ void glshim_glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble t packed_data.args.a6 = (GLdouble)zFar; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar) __attribute__((alias("glshim_glFrustum"))); +void glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar) __attribute__((alias("glshim_glFrustum"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGenBuffers) && !defined(skip_index_glGenBuffers) void glshim_glGenBuffers(GLsizei n, GLuint * buffers) { @@ -1485,7 +1485,7 @@ void glshim_glGenBuffers(GLsizei n, GLuint * buffers) { packed_data.args.a2 = (GLuint *)buffers; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGenBuffers(GLsizei n, GLuint * buffers) __attribute__((alias("glshim_glGenBuffers"))); +void glGenBuffers(GLsizei n, GLuint * buffers) __attribute__((alias("glshim_glGenBuffers"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGenLists) && !defined(skip_index_glGenLists) GLuint glshim_glGenLists(GLsizei range) { @@ -1496,7 +1496,7 @@ GLuint glshim_glGenLists(GLsizei range) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLuint glGenLists(GLsizei range) __attribute__((alias("glshim_glGenLists"))); +GLuint glGenLists(GLsizei range) __attribute__((alias("glshim_glGenLists"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGenQueries) && !defined(skip_index_glGenQueries) void glshim_glGenQueries(GLsizei n, GLuint * ids) { @@ -1506,7 +1506,7 @@ void glshim_glGenQueries(GLsizei n, GLuint * ids) { packed_data.args.a2 = (GLuint *)ids; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGenQueries(GLsizei n, GLuint * ids) __attribute__((alias("glshim_glGenQueries"))); +void glGenQueries(GLsizei n, GLuint * ids) __attribute__((alias("glshim_glGenQueries"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGenTextures) && !defined(skip_index_glGenTextures) void glshim_glGenTextures(GLsizei n, GLuint * textures) { @@ -1516,7 +1516,7 @@ void glshim_glGenTextures(GLsizei n, GLuint * textures) { packed_data.args.a2 = (GLuint *)textures; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGenTextures(GLsizei n, GLuint * textures) __attribute__((alias("glshim_glGenTextures"))); +void glGenTextures(GLsizei n, GLuint * textures) __attribute__((alias("glshim_glGenTextures"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetBooleanv) && !defined(skip_index_glGetBooleanv) void glshim_glGetBooleanv(GLenum pname, GLboolean * params) { @@ -1526,7 +1526,7 @@ void glshim_glGetBooleanv(GLenum pname, GLboolean * params) { packed_data.args.a2 = (GLboolean *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetBooleanv(GLenum pname, GLboolean * params) __attribute__((alias("glshim_glGetBooleanv"))); +void glGetBooleanv(GLenum pname, GLboolean * params) __attribute__((alias("glshim_glGetBooleanv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetBufferParameteriv) && !defined(skip_index_glGetBufferParameteriv) void glshim_glGetBufferParameteriv(GLenum target, GLenum pname, GLint * params) { @@ -1537,7 +1537,7 @@ void glshim_glGetBufferParameteriv(GLenum target, GLenum pname, GLint * params) packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetBufferParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetBufferParameteriv"))); +void glGetBufferParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetBufferParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetBufferPointerv) && !defined(skip_index_glGetBufferPointerv) void glshim_glGetBufferPointerv(GLenum target, GLenum pname, GLvoid * params) { @@ -1548,7 +1548,7 @@ void glshim_glGetBufferPointerv(GLenum target, GLenum pname, GLvoid * params) { packed_data.args.a3 = (GLvoid *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetBufferPointerv(GLenum target, GLenum pname, GLvoid * params) __attribute__((alias("glshim_glGetBufferPointerv"))); +void glGetBufferPointerv(GLenum target, GLenum pname, GLvoid * params) __attribute__((alias("glshim_glGetBufferPointerv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetBufferSubData) && !defined(skip_index_glGetBufferSubData) void glshim_glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid * data) { @@ -1560,7 +1560,7 @@ void glshim_glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, packed_data.args.a4 = (GLvoid *)data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid * data) __attribute__((alias("glshim_glGetBufferSubData"))); +void glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid * data) __attribute__((alias("glshim_glGetBufferSubData"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetClipPlane) && !defined(skip_index_glGetClipPlane) void glshim_glGetClipPlane(GLenum plane, GLdouble * equation) { @@ -1570,7 +1570,7 @@ void glshim_glGetClipPlane(GLenum plane, GLdouble * equation) { packed_data.args.a2 = (GLdouble *)equation; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetClipPlane(GLenum plane, GLdouble * equation) __attribute__((alias("glshim_glGetClipPlane"))); +void glGetClipPlane(GLenum plane, GLdouble * equation) __attribute__((alias("glshim_glGetClipPlane"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetColorTable) && !defined(skip_index_glGetColorTable) void glshim_glGetColorTable(GLenum target, GLenum format, GLenum type, GLvoid * table) { @@ -1582,7 +1582,7 @@ void glshim_glGetColorTable(GLenum target, GLenum format, GLenum type, GLvoid * packed_data.args.a4 = (GLvoid *)table; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetColorTable(GLenum target, GLenum format, GLenum type, GLvoid * table) __attribute__((alias("glshim_glGetColorTable"))); +void glGetColorTable(GLenum target, GLenum format, GLenum type, GLvoid * table) __attribute__((alias("glshim_glGetColorTable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetColorTableParameterfv) && !defined(skip_index_glGetColorTableParameterfv) void glshim_glGetColorTableParameterfv(GLenum target, GLenum pname, GLfloat * params) { @@ -1593,7 +1593,7 @@ void glshim_glGetColorTableParameterfv(GLenum target, GLenum pname, GLfloat * pa packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetColorTableParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetColorTableParameterfv"))); +void glGetColorTableParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetColorTableParameterfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetColorTableParameteriv) && !defined(skip_index_glGetColorTableParameteriv) void glshim_glGetColorTableParameteriv(GLenum target, GLenum pname, GLint * params) { @@ -1604,7 +1604,7 @@ void glshim_glGetColorTableParameteriv(GLenum target, GLenum pname, GLint * para packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetColorTableParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetColorTableParameteriv"))); +void glGetColorTableParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetColorTableParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetCompressedTexImage) && !defined(skip_index_glGetCompressedTexImage) void glshim_glGetCompressedTexImage(GLenum target, GLint level, GLvoid * img) { @@ -1615,7 +1615,7 @@ void glshim_glGetCompressedTexImage(GLenum target, GLint level, GLvoid * img) { packed_data.args.a3 = (GLvoid *)img; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetCompressedTexImage(GLenum target, GLint level, GLvoid * img) __attribute__((alias("glshim_glGetCompressedTexImage"))); +void glGetCompressedTexImage(GLenum target, GLint level, GLvoid * img) __attribute__((alias("glshim_glGetCompressedTexImage"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetConvolutionFilter) && !defined(skip_index_glGetConvolutionFilter) void glshim_glGetConvolutionFilter(GLenum target, GLenum format, GLenum type, GLvoid * image) { @@ -1627,7 +1627,7 @@ void glshim_glGetConvolutionFilter(GLenum target, GLenum format, GLenum type, GL packed_data.args.a4 = (GLvoid *)image; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetConvolutionFilter(GLenum target, GLenum format, GLenum type, GLvoid * image) __attribute__((alias("glshim_glGetConvolutionFilter"))); +void glGetConvolutionFilter(GLenum target, GLenum format, GLenum type, GLvoid * image) __attribute__((alias("glshim_glGetConvolutionFilter"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetConvolutionParameterfv) && !defined(skip_index_glGetConvolutionParameterfv) void glshim_glGetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat * params) { @@ -1638,7 +1638,7 @@ void glshim_glGetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat * p packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetConvolutionParameterfv"))); +void glGetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetConvolutionParameterfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetConvolutionParameteriv) && !defined(skip_index_glGetConvolutionParameteriv) void glshim_glGetConvolutionParameteriv(GLenum target, GLenum pname, GLint * params) { @@ -1649,7 +1649,7 @@ void glshim_glGetConvolutionParameteriv(GLenum target, GLenum pname, GLint * par packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetConvolutionParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetConvolutionParameteriv"))); +void glGetConvolutionParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetConvolutionParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetDoublev) && !defined(skip_index_glGetDoublev) void glshim_glGetDoublev(GLenum pname, GLdouble * params) { @@ -1659,7 +1659,7 @@ void glshim_glGetDoublev(GLenum pname, GLdouble * params) { packed_data.args.a2 = (GLdouble *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetDoublev(GLenum pname, GLdouble * params) __attribute__((alias("glshim_glGetDoublev"))); +void glGetDoublev(GLenum pname, GLdouble * params) __attribute__((alias("glshim_glGetDoublev"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetError) && !defined(skip_index_glGetError) GLenum glshim_glGetError() { @@ -1669,7 +1669,7 @@ GLenum glshim_glGetError() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLenum glGetError() __attribute__((alias("glshim_glGetError"))); +GLenum glGetError() __attribute__((alias("glshim_glGetError"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetFloatv) && !defined(skip_index_glGetFloatv) void glshim_glGetFloatv(GLenum pname, GLfloat * params) { @@ -1679,7 +1679,7 @@ void glshim_glGetFloatv(GLenum pname, GLfloat * params) { packed_data.args.a2 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetFloatv(GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetFloatv"))); +void glGetFloatv(GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetFloatv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetHistogram) && !defined(skip_index_glGetHistogram) void glshim_glGetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid * values) { @@ -1692,7 +1692,7 @@ void glshim_glGetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum packed_data.args.a5 = (GLvoid *)values; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid * values) __attribute__((alias("glshim_glGetHistogram"))); +void glGetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid * values) __attribute__((alias("glshim_glGetHistogram"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetHistogramParameterfv) && !defined(skip_index_glGetHistogramParameterfv) void glshim_glGetHistogramParameterfv(GLenum target, GLenum pname, GLfloat * params) { @@ -1703,7 +1703,7 @@ void glshim_glGetHistogramParameterfv(GLenum target, GLenum pname, GLfloat * par packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetHistogramParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetHistogramParameterfv"))); +void glGetHistogramParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetHistogramParameterfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetHistogramParameteriv) && !defined(skip_index_glGetHistogramParameteriv) void glshim_glGetHistogramParameteriv(GLenum target, GLenum pname, GLint * params) { @@ -1714,7 +1714,7 @@ void glshim_glGetHistogramParameteriv(GLenum target, GLenum pname, GLint * param packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetHistogramParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetHistogramParameteriv"))); +void glGetHistogramParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetHistogramParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetIntegerv) && !defined(skip_index_glGetIntegerv) void glshim_glGetIntegerv(GLenum pname, GLint * params) { @@ -1724,7 +1724,7 @@ void glshim_glGetIntegerv(GLenum pname, GLint * params) { packed_data.args.a2 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetIntegerv(GLenum pname, GLint * params) __attribute__((alias("glshim_glGetIntegerv"))); +void glGetIntegerv(GLenum pname, GLint * params) __attribute__((alias("glshim_glGetIntegerv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetLightfv) && !defined(skip_index_glGetLightfv) void glshim_glGetLightfv(GLenum light, GLenum pname, GLfloat * params) { @@ -1735,7 +1735,7 @@ void glshim_glGetLightfv(GLenum light, GLenum pname, GLfloat * params) { packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetLightfv(GLenum light, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetLightfv"))); +void glGetLightfv(GLenum light, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetLightfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetLightiv) && !defined(skip_index_glGetLightiv) void glshim_glGetLightiv(GLenum light, GLenum pname, GLint * params) { @@ -1746,7 +1746,7 @@ void glshim_glGetLightiv(GLenum light, GLenum pname, GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetLightiv(GLenum light, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetLightiv"))); +void glGetLightiv(GLenum light, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetLightiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetMapdv) && !defined(skip_index_glGetMapdv) void glshim_glGetMapdv(GLenum target, GLenum query, GLdouble * v) { @@ -1757,7 +1757,7 @@ void glshim_glGetMapdv(GLenum target, GLenum query, GLdouble * v) { packed_data.args.a3 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetMapdv(GLenum target, GLenum query, GLdouble * v) __attribute__((alias("glshim_glGetMapdv"))); +void glGetMapdv(GLenum target, GLenum query, GLdouble * v) __attribute__((alias("glshim_glGetMapdv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetMapfv) && !defined(skip_index_glGetMapfv) void glshim_glGetMapfv(GLenum target, GLenum query, GLfloat * v) { @@ -1768,7 +1768,7 @@ void glshim_glGetMapfv(GLenum target, GLenum query, GLfloat * v) { packed_data.args.a3 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetMapfv(GLenum target, GLenum query, GLfloat * v) __attribute__((alias("glshim_glGetMapfv"))); +void glGetMapfv(GLenum target, GLenum query, GLfloat * v) __attribute__((alias("glshim_glGetMapfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetMapiv) && !defined(skip_index_glGetMapiv) void glshim_glGetMapiv(GLenum target, GLenum query, GLint * v) { @@ -1779,7 +1779,7 @@ void glshim_glGetMapiv(GLenum target, GLenum query, GLint * v) { packed_data.args.a3 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetMapiv(GLenum target, GLenum query, GLint * v) __attribute__((alias("glshim_glGetMapiv"))); +void glGetMapiv(GLenum target, GLenum query, GLint * v) __attribute__((alias("glshim_glGetMapiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetMaterialfv) && !defined(skip_index_glGetMaterialfv) void glshim_glGetMaterialfv(GLenum face, GLenum pname, GLfloat * params) { @@ -1790,7 +1790,7 @@ void glshim_glGetMaterialfv(GLenum face, GLenum pname, GLfloat * params) { packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetMaterialfv(GLenum face, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetMaterialfv"))); +void glGetMaterialfv(GLenum face, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetMaterialfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetMaterialiv) && !defined(skip_index_glGetMaterialiv) void glshim_glGetMaterialiv(GLenum face, GLenum pname, GLint * params) { @@ -1801,7 +1801,7 @@ void glshim_glGetMaterialiv(GLenum face, GLenum pname, GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetMaterialiv(GLenum face, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetMaterialiv"))); +void glGetMaterialiv(GLenum face, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetMaterialiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetMinmax) && !defined(skip_index_glGetMinmax) void glshim_glGetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid * values) { @@ -1814,7 +1814,7 @@ void glshim_glGetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum ty packed_data.args.a5 = (GLvoid *)values; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid * values) __attribute__((alias("glshim_glGetMinmax"))); +void glGetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid * values) __attribute__((alias("glshim_glGetMinmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetMinmaxParameterfv) && !defined(skip_index_glGetMinmaxParameterfv) void glshim_glGetMinmaxParameterfv(GLenum target, GLenum pname, GLfloat * params) { @@ -1825,7 +1825,7 @@ void glshim_glGetMinmaxParameterfv(GLenum target, GLenum pname, GLfloat * params packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetMinmaxParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetMinmaxParameterfv"))); +void glGetMinmaxParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetMinmaxParameterfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetMinmaxParameteriv) && !defined(skip_index_glGetMinmaxParameteriv) void glshim_glGetMinmaxParameteriv(GLenum target, GLenum pname, GLint * params) { @@ -1836,7 +1836,7 @@ void glshim_glGetMinmaxParameteriv(GLenum target, GLenum pname, GLint * params) packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetMinmaxParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetMinmaxParameteriv"))); +void glGetMinmaxParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetMinmaxParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetPixelMapfv) && !defined(skip_index_glGetPixelMapfv) void glshim_glGetPixelMapfv(GLenum map, GLfloat * values) { @@ -1846,7 +1846,7 @@ void glshim_glGetPixelMapfv(GLenum map, GLfloat * values) { packed_data.args.a2 = (GLfloat *)values; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetPixelMapfv(GLenum map, GLfloat * values) __attribute__((alias("glshim_glGetPixelMapfv"))); +void glGetPixelMapfv(GLenum map, GLfloat * values) __attribute__((alias("glshim_glGetPixelMapfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetPixelMapuiv) && !defined(skip_index_glGetPixelMapuiv) void glshim_glGetPixelMapuiv(GLenum map, GLuint * values) { @@ -1856,7 +1856,7 @@ void glshim_glGetPixelMapuiv(GLenum map, GLuint * values) { packed_data.args.a2 = (GLuint *)values; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetPixelMapuiv(GLenum map, GLuint * values) __attribute__((alias("glshim_glGetPixelMapuiv"))); +void glGetPixelMapuiv(GLenum map, GLuint * values) __attribute__((alias("glshim_glGetPixelMapuiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetPixelMapusv) && !defined(skip_index_glGetPixelMapusv) void glshim_glGetPixelMapusv(GLenum map, GLushort * values) { @@ -1866,7 +1866,7 @@ void glshim_glGetPixelMapusv(GLenum map, GLushort * values) { packed_data.args.a2 = (GLushort *)values; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetPixelMapusv(GLenum map, GLushort * values) __attribute__((alias("glshim_glGetPixelMapusv"))); +void glGetPixelMapusv(GLenum map, GLushort * values) __attribute__((alias("glshim_glGetPixelMapusv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetPointerv) && !defined(skip_index_glGetPointerv) void glshim_glGetPointerv(GLenum pname, GLvoid ** params) { @@ -1876,7 +1876,7 @@ void glshim_glGetPointerv(GLenum pname, GLvoid ** params) { packed_data.args.a2 = (GLvoid **)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetPointerv(GLenum pname, GLvoid ** params) __attribute__((alias("glshim_glGetPointerv"))); +void glGetPointerv(GLenum pname, GLvoid ** params) __attribute__((alias("glshim_glGetPointerv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetPolygonStipple) && !defined(skip_index_glGetPolygonStipple) void glshim_glGetPolygonStipple(GLubyte * mask) { @@ -1885,7 +1885,7 @@ void glshim_glGetPolygonStipple(GLubyte * mask) { packed_data.args.a1 = (GLubyte *)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetPolygonStipple(GLubyte * mask) __attribute__((alias("glshim_glGetPolygonStipple"))); +void glGetPolygonStipple(GLubyte * mask) __attribute__((alias("glshim_glGetPolygonStipple"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetQueryObjectiv) && !defined(skip_index_glGetQueryObjectiv) void glshim_glGetQueryObjectiv(GLuint id, GLenum pname, GLint * params) { @@ -1896,7 +1896,7 @@ void glshim_glGetQueryObjectiv(GLuint id, GLenum pname, GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetQueryObjectiv(GLuint id, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetQueryObjectiv"))); +void glGetQueryObjectiv(GLuint id, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetQueryObjectiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetQueryObjectuiv) && !defined(skip_index_glGetQueryObjectuiv) void glshim_glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint * params) { @@ -1907,7 +1907,7 @@ void glshim_glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint * params) { packed_data.args.a3 = (GLuint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint * params) __attribute__((alias("glshim_glGetQueryObjectuiv"))); +void glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint * params) __attribute__((alias("glshim_glGetQueryObjectuiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetQueryiv) && !defined(skip_index_glGetQueryiv) void glshim_glGetQueryiv(GLenum target, GLenum pname, GLint * params) { @@ -1918,7 +1918,7 @@ void glshim_glGetQueryiv(GLenum target, GLenum pname, GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetQueryiv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetQueryiv"))); +void glGetQueryiv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetQueryiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetSeparableFilter) && !defined(skip_index_glGetSeparableFilter) void glshim_glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid * row, GLvoid * column, GLvoid * span) { @@ -1932,7 +1932,7 @@ void glshim_glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvo packed_data.args.a6 = (GLvoid *)span; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid * row, GLvoid * column, GLvoid * span) __attribute__((alias("glshim_glGetSeparableFilter"))); +void glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid * row, GLvoid * column, GLvoid * span) __attribute__((alias("glshim_glGetSeparableFilter"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetString) && !defined(skip_index_glGetString) const GLubyte * glshim_glGetString(GLenum name) { @@ -1943,7 +1943,7 @@ const GLubyte * glshim_glGetString(GLenum name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const GLubyte * glGetString(GLenum name) __attribute__((alias("glshim_glGetString"))); +const GLubyte * glGetString(GLenum name) __attribute__((alias("glshim_glGetString"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetTexEnvfv) && !defined(skip_index_glGetTexEnvfv) void glshim_glGetTexEnvfv(GLenum target, GLenum pname, GLfloat * params) { @@ -1954,7 +1954,7 @@ void glshim_glGetTexEnvfv(GLenum target, GLenum pname, GLfloat * params) { packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetTexEnvfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexEnvfv"))); +void glGetTexEnvfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexEnvfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetTexEnviv) && !defined(skip_index_glGetTexEnviv) void glshim_glGetTexEnviv(GLenum target, GLenum pname, GLint * params) { @@ -1965,7 +1965,7 @@ void glshim_glGetTexEnviv(GLenum target, GLenum pname, GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetTexEnviv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexEnviv"))); +void glGetTexEnviv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexEnviv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetTexGendv) && !defined(skip_index_glGetTexGendv) void glshim_glGetTexGendv(GLenum coord, GLenum pname, GLdouble * params) { @@ -1976,7 +1976,7 @@ void glshim_glGetTexGendv(GLenum coord, GLenum pname, GLdouble * params) { packed_data.args.a3 = (GLdouble *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetTexGendv(GLenum coord, GLenum pname, GLdouble * params) __attribute__((alias("glshim_glGetTexGendv"))); +void glGetTexGendv(GLenum coord, GLenum pname, GLdouble * params) __attribute__((alias("glshim_glGetTexGendv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetTexGenfv) && !defined(skip_index_glGetTexGenfv) void glshim_glGetTexGenfv(GLenum coord, GLenum pname, GLfloat * params) { @@ -1987,7 +1987,7 @@ void glshim_glGetTexGenfv(GLenum coord, GLenum pname, GLfloat * params) { packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetTexGenfv(GLenum coord, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexGenfv"))); +void glGetTexGenfv(GLenum coord, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexGenfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetTexGeniv) && !defined(skip_index_glGetTexGeniv) void glshim_glGetTexGeniv(GLenum coord, GLenum pname, GLint * params) { @@ -1998,7 +1998,7 @@ void glshim_glGetTexGeniv(GLenum coord, GLenum pname, GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetTexGeniv(GLenum coord, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexGeniv"))); +void glGetTexGeniv(GLenum coord, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexGeniv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetTexImage) && !defined(skip_index_glGetTexImage) void glshim_glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid * pixels) { @@ -2011,7 +2011,7 @@ void glshim_glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type packed_data.args.a5 = (GLvoid *)pixels; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid * pixels) __attribute__((alias("glshim_glGetTexImage"))); +void glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid * pixels) __attribute__((alias("glshim_glGetTexImage"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetTexLevelParameterfv) && !defined(skip_index_glGetTexLevelParameterfv) void glshim_glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat * params) { @@ -2023,7 +2023,7 @@ void glshim_glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, G packed_data.args.a4 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexLevelParameterfv"))); +void glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexLevelParameterfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetTexLevelParameteriv) && !defined(skip_index_glGetTexLevelParameteriv) void glshim_glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint * params) { @@ -2035,7 +2035,7 @@ void glshim_glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, G packed_data.args.a4 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexLevelParameteriv"))); +void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexLevelParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetTexParameterfv) && !defined(skip_index_glGetTexParameterfv) void glshim_glGetTexParameterfv(GLenum target, GLenum pname, GLfloat * params) { @@ -2046,7 +2046,7 @@ void glshim_glGetTexParameterfv(GLenum target, GLenum pname, GLfloat * params) { packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexParameterfv"))); +void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat * params) __attribute__((alias("glshim_glGetTexParameterfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glGetTexParameteriv) && !defined(skip_index_glGetTexParameteriv) void glshim_glGetTexParameteriv(GLenum target, GLenum pname, GLint * params) { @@ -2057,7 +2057,7 @@ void glshim_glGetTexParameteriv(GLenum target, GLenum pname, GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glGetTexParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexParameteriv"))); +void glGetTexParameteriv(GLenum target, GLenum pname, GLint * params) __attribute__((alias("glshim_glGetTexParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glHint) && !defined(skip_index_glHint) void glshim_glHint(GLenum target, GLenum mode) { @@ -2067,7 +2067,7 @@ void glshim_glHint(GLenum target, GLenum mode) { packed_data.args.a2 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glHint(GLenum target, GLenum mode) __attribute__((alias("glshim_glHint"))); +void glHint(GLenum target, GLenum mode) __attribute__((alias("glshim_glHint"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glHistogram) && !defined(skip_index_glHistogram) void glshim_glHistogram(GLenum target, GLsizei width, GLenum internalformat, GLboolean sink) { @@ -2079,7 +2079,7 @@ void glshim_glHistogram(GLenum target, GLsizei width, GLenum internalformat, GLb packed_data.args.a4 = (GLboolean)sink; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glHistogram(GLenum target, GLsizei width, GLenum internalformat, GLboolean sink) __attribute__((alias("glshim_glHistogram"))); +void glHistogram(GLenum target, GLsizei width, GLenum internalformat, GLboolean sink) __attribute__((alias("glshim_glHistogram"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexMask) && !defined(skip_index_glIndexMask) void glshim_glIndexMask(GLuint mask) { @@ -2088,7 +2088,7 @@ void glshim_glIndexMask(GLuint mask) { packed_data.args.a1 = (GLuint)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexMask(GLuint mask) __attribute__((alias("glshim_glIndexMask"))); +void glIndexMask(GLuint mask) __attribute__((alias("glshim_glIndexMask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexPointer) && !defined(skip_index_glIndexPointer) void glshim_glIndexPointer(GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -2099,7 +2099,7 @@ void glshim_glIndexPointer(GLenum type, GLsizei stride, const GLvoid * pointer) packed_data.args.a3 = (GLvoid *)pointer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexPointer(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glIndexPointer"))); +void glIndexPointer(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glIndexPointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexd) && !defined(skip_index_glIndexd) void glshim_glIndexd(GLdouble c) { @@ -2108,7 +2108,7 @@ void glshim_glIndexd(GLdouble c) { packed_data.args.a1 = (GLdouble)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexd(GLdouble c) __attribute__((alias("glshim_glIndexd"))); +void glIndexd(GLdouble c) __attribute__((alias("glshim_glIndexd"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexdv) && !defined(skip_index_glIndexdv) void glshim_glIndexdv(const GLdouble * c) { @@ -2117,7 +2117,7 @@ void glshim_glIndexdv(const GLdouble * c) { packed_data.args.a1 = (GLdouble *)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexdv(const GLdouble * c) __attribute__((alias("glshim_glIndexdv"))); +void glIndexdv(const GLdouble * c) __attribute__((alias("glshim_glIndexdv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexf) && !defined(skip_index_glIndexf) void glshim_glIndexf(GLfloat c) { @@ -2126,7 +2126,7 @@ void glshim_glIndexf(GLfloat c) { packed_data.args.a1 = (GLfloat)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexf(GLfloat c) __attribute__((alias("glshim_glIndexf"))); +void glIndexf(GLfloat c) __attribute__((alias("glshim_glIndexf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexfv) && !defined(skip_index_glIndexfv) void glshim_glIndexfv(const GLfloat * c) { @@ -2135,7 +2135,7 @@ void glshim_glIndexfv(const GLfloat * c) { packed_data.args.a1 = (GLfloat *)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexfv(const GLfloat * c) __attribute__((alias("glshim_glIndexfv"))); +void glIndexfv(const GLfloat * c) __attribute__((alias("glshim_glIndexfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexi) && !defined(skip_index_glIndexi) void glshim_glIndexi(GLint c) { @@ -2144,7 +2144,7 @@ void glshim_glIndexi(GLint c) { packed_data.args.a1 = (GLint)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexi(GLint c) __attribute__((alias("glshim_glIndexi"))); +void glIndexi(GLint c) __attribute__((alias("glshim_glIndexi"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexiv) && !defined(skip_index_glIndexiv) void glshim_glIndexiv(const GLint * c) { @@ -2153,7 +2153,7 @@ void glshim_glIndexiv(const GLint * c) { packed_data.args.a1 = (GLint *)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexiv(const GLint * c) __attribute__((alias("glshim_glIndexiv"))); +void glIndexiv(const GLint * c) __attribute__((alias("glshim_glIndexiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexs) && !defined(skip_index_glIndexs) void glshim_glIndexs(GLshort c) { @@ -2162,7 +2162,7 @@ void glshim_glIndexs(GLshort c) { packed_data.args.a1 = (GLshort)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexs(GLshort c) __attribute__((alias("glshim_glIndexs"))); +void glIndexs(GLshort c) __attribute__((alias("glshim_glIndexs"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexsv) && !defined(skip_index_glIndexsv) void glshim_glIndexsv(const GLshort * c) { @@ -2171,7 +2171,7 @@ void glshim_glIndexsv(const GLshort * c) { packed_data.args.a1 = (GLshort *)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexsv(const GLshort * c) __attribute__((alias("glshim_glIndexsv"))); +void glIndexsv(const GLshort * c) __attribute__((alias("glshim_glIndexsv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexub) && !defined(skip_index_glIndexub) void glshim_glIndexub(GLubyte c) { @@ -2180,7 +2180,7 @@ void glshim_glIndexub(GLubyte c) { packed_data.args.a1 = (GLubyte)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexub(GLubyte c) __attribute__((alias("glshim_glIndexub"))); +void glIndexub(GLubyte c) __attribute__((alias("glshim_glIndexub"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIndexubv) && !defined(skip_index_glIndexubv) void glshim_glIndexubv(const GLubyte * c) { @@ -2189,7 +2189,7 @@ void glshim_glIndexubv(const GLubyte * c) { packed_data.args.a1 = (GLubyte *)c; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glIndexubv(const GLubyte * c) __attribute__((alias("glshim_glIndexubv"))); +void glIndexubv(const GLubyte * c) __attribute__((alias("glshim_glIndexubv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glInitNames) && !defined(skip_index_glInitNames) void glshim_glInitNames() { @@ -2197,7 +2197,7 @@ void glshim_glInitNames() { packed_data.func = glInitNames_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glInitNames() __attribute__((alias("glshim_glInitNames"))); +void glInitNames() __attribute__((alias("glshim_glInitNames"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glInterleavedArrays) && !defined(skip_index_glInterleavedArrays) void glshim_glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid * pointer) { @@ -2208,7 +2208,7 @@ void glshim_glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid * po packed_data.args.a3 = (GLvoid *)pointer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glInterleavedArrays"))); +void glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glInterleavedArrays"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIsBuffer) && !defined(skip_index_glIsBuffer) GLboolean glshim_glIsBuffer(GLuint buffer) { @@ -2219,7 +2219,7 @@ GLboolean glshim_glIsBuffer(GLuint buffer) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLboolean glIsBuffer(GLuint buffer) __attribute__((alias("glshim_glIsBuffer"))); +GLboolean glIsBuffer(GLuint buffer) __attribute__((alias("glshim_glIsBuffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIsEnabled) && !defined(skip_index_glIsEnabled) GLboolean glshim_glIsEnabled(GLenum cap) { @@ -2230,7 +2230,7 @@ GLboolean glshim_glIsEnabled(GLenum cap) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLboolean glIsEnabled(GLenum cap) __attribute__((alias("glshim_glIsEnabled"))); +GLboolean glIsEnabled(GLenum cap) __attribute__((alias("glshim_glIsEnabled"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIsList) && !defined(skip_index_glIsList) GLboolean glshim_glIsList(GLuint list) { @@ -2241,7 +2241,7 @@ GLboolean glshim_glIsList(GLuint list) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLboolean glIsList(GLuint list) __attribute__((alias("glshim_glIsList"))); +GLboolean glIsList(GLuint list) __attribute__((alias("glshim_glIsList"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIsQuery) && !defined(skip_index_glIsQuery) GLboolean glshim_glIsQuery(GLuint id) { @@ -2252,7 +2252,7 @@ GLboolean glshim_glIsQuery(GLuint id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLboolean glIsQuery(GLuint id) __attribute__((alias("glshim_glIsQuery"))); +GLboolean glIsQuery(GLuint id) __attribute__((alias("glshim_glIsQuery"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glIsTexture) && !defined(skip_index_glIsTexture) GLboolean glshim_glIsTexture(GLuint texture) { @@ -2263,7 +2263,7 @@ GLboolean glshim_glIsTexture(GLuint texture) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLboolean glIsTexture(GLuint texture) __attribute__((alias("glshim_glIsTexture"))); +GLboolean glIsTexture(GLuint texture) __attribute__((alias("glshim_glIsTexture"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLightModelf) && !defined(skip_index_glLightModelf) void glshim_glLightModelf(GLenum pname, GLfloat param) { @@ -2273,7 +2273,7 @@ void glshim_glLightModelf(GLenum pname, GLfloat param) { packed_data.args.a2 = (GLfloat)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLightModelf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glLightModelf"))); +void glLightModelf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glLightModelf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLightModelfv) && !defined(skip_index_glLightModelfv) void glshim_glLightModelfv(GLenum pname, const GLfloat * params) { @@ -2283,7 +2283,7 @@ void glshim_glLightModelfv(GLenum pname, const GLfloat * params) { packed_data.args.a2 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLightModelfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glLightModelfv"))); +void glLightModelfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glLightModelfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLightModeli) && !defined(skip_index_glLightModeli) void glshim_glLightModeli(GLenum pname, GLint param) { @@ -2293,7 +2293,7 @@ void glshim_glLightModeli(GLenum pname, GLint param) { packed_data.args.a2 = (GLint)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLightModeli(GLenum pname, GLint param) __attribute__((alias("glshim_glLightModeli"))); +void glLightModeli(GLenum pname, GLint param) __attribute__((alias("glshim_glLightModeli"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLightModeliv) && !defined(skip_index_glLightModeliv) void glshim_glLightModeliv(GLenum pname, const GLint * params) { @@ -2303,7 +2303,7 @@ void glshim_glLightModeliv(GLenum pname, const GLint * params) { packed_data.args.a2 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLightModeliv(GLenum pname, const GLint * params) __attribute__((alias("glshim_glLightModeliv"))); +void glLightModeliv(GLenum pname, const GLint * params) __attribute__((alias("glshim_glLightModeliv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLightf) && !defined(skip_index_glLightf) void glshim_glLightf(GLenum light, GLenum pname, GLfloat param) { @@ -2314,7 +2314,7 @@ void glshim_glLightf(GLenum light, GLenum pname, GLfloat param) { packed_data.args.a3 = (GLfloat)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLightf(GLenum light, GLenum pname, GLfloat param) __attribute__((alias("glshim_glLightf"))); +void glLightf(GLenum light, GLenum pname, GLfloat param) __attribute__((alias("glshim_glLightf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLightfv) && !defined(skip_index_glLightfv) void glshim_glLightfv(GLenum light, GLenum pname, const GLfloat * params) { @@ -2325,7 +2325,7 @@ void glshim_glLightfv(GLenum light, GLenum pname, const GLfloat * params) { packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLightfv(GLenum light, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glLightfv"))); +void glLightfv(GLenum light, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glLightfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLighti) && !defined(skip_index_glLighti) void glshim_glLighti(GLenum light, GLenum pname, GLint param) { @@ -2336,7 +2336,7 @@ void glshim_glLighti(GLenum light, GLenum pname, GLint param) { packed_data.args.a3 = (GLint)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLighti(GLenum light, GLenum pname, GLint param) __attribute__((alias("glshim_glLighti"))); +void glLighti(GLenum light, GLenum pname, GLint param) __attribute__((alias("glshim_glLighti"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLightiv) && !defined(skip_index_glLightiv) void glshim_glLightiv(GLenum light, GLenum pname, const GLint * params) { @@ -2347,7 +2347,7 @@ void glshim_glLightiv(GLenum light, GLenum pname, const GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLightiv(GLenum light, GLenum pname, const GLint * params) __attribute__((alias("glshim_glLightiv"))); +void glLightiv(GLenum light, GLenum pname, const GLint * params) __attribute__((alias("glshim_glLightiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLineStipple) && !defined(skip_index_glLineStipple) void glshim_glLineStipple(GLint factor, GLushort pattern) { @@ -2357,7 +2357,7 @@ void glshim_glLineStipple(GLint factor, GLushort pattern) { packed_data.args.a2 = (GLushort)pattern; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLineStipple(GLint factor, GLushort pattern) __attribute__((alias("glshim_glLineStipple"))); +void glLineStipple(GLint factor, GLushort pattern) __attribute__((alias("glshim_glLineStipple"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLineWidth) && !defined(skip_index_glLineWidth) void glshim_glLineWidth(GLfloat width) { @@ -2366,7 +2366,7 @@ void glshim_glLineWidth(GLfloat width) { packed_data.args.a1 = (GLfloat)width; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLineWidth(GLfloat width) __attribute__((alias("glshim_glLineWidth"))); +void glLineWidth(GLfloat width) __attribute__((alias("glshim_glLineWidth"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glListBase) && !defined(skip_index_glListBase) void glshim_glListBase(GLuint base) { @@ -2375,7 +2375,7 @@ void glshim_glListBase(GLuint base) { packed_data.args.a1 = (GLuint)base; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glListBase(GLuint base) __attribute__((alias("glshim_glListBase"))); +void glListBase(GLuint base) __attribute__((alias("glshim_glListBase"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLoadIdentity) && !defined(skip_index_glLoadIdentity) void glshim_glLoadIdentity() { @@ -2383,7 +2383,7 @@ void glshim_glLoadIdentity() { packed_data.func = glLoadIdentity_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLoadIdentity() __attribute__((alias("glshim_glLoadIdentity"))); +void glLoadIdentity() __attribute__((alias("glshim_glLoadIdentity"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLoadMatrixd) && !defined(skip_index_glLoadMatrixd) void glshim_glLoadMatrixd(const GLdouble * m) { @@ -2392,7 +2392,7 @@ void glshim_glLoadMatrixd(const GLdouble * m) { packed_data.args.a1 = (GLdouble *)m; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLoadMatrixd(const GLdouble * m) __attribute__((alias("glshim_glLoadMatrixd"))); +void glLoadMatrixd(const GLdouble * m) __attribute__((alias("glshim_glLoadMatrixd"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLoadMatrixf) && !defined(skip_index_glLoadMatrixf) void glshim_glLoadMatrixf(const GLfloat * m) { @@ -2401,7 +2401,7 @@ void glshim_glLoadMatrixf(const GLfloat * m) { packed_data.args.a1 = (GLfloat *)m; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLoadMatrixf(const GLfloat * m) __attribute__((alias("glshim_glLoadMatrixf"))); +void glLoadMatrixf(const GLfloat * m) __attribute__((alias("glshim_glLoadMatrixf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLoadName) && !defined(skip_index_glLoadName) void glshim_glLoadName(GLuint name) { @@ -2410,7 +2410,7 @@ void glshim_glLoadName(GLuint name) { packed_data.args.a1 = (GLuint)name; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLoadName(GLuint name) __attribute__((alias("glshim_glLoadName"))); +void glLoadName(GLuint name) __attribute__((alias("glshim_glLoadName"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLoadTransposeMatrixd) && !defined(skip_index_glLoadTransposeMatrixd) void glshim_glLoadTransposeMatrixd(const GLdouble * m) { @@ -2419,7 +2419,7 @@ void glshim_glLoadTransposeMatrixd(const GLdouble * m) { packed_data.args.a1 = (GLdouble *)m; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLoadTransposeMatrixd(const GLdouble * m) __attribute__((alias("glshim_glLoadTransposeMatrixd"))); +void glLoadTransposeMatrixd(const GLdouble * m) __attribute__((alias("glshim_glLoadTransposeMatrixd"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLoadTransposeMatrixf) && !defined(skip_index_glLoadTransposeMatrixf) void glshim_glLoadTransposeMatrixf(const GLfloat * m) { @@ -2428,7 +2428,7 @@ void glshim_glLoadTransposeMatrixf(const GLfloat * m) { packed_data.args.a1 = (GLfloat *)m; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLoadTransposeMatrixf(const GLfloat * m) __attribute__((alias("glshim_glLoadTransposeMatrixf"))); +void glLoadTransposeMatrixf(const GLfloat * m) __attribute__((alias("glshim_glLoadTransposeMatrixf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glLogicOp) && !defined(skip_index_glLogicOp) void glshim_glLogicOp(GLenum opcode) { @@ -2437,7 +2437,7 @@ void glshim_glLogicOp(GLenum opcode) { packed_data.args.a1 = (GLenum)opcode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glLogicOp(GLenum opcode) __attribute__((alias("glshim_glLogicOp"))); +void glLogicOp(GLenum opcode) __attribute__((alias("glshim_glLogicOp"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMap1d) && !defined(skip_index_glMap1d) void glshim_glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble * points) { @@ -2451,7 +2451,7 @@ void glshim_glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint packed_data.args.a6 = (GLdouble *)points; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble * points) __attribute__((alias("glshim_glMap1d"))); +void glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble * points) __attribute__((alias("glshim_glMap1d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMap1f) && !defined(skip_index_glMap1f) void glshim_glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat * points) { @@ -2465,7 +2465,7 @@ void glshim_glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint o packed_data.args.a6 = (GLfloat *)points; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat * points) __attribute__((alias("glshim_glMap1f"))); +void glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat * points) __attribute__((alias("glshim_glMap1f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMap2d) && !defined(skip_index_glMap2d) void glshim_glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble * points) { @@ -2483,7 +2483,7 @@ void glshim_glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLin packed_data.args.a10 = (GLdouble *)points; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble * points) __attribute__((alias("glshim_glMap2d"))); +void glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble * points) __attribute__((alias("glshim_glMap2d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMap2f) && !defined(skip_index_glMap2f) void glshim_glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat * points) { @@ -2501,7 +2501,7 @@ void glshim_glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint packed_data.args.a10 = (GLfloat *)points; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat * points) __attribute__((alias("glshim_glMap2f"))); +void glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat * points) __attribute__((alias("glshim_glMap2f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMapBuffer) && !defined(skip_index_glMapBuffer) GLvoid * glshim_glMapBuffer(GLenum target, GLenum access) { @@ -2513,7 +2513,7 @@ GLvoid * glshim_glMapBuffer(GLenum target, GLenum access) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLvoid * glMapBuffer(GLenum target, GLenum access) __attribute__((alias("glshim_glMapBuffer"))); +GLvoid * glMapBuffer(GLenum target, GLenum access) __attribute__((alias("glshim_glMapBuffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMapGrid1d) && !defined(skip_index_glMapGrid1d) void glshim_glMapGrid1d(GLint un, GLdouble u1, GLdouble u2) { @@ -2524,7 +2524,7 @@ void glshim_glMapGrid1d(GLint un, GLdouble u1, GLdouble u2) { packed_data.args.a3 = (GLdouble)u2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMapGrid1d(GLint un, GLdouble u1, GLdouble u2) __attribute__((alias("glshim_glMapGrid1d"))); +void glMapGrid1d(GLint un, GLdouble u1, GLdouble u2) __attribute__((alias("glshim_glMapGrid1d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMapGrid1f) && !defined(skip_index_glMapGrid1f) void glshim_glMapGrid1f(GLint un, GLfloat u1, GLfloat u2) { @@ -2535,7 +2535,7 @@ void glshim_glMapGrid1f(GLint un, GLfloat u1, GLfloat u2) { packed_data.args.a3 = (GLfloat)u2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMapGrid1f(GLint un, GLfloat u1, GLfloat u2) __attribute__((alias("glshim_glMapGrid1f"))); +void glMapGrid1f(GLint un, GLfloat u1, GLfloat u2) __attribute__((alias("glshim_glMapGrid1f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMapGrid2d) && !defined(skip_index_glMapGrid2d) void glshim_glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2) { @@ -2549,7 +2549,7 @@ void glshim_glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v packed_data.args.a6 = (GLdouble)v2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2) __attribute__((alias("glshim_glMapGrid2d"))); +void glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2) __attribute__((alias("glshim_glMapGrid2d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMapGrid2f) && !defined(skip_index_glMapGrid2f) void glshim_glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2) { @@ -2563,7 +2563,7 @@ void glshim_glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, packed_data.args.a6 = (GLfloat)v2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2) __attribute__((alias("glshim_glMapGrid2f"))); +void glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2) __attribute__((alias("glshim_glMapGrid2f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMaterialf) && !defined(skip_index_glMaterialf) void glshim_glMaterialf(GLenum face, GLenum pname, GLfloat param) { @@ -2574,7 +2574,7 @@ void glshim_glMaterialf(GLenum face, GLenum pname, GLfloat param) { packed_data.args.a3 = (GLfloat)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMaterialf(GLenum face, GLenum pname, GLfloat param) __attribute__((alias("glshim_glMaterialf"))); +void glMaterialf(GLenum face, GLenum pname, GLfloat param) __attribute__((alias("glshim_glMaterialf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMaterialfv) && !defined(skip_index_glMaterialfv) void glshim_glMaterialfv(GLenum face, GLenum pname, const GLfloat * params) { @@ -2585,7 +2585,7 @@ void glshim_glMaterialfv(GLenum face, GLenum pname, const GLfloat * params) { packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMaterialfv(GLenum face, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glMaterialfv"))); +void glMaterialfv(GLenum face, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glMaterialfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMateriali) && !defined(skip_index_glMateriali) void glshim_glMateriali(GLenum face, GLenum pname, GLint param) { @@ -2596,7 +2596,7 @@ void glshim_glMateriali(GLenum face, GLenum pname, GLint param) { packed_data.args.a3 = (GLint)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMateriali(GLenum face, GLenum pname, GLint param) __attribute__((alias("glshim_glMateriali"))); +void glMateriali(GLenum face, GLenum pname, GLint param) __attribute__((alias("glshim_glMateriali"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMaterialiv) && !defined(skip_index_glMaterialiv) void glshim_glMaterialiv(GLenum face, GLenum pname, const GLint * params) { @@ -2607,7 +2607,7 @@ void glshim_glMaterialiv(GLenum face, GLenum pname, const GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMaterialiv(GLenum face, GLenum pname, const GLint * params) __attribute__((alias("glshim_glMaterialiv"))); +void glMaterialiv(GLenum face, GLenum pname, const GLint * params) __attribute__((alias("glshim_glMaterialiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMatrixMode) && !defined(skip_index_glMatrixMode) void glshim_glMatrixMode(GLenum mode) { @@ -2616,7 +2616,7 @@ void glshim_glMatrixMode(GLenum mode) { packed_data.args.a1 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMatrixMode(GLenum mode) __attribute__((alias("glshim_glMatrixMode"))); +void glMatrixMode(GLenum mode) __attribute__((alias("glshim_glMatrixMode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMinmax) && !defined(skip_index_glMinmax) void glshim_glMinmax(GLenum target, GLenum internalformat, GLboolean sink) { @@ -2627,7 +2627,7 @@ void glshim_glMinmax(GLenum target, GLenum internalformat, GLboolean sink) { packed_data.args.a3 = (GLboolean)sink; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMinmax(GLenum target, GLenum internalformat, GLboolean sink) __attribute__((alias("glshim_glMinmax"))); +void glMinmax(GLenum target, GLenum internalformat, GLboolean sink) __attribute__((alias("glshim_glMinmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultMatrixd) && !defined(skip_index_glMultMatrixd) void glshim_glMultMatrixd(const GLdouble * m) { @@ -2636,7 +2636,7 @@ void glshim_glMultMatrixd(const GLdouble * m) { packed_data.args.a1 = (GLdouble *)m; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultMatrixd(const GLdouble * m) __attribute__((alias("glshim_glMultMatrixd"))); +void glMultMatrixd(const GLdouble * m) __attribute__((alias("glshim_glMultMatrixd"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultMatrixf) && !defined(skip_index_glMultMatrixf) void glshim_glMultMatrixf(const GLfloat * m) { @@ -2645,7 +2645,7 @@ void glshim_glMultMatrixf(const GLfloat * m) { packed_data.args.a1 = (GLfloat *)m; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultMatrixf(const GLfloat * m) __attribute__((alias("glshim_glMultMatrixf"))); +void glMultMatrixf(const GLfloat * m) __attribute__((alias("glshim_glMultMatrixf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultTransposeMatrixd) && !defined(skip_index_glMultTransposeMatrixd) void glshim_glMultTransposeMatrixd(const GLdouble * m) { @@ -2654,7 +2654,7 @@ void glshim_glMultTransposeMatrixd(const GLdouble * m) { packed_data.args.a1 = (GLdouble *)m; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultTransposeMatrixd(const GLdouble * m) __attribute__((alias("glshim_glMultTransposeMatrixd"))); +void glMultTransposeMatrixd(const GLdouble * m) __attribute__((alias("glshim_glMultTransposeMatrixd"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultTransposeMatrixf) && !defined(skip_index_glMultTransposeMatrixf) void glshim_glMultTransposeMatrixf(const GLfloat * m) { @@ -2663,7 +2663,7 @@ void glshim_glMultTransposeMatrixf(const GLfloat * m) { packed_data.args.a1 = (GLfloat *)m; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultTransposeMatrixf(const GLfloat * m) __attribute__((alias("glshim_glMultTransposeMatrixf"))); +void glMultTransposeMatrixf(const GLfloat * m) __attribute__((alias("glshim_glMultTransposeMatrixf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiDrawArrays) && !defined(skip_index_glMultiDrawArrays) void glshim_glMultiDrawArrays(GLenum mode, const GLint * first, const GLsizei * count, GLsizei drawcount) { @@ -2675,7 +2675,7 @@ void glshim_glMultiDrawArrays(GLenum mode, const GLint * first, const GLsizei * packed_data.args.a4 = (GLsizei)drawcount; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiDrawArrays(GLenum mode, const GLint * first, const GLsizei * count, GLsizei drawcount) __attribute__((alias("glshim_glMultiDrawArrays"))); +void glMultiDrawArrays(GLenum mode, const GLint * first, const GLsizei * count, GLsizei drawcount) __attribute__((alias("glshim_glMultiDrawArrays"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiDrawElements) && !defined(skip_index_glMultiDrawElements) void glshim_glMultiDrawElements(GLenum mode, const GLsizei * count, GLenum type, GLvoid*const * indices, GLsizei drawcount) { @@ -2688,7 +2688,7 @@ void glshim_glMultiDrawElements(GLenum mode, const GLsizei * count, GLenum type, packed_data.args.a5 = (GLsizei)drawcount; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiDrawElements(GLenum mode, const GLsizei * count, GLenum type, GLvoid*const * indices, GLsizei drawcount) __attribute__((alias("glshim_glMultiDrawElements"))); +void glMultiDrawElements(GLenum mode, const GLsizei * count, GLenum type, GLvoid*const * indices, GLsizei drawcount) __attribute__((alias("glshim_glMultiDrawElements"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord1d) && !defined(skip_index_glMultiTexCoord1d) void glshim_glMultiTexCoord1d(GLenum target, GLdouble s) { @@ -2698,7 +2698,7 @@ void glshim_glMultiTexCoord1d(GLenum target, GLdouble s) { packed_data.args.a2 = (GLdouble)s; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord1d(GLenum target, GLdouble s) __attribute__((alias("glshim_glMultiTexCoord1d"))); +void glMultiTexCoord1d(GLenum target, GLdouble s) __attribute__((alias("glshim_glMultiTexCoord1d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord1dv) && !defined(skip_index_glMultiTexCoord1dv) void glshim_glMultiTexCoord1dv(GLenum target, const GLdouble * v) { @@ -2708,7 +2708,7 @@ void glshim_glMultiTexCoord1dv(GLenum target, const GLdouble * v) { packed_data.args.a2 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord1dv(GLenum target, const GLdouble * v) __attribute__((alias("glshim_glMultiTexCoord1dv"))); +void glMultiTexCoord1dv(GLenum target, const GLdouble * v) __attribute__((alias("glshim_glMultiTexCoord1dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord1f) && !defined(skip_index_glMultiTexCoord1f) void glshim_glMultiTexCoord1f(GLenum target, GLfloat s) { @@ -2718,7 +2718,7 @@ void glshim_glMultiTexCoord1f(GLenum target, GLfloat s) { packed_data.args.a2 = (GLfloat)s; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord1f(GLenum target, GLfloat s) __attribute__((alias("glshim_glMultiTexCoord1f"))); +void glMultiTexCoord1f(GLenum target, GLfloat s) __attribute__((alias("glshim_glMultiTexCoord1f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord1fv) && !defined(skip_index_glMultiTexCoord1fv) void glshim_glMultiTexCoord1fv(GLenum target, const GLfloat * v) { @@ -2728,7 +2728,7 @@ void glshim_glMultiTexCoord1fv(GLenum target, const GLfloat * v) { packed_data.args.a2 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord1fv(GLenum target, const GLfloat * v) __attribute__((alias("glshim_glMultiTexCoord1fv"))); +void glMultiTexCoord1fv(GLenum target, const GLfloat * v) __attribute__((alias("glshim_glMultiTexCoord1fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord1i) && !defined(skip_index_glMultiTexCoord1i) void glshim_glMultiTexCoord1i(GLenum target, GLint s) { @@ -2738,7 +2738,7 @@ void glshim_glMultiTexCoord1i(GLenum target, GLint s) { packed_data.args.a2 = (GLint)s; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord1i(GLenum target, GLint s) __attribute__((alias("glshim_glMultiTexCoord1i"))); +void glMultiTexCoord1i(GLenum target, GLint s) __attribute__((alias("glshim_glMultiTexCoord1i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord1iv) && !defined(skip_index_glMultiTexCoord1iv) void glshim_glMultiTexCoord1iv(GLenum target, const GLint * v) { @@ -2748,7 +2748,7 @@ void glshim_glMultiTexCoord1iv(GLenum target, const GLint * v) { packed_data.args.a2 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord1iv(GLenum target, const GLint * v) __attribute__((alias("glshim_glMultiTexCoord1iv"))); +void glMultiTexCoord1iv(GLenum target, const GLint * v) __attribute__((alias("glshim_glMultiTexCoord1iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord1s) && !defined(skip_index_glMultiTexCoord1s) void glshim_glMultiTexCoord1s(GLenum target, GLshort s) { @@ -2758,7 +2758,7 @@ void glshim_glMultiTexCoord1s(GLenum target, GLshort s) { packed_data.args.a2 = (GLshort)s; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord1s(GLenum target, GLshort s) __attribute__((alias("glshim_glMultiTexCoord1s"))); +void glMultiTexCoord1s(GLenum target, GLshort s) __attribute__((alias("glshim_glMultiTexCoord1s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord1sv) && !defined(skip_index_glMultiTexCoord1sv) void glshim_glMultiTexCoord1sv(GLenum target, const GLshort * v) { @@ -2768,7 +2768,7 @@ void glshim_glMultiTexCoord1sv(GLenum target, const GLshort * v) { packed_data.args.a2 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord1sv(GLenum target, const GLshort * v) __attribute__((alias("glshim_glMultiTexCoord1sv"))); +void glMultiTexCoord1sv(GLenum target, const GLshort * v) __attribute__((alias("glshim_glMultiTexCoord1sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord2d) && !defined(skip_index_glMultiTexCoord2d) void glshim_glMultiTexCoord2d(GLenum target, GLdouble s, GLdouble t) { @@ -2779,7 +2779,7 @@ void glshim_glMultiTexCoord2d(GLenum target, GLdouble s, GLdouble t) { packed_data.args.a3 = (GLdouble)t; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord2d(GLenum target, GLdouble s, GLdouble t) __attribute__((alias("glshim_glMultiTexCoord2d"))); +void glMultiTexCoord2d(GLenum target, GLdouble s, GLdouble t) __attribute__((alias("glshim_glMultiTexCoord2d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord2dv) && !defined(skip_index_glMultiTexCoord2dv) void glshim_glMultiTexCoord2dv(GLenum target, const GLdouble * v) { @@ -2789,7 +2789,7 @@ void glshim_glMultiTexCoord2dv(GLenum target, const GLdouble * v) { packed_data.args.a2 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord2dv(GLenum target, const GLdouble * v) __attribute__((alias("glshim_glMultiTexCoord2dv"))); +void glMultiTexCoord2dv(GLenum target, const GLdouble * v) __attribute__((alias("glshim_glMultiTexCoord2dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord2f) && !defined(skip_index_glMultiTexCoord2f) void glshim_glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t) { @@ -2800,7 +2800,7 @@ void glshim_glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t) { packed_data.args.a3 = (GLfloat)t; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t) __attribute__((alias("glshim_glMultiTexCoord2f"))); +void glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t) __attribute__((alias("glshim_glMultiTexCoord2f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord2fv) && !defined(skip_index_glMultiTexCoord2fv) void glshim_glMultiTexCoord2fv(GLenum target, const GLfloat * v) { @@ -2810,7 +2810,7 @@ void glshim_glMultiTexCoord2fv(GLenum target, const GLfloat * v) { packed_data.args.a2 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord2fv(GLenum target, const GLfloat * v) __attribute__((alias("glshim_glMultiTexCoord2fv"))); +void glMultiTexCoord2fv(GLenum target, const GLfloat * v) __attribute__((alias("glshim_glMultiTexCoord2fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord2i) && !defined(skip_index_glMultiTexCoord2i) void glshim_glMultiTexCoord2i(GLenum target, GLint s, GLint t) { @@ -2821,7 +2821,7 @@ void glshim_glMultiTexCoord2i(GLenum target, GLint s, GLint t) { packed_data.args.a3 = (GLint)t; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord2i(GLenum target, GLint s, GLint t) __attribute__((alias("glshim_glMultiTexCoord2i"))); +void glMultiTexCoord2i(GLenum target, GLint s, GLint t) __attribute__((alias("glshim_glMultiTexCoord2i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord2iv) && !defined(skip_index_glMultiTexCoord2iv) void glshim_glMultiTexCoord2iv(GLenum target, const GLint * v) { @@ -2831,7 +2831,7 @@ void glshim_glMultiTexCoord2iv(GLenum target, const GLint * v) { packed_data.args.a2 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord2iv(GLenum target, const GLint * v) __attribute__((alias("glshim_glMultiTexCoord2iv"))); +void glMultiTexCoord2iv(GLenum target, const GLint * v) __attribute__((alias("glshim_glMultiTexCoord2iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord2s) && !defined(skip_index_glMultiTexCoord2s) void glshim_glMultiTexCoord2s(GLenum target, GLshort s, GLshort t) { @@ -2842,7 +2842,7 @@ void glshim_glMultiTexCoord2s(GLenum target, GLshort s, GLshort t) { packed_data.args.a3 = (GLshort)t; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord2s(GLenum target, GLshort s, GLshort t) __attribute__((alias("glshim_glMultiTexCoord2s"))); +void glMultiTexCoord2s(GLenum target, GLshort s, GLshort t) __attribute__((alias("glshim_glMultiTexCoord2s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord2sv) && !defined(skip_index_glMultiTexCoord2sv) void glshim_glMultiTexCoord2sv(GLenum target, const GLshort * v) { @@ -2852,7 +2852,7 @@ void glshim_glMultiTexCoord2sv(GLenum target, const GLshort * v) { packed_data.args.a2 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord2sv(GLenum target, const GLshort * v) __attribute__((alias("glshim_glMultiTexCoord2sv"))); +void glMultiTexCoord2sv(GLenum target, const GLshort * v) __attribute__((alias("glshim_glMultiTexCoord2sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord3d) && !defined(skip_index_glMultiTexCoord3d) void glshim_glMultiTexCoord3d(GLenum target, GLdouble s, GLdouble t, GLdouble r) { @@ -2864,7 +2864,7 @@ void glshim_glMultiTexCoord3d(GLenum target, GLdouble s, GLdouble t, GLdouble r) packed_data.args.a4 = (GLdouble)r; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord3d(GLenum target, GLdouble s, GLdouble t, GLdouble r) __attribute__((alias("glshim_glMultiTexCoord3d"))); +void glMultiTexCoord3d(GLenum target, GLdouble s, GLdouble t, GLdouble r) __attribute__((alias("glshim_glMultiTexCoord3d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord3dv) && !defined(skip_index_glMultiTexCoord3dv) void glshim_glMultiTexCoord3dv(GLenum target, const GLdouble * v) { @@ -2874,7 +2874,7 @@ void glshim_glMultiTexCoord3dv(GLenum target, const GLdouble * v) { packed_data.args.a2 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord3dv(GLenum target, const GLdouble * v) __attribute__((alias("glshim_glMultiTexCoord3dv"))); +void glMultiTexCoord3dv(GLenum target, const GLdouble * v) __attribute__((alias("glshim_glMultiTexCoord3dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord3f) && !defined(skip_index_glMultiTexCoord3f) void glshim_glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r) { @@ -2886,7 +2886,7 @@ void glshim_glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r) { packed_data.args.a4 = (GLfloat)r; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r) __attribute__((alias("glshim_glMultiTexCoord3f"))); +void glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r) __attribute__((alias("glshim_glMultiTexCoord3f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord3fv) && !defined(skip_index_glMultiTexCoord3fv) void glshim_glMultiTexCoord3fv(GLenum target, const GLfloat * v) { @@ -2896,7 +2896,7 @@ void glshim_glMultiTexCoord3fv(GLenum target, const GLfloat * v) { packed_data.args.a2 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord3fv(GLenum target, const GLfloat * v) __attribute__((alias("glshim_glMultiTexCoord3fv"))); +void glMultiTexCoord3fv(GLenum target, const GLfloat * v) __attribute__((alias("glshim_glMultiTexCoord3fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord3i) && !defined(skip_index_glMultiTexCoord3i) void glshim_glMultiTexCoord3i(GLenum target, GLint s, GLint t, GLint r) { @@ -2908,7 +2908,7 @@ void glshim_glMultiTexCoord3i(GLenum target, GLint s, GLint t, GLint r) { packed_data.args.a4 = (GLint)r; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord3i(GLenum target, GLint s, GLint t, GLint r) __attribute__((alias("glshim_glMultiTexCoord3i"))); +void glMultiTexCoord3i(GLenum target, GLint s, GLint t, GLint r) __attribute__((alias("glshim_glMultiTexCoord3i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord3iv) && !defined(skip_index_glMultiTexCoord3iv) void glshim_glMultiTexCoord3iv(GLenum target, const GLint * v) { @@ -2918,7 +2918,7 @@ void glshim_glMultiTexCoord3iv(GLenum target, const GLint * v) { packed_data.args.a2 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord3iv(GLenum target, const GLint * v) __attribute__((alias("glshim_glMultiTexCoord3iv"))); +void glMultiTexCoord3iv(GLenum target, const GLint * v) __attribute__((alias("glshim_glMultiTexCoord3iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord3s) && !defined(skip_index_glMultiTexCoord3s) void glshim_glMultiTexCoord3s(GLenum target, GLshort s, GLshort t, GLshort r) { @@ -2930,7 +2930,7 @@ void glshim_glMultiTexCoord3s(GLenum target, GLshort s, GLshort t, GLshort r) { packed_data.args.a4 = (GLshort)r; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord3s(GLenum target, GLshort s, GLshort t, GLshort r) __attribute__((alias("glshim_glMultiTexCoord3s"))); +void glMultiTexCoord3s(GLenum target, GLshort s, GLshort t, GLshort r) __attribute__((alias("glshim_glMultiTexCoord3s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord3sv) && !defined(skip_index_glMultiTexCoord3sv) void glshim_glMultiTexCoord3sv(GLenum target, const GLshort * v) { @@ -2940,7 +2940,7 @@ void glshim_glMultiTexCoord3sv(GLenum target, const GLshort * v) { packed_data.args.a2 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord3sv(GLenum target, const GLshort * v) __attribute__((alias("glshim_glMultiTexCoord3sv"))); +void glMultiTexCoord3sv(GLenum target, const GLshort * v) __attribute__((alias("glshim_glMultiTexCoord3sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord4d) && !defined(skip_index_glMultiTexCoord4d) void glshim_glMultiTexCoord4d(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q) { @@ -2953,7 +2953,7 @@ void glshim_glMultiTexCoord4d(GLenum target, GLdouble s, GLdouble t, GLdouble r, packed_data.args.a5 = (GLdouble)q; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord4d(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q) __attribute__((alias("glshim_glMultiTexCoord4d"))); +void glMultiTexCoord4d(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q) __attribute__((alias("glshim_glMultiTexCoord4d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord4dv) && !defined(skip_index_glMultiTexCoord4dv) void glshim_glMultiTexCoord4dv(GLenum target, const GLdouble * v) { @@ -2963,7 +2963,7 @@ void glshim_glMultiTexCoord4dv(GLenum target, const GLdouble * v) { packed_data.args.a2 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord4dv(GLenum target, const GLdouble * v) __attribute__((alias("glshim_glMultiTexCoord4dv"))); +void glMultiTexCoord4dv(GLenum target, const GLdouble * v) __attribute__((alias("glshim_glMultiTexCoord4dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord4f) && !defined(skip_index_glMultiTexCoord4f) void glshim_glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) { @@ -2976,7 +2976,7 @@ void glshim_glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GL packed_data.args.a5 = (GLfloat)q; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) __attribute__((alias("glshim_glMultiTexCoord4f"))); +void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) __attribute__((alias("glshim_glMultiTexCoord4f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord4fv) && !defined(skip_index_glMultiTexCoord4fv) void glshim_glMultiTexCoord4fv(GLenum target, const GLfloat * v) { @@ -2986,7 +2986,7 @@ void glshim_glMultiTexCoord4fv(GLenum target, const GLfloat * v) { packed_data.args.a2 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord4fv(GLenum target, const GLfloat * v) __attribute__((alias("glshim_glMultiTexCoord4fv"))); +void glMultiTexCoord4fv(GLenum target, const GLfloat * v) __attribute__((alias("glshim_glMultiTexCoord4fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord4i) && !defined(skip_index_glMultiTexCoord4i) void glshim_glMultiTexCoord4i(GLenum target, GLint s, GLint t, GLint r, GLint q) { @@ -2999,7 +2999,7 @@ void glshim_glMultiTexCoord4i(GLenum target, GLint s, GLint t, GLint r, GLint q) packed_data.args.a5 = (GLint)q; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord4i(GLenum target, GLint s, GLint t, GLint r, GLint q) __attribute__((alias("glshim_glMultiTexCoord4i"))); +void glMultiTexCoord4i(GLenum target, GLint s, GLint t, GLint r, GLint q) __attribute__((alias("glshim_glMultiTexCoord4i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord4iv) && !defined(skip_index_glMultiTexCoord4iv) void glshim_glMultiTexCoord4iv(GLenum target, const GLint * v) { @@ -3009,7 +3009,7 @@ void glshim_glMultiTexCoord4iv(GLenum target, const GLint * v) { packed_data.args.a2 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord4iv(GLenum target, const GLint * v) __attribute__((alias("glshim_glMultiTexCoord4iv"))); +void glMultiTexCoord4iv(GLenum target, const GLint * v) __attribute__((alias("glshim_glMultiTexCoord4iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord4s) && !defined(skip_index_glMultiTexCoord4s) void glshim_glMultiTexCoord4s(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q) { @@ -3022,7 +3022,7 @@ void glshim_glMultiTexCoord4s(GLenum target, GLshort s, GLshort t, GLshort r, GL packed_data.args.a5 = (GLshort)q; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord4s(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q) __attribute__((alias("glshim_glMultiTexCoord4s"))); +void glMultiTexCoord4s(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q) __attribute__((alias("glshim_glMultiTexCoord4s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glMultiTexCoord4sv) && !defined(skip_index_glMultiTexCoord4sv) void glshim_glMultiTexCoord4sv(GLenum target, const GLshort * v) { @@ -3032,7 +3032,7 @@ void glshim_glMultiTexCoord4sv(GLenum target, const GLshort * v) { packed_data.args.a2 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glMultiTexCoord4sv(GLenum target, const GLshort * v) __attribute__((alias("glshim_glMultiTexCoord4sv"))); +void glMultiTexCoord4sv(GLenum target, const GLshort * v) __attribute__((alias("glshim_glMultiTexCoord4sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNewList) && !defined(skip_index_glNewList) void glshim_glNewList(GLuint list, GLenum mode) { @@ -3042,7 +3042,7 @@ void glshim_glNewList(GLuint list, GLenum mode) { packed_data.args.a2 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNewList(GLuint list, GLenum mode) __attribute__((alias("glshim_glNewList"))); +void glNewList(GLuint list, GLenum mode) __attribute__((alias("glshim_glNewList"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormal3b) && !defined(skip_index_glNormal3b) void glshim_glNormal3b(GLbyte nx, GLbyte ny, GLbyte nz) { @@ -3053,7 +3053,7 @@ void glshim_glNormal3b(GLbyte nx, GLbyte ny, GLbyte nz) { packed_data.args.a3 = (GLbyte)nz; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormal3b(GLbyte nx, GLbyte ny, GLbyte nz) __attribute__((alias("glshim_glNormal3b"))); +void glNormal3b(GLbyte nx, GLbyte ny, GLbyte nz) __attribute__((alias("glshim_glNormal3b"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormal3bv) && !defined(skip_index_glNormal3bv) void glshim_glNormal3bv(const GLbyte * v) { @@ -3062,7 +3062,7 @@ void glshim_glNormal3bv(const GLbyte * v) { packed_data.args.a1 = (GLbyte *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormal3bv(const GLbyte * v) __attribute__((alias("glshim_glNormal3bv"))); +void glNormal3bv(const GLbyte * v) __attribute__((alias("glshim_glNormal3bv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormal3d) && !defined(skip_index_glNormal3d) void glshim_glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz) { @@ -3073,7 +3073,7 @@ void glshim_glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz) { packed_data.args.a3 = (GLdouble)nz; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz) __attribute__((alias("glshim_glNormal3d"))); +void glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz) __attribute__((alias("glshim_glNormal3d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormal3dv) && !defined(skip_index_glNormal3dv) void glshim_glNormal3dv(const GLdouble * v) { @@ -3082,7 +3082,7 @@ void glshim_glNormal3dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormal3dv(const GLdouble * v) __attribute__((alias("glshim_glNormal3dv"))); +void glNormal3dv(const GLdouble * v) __attribute__((alias("glshim_glNormal3dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormal3f) && !defined(skip_index_glNormal3f) void glshim_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) { @@ -3093,7 +3093,7 @@ void glshim_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) { packed_data.args.a3 = (GLfloat)nz; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) __attribute__((alias("glshim_glNormal3f"))); +void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) __attribute__((alias("glshim_glNormal3f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormal3fv) && !defined(skip_index_glNormal3fv) void glshim_glNormal3fv(const GLfloat * v) { @@ -3102,7 +3102,7 @@ void glshim_glNormal3fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormal3fv(const GLfloat * v) __attribute__((alias("glshim_glNormal3fv"))); +void glNormal3fv(const GLfloat * v) __attribute__((alias("glshim_glNormal3fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormal3i) && !defined(skip_index_glNormal3i) void glshim_glNormal3i(GLint nx, GLint ny, GLint nz) { @@ -3113,7 +3113,7 @@ void glshim_glNormal3i(GLint nx, GLint ny, GLint nz) { packed_data.args.a3 = (GLint)nz; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormal3i(GLint nx, GLint ny, GLint nz) __attribute__((alias("glshim_glNormal3i"))); +void glNormal3i(GLint nx, GLint ny, GLint nz) __attribute__((alias("glshim_glNormal3i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormal3iv) && !defined(skip_index_glNormal3iv) void glshim_glNormal3iv(const GLint * v) { @@ -3122,7 +3122,7 @@ void glshim_glNormal3iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormal3iv(const GLint * v) __attribute__((alias("glshim_glNormal3iv"))); +void glNormal3iv(const GLint * v) __attribute__((alias("glshim_glNormal3iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormal3s) && !defined(skip_index_glNormal3s) void glshim_glNormal3s(GLshort nx, GLshort ny, GLshort nz) { @@ -3133,7 +3133,7 @@ void glshim_glNormal3s(GLshort nx, GLshort ny, GLshort nz) { packed_data.args.a3 = (GLshort)nz; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormal3s(GLshort nx, GLshort ny, GLshort nz) __attribute__((alias("glshim_glNormal3s"))); +void glNormal3s(GLshort nx, GLshort ny, GLshort nz) __attribute__((alias("glshim_glNormal3s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormal3sv) && !defined(skip_index_glNormal3sv) void glshim_glNormal3sv(const GLshort * v) { @@ -3142,7 +3142,7 @@ void glshim_glNormal3sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormal3sv(const GLshort * v) __attribute__((alias("glshim_glNormal3sv"))); +void glNormal3sv(const GLshort * v) __attribute__((alias("glshim_glNormal3sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glNormalPointer) && !defined(skip_index_glNormalPointer) void glshim_glNormalPointer(GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -3153,7 +3153,7 @@ void glshim_glNormalPointer(GLenum type, GLsizei stride, const GLvoid * pointer) packed_data.args.a3 = (GLvoid *)pointer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glNormalPointer(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glNormalPointer"))); +void glNormalPointer(GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glNormalPointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glOrtho) && !defined(skip_index_glOrtho) void glshim_glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar) { @@ -3167,7 +3167,7 @@ void glshim_glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top packed_data.args.a6 = (GLdouble)zFar; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar) __attribute__((alias("glshim_glOrtho"))); +void glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar) __attribute__((alias("glshim_glOrtho"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPassThrough) && !defined(skip_index_glPassThrough) void glshim_glPassThrough(GLfloat token) { @@ -3176,7 +3176,7 @@ void glshim_glPassThrough(GLfloat token) { packed_data.args.a1 = (GLfloat)token; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPassThrough(GLfloat token) __attribute__((alias("glshim_glPassThrough"))); +void glPassThrough(GLfloat token) __attribute__((alias("glshim_glPassThrough"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPixelMapfv) && !defined(skip_index_glPixelMapfv) void glshim_glPixelMapfv(GLenum map, GLsizei mapsize, const GLfloat * values) { @@ -3187,7 +3187,7 @@ void glshim_glPixelMapfv(GLenum map, GLsizei mapsize, const GLfloat * values) { packed_data.args.a3 = (GLfloat *)values; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPixelMapfv(GLenum map, GLsizei mapsize, const GLfloat * values) __attribute__((alias("glshim_glPixelMapfv"))); +void glPixelMapfv(GLenum map, GLsizei mapsize, const GLfloat * values) __attribute__((alias("glshim_glPixelMapfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPixelMapuiv) && !defined(skip_index_glPixelMapuiv) void glshim_glPixelMapuiv(GLenum map, GLsizei mapsize, const GLuint * values) { @@ -3198,7 +3198,7 @@ void glshim_glPixelMapuiv(GLenum map, GLsizei mapsize, const GLuint * values) { packed_data.args.a3 = (GLuint *)values; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPixelMapuiv(GLenum map, GLsizei mapsize, const GLuint * values) __attribute__((alias("glshim_glPixelMapuiv"))); +void glPixelMapuiv(GLenum map, GLsizei mapsize, const GLuint * values) __attribute__((alias("glshim_glPixelMapuiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPixelMapusv) && !defined(skip_index_glPixelMapusv) void glshim_glPixelMapusv(GLenum map, GLsizei mapsize, const GLushort * values) { @@ -3209,7 +3209,7 @@ void glshim_glPixelMapusv(GLenum map, GLsizei mapsize, const GLushort * values) packed_data.args.a3 = (GLushort *)values; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPixelMapusv(GLenum map, GLsizei mapsize, const GLushort * values) __attribute__((alias("glshim_glPixelMapusv"))); +void glPixelMapusv(GLenum map, GLsizei mapsize, const GLushort * values) __attribute__((alias("glshim_glPixelMapusv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPixelStoref) && !defined(skip_index_glPixelStoref) void glshim_glPixelStoref(GLenum pname, GLfloat param) { @@ -3219,7 +3219,7 @@ void glshim_glPixelStoref(GLenum pname, GLfloat param) { packed_data.args.a2 = (GLfloat)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPixelStoref(GLenum pname, GLfloat param) __attribute__((alias("glshim_glPixelStoref"))); +void glPixelStoref(GLenum pname, GLfloat param) __attribute__((alias("glshim_glPixelStoref"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPixelStorei) && !defined(skip_index_glPixelStorei) void glshim_glPixelStorei(GLenum pname, GLint param) { @@ -3229,7 +3229,7 @@ void glshim_glPixelStorei(GLenum pname, GLint param) { packed_data.args.a2 = (GLint)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPixelStorei(GLenum pname, GLint param) __attribute__((alias("glshim_glPixelStorei"))); +void glPixelStorei(GLenum pname, GLint param) __attribute__((alias("glshim_glPixelStorei"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPixelTransferf) && !defined(skip_index_glPixelTransferf) void glshim_glPixelTransferf(GLenum pname, GLfloat param) { @@ -3239,7 +3239,7 @@ void glshim_glPixelTransferf(GLenum pname, GLfloat param) { packed_data.args.a2 = (GLfloat)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPixelTransferf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glPixelTransferf"))); +void glPixelTransferf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glPixelTransferf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPixelTransferi) && !defined(skip_index_glPixelTransferi) void glshim_glPixelTransferi(GLenum pname, GLint param) { @@ -3249,7 +3249,7 @@ void glshim_glPixelTransferi(GLenum pname, GLint param) { packed_data.args.a2 = (GLint)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPixelTransferi(GLenum pname, GLint param) __attribute__((alias("glshim_glPixelTransferi"))); +void glPixelTransferi(GLenum pname, GLint param) __attribute__((alias("glshim_glPixelTransferi"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPixelZoom) && !defined(skip_index_glPixelZoom) void glshim_glPixelZoom(GLfloat xfactor, GLfloat yfactor) { @@ -3259,7 +3259,7 @@ void glshim_glPixelZoom(GLfloat xfactor, GLfloat yfactor) { packed_data.args.a2 = (GLfloat)yfactor; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPixelZoom(GLfloat xfactor, GLfloat yfactor) __attribute__((alias("glshim_glPixelZoom"))); +void glPixelZoom(GLfloat xfactor, GLfloat yfactor) __attribute__((alias("glshim_glPixelZoom"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPointParameterf) && !defined(skip_index_glPointParameterf) void glshim_glPointParameterf(GLenum pname, GLfloat param) { @@ -3269,7 +3269,7 @@ void glshim_glPointParameterf(GLenum pname, GLfloat param) { packed_data.args.a2 = (GLfloat)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPointParameterf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glPointParameterf"))); +void glPointParameterf(GLenum pname, GLfloat param) __attribute__((alias("glshim_glPointParameterf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPointParameterfv) && !defined(skip_index_glPointParameterfv) void glshim_glPointParameterfv(GLenum pname, const GLfloat * params) { @@ -3279,7 +3279,7 @@ void glshim_glPointParameterfv(GLenum pname, const GLfloat * params) { packed_data.args.a2 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPointParameterfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glPointParameterfv"))); +void glPointParameterfv(GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glPointParameterfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPointParameteri) && !defined(skip_index_glPointParameteri) void glshim_glPointParameteri(GLenum pname, GLint param) { @@ -3289,7 +3289,7 @@ void glshim_glPointParameteri(GLenum pname, GLint param) { packed_data.args.a2 = (GLint)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPointParameteri(GLenum pname, GLint param) __attribute__((alias("glshim_glPointParameteri"))); +void glPointParameteri(GLenum pname, GLint param) __attribute__((alias("glshim_glPointParameteri"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPointParameteriv) && !defined(skip_index_glPointParameteriv) void glshim_glPointParameteriv(GLenum pname, const GLint * params) { @@ -3299,7 +3299,7 @@ void glshim_glPointParameteriv(GLenum pname, const GLint * params) { packed_data.args.a2 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPointParameteriv(GLenum pname, const GLint * params) __attribute__((alias("glshim_glPointParameteriv"))); +void glPointParameteriv(GLenum pname, const GLint * params) __attribute__((alias("glshim_glPointParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPointSize) && !defined(skip_index_glPointSize) void glshim_glPointSize(GLfloat size) { @@ -3308,7 +3308,7 @@ void glshim_glPointSize(GLfloat size) { packed_data.args.a1 = (GLfloat)size; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPointSize(GLfloat size) __attribute__((alias("glshim_glPointSize"))); +void glPointSize(GLfloat size) __attribute__((alias("glshim_glPointSize"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPolygonMode) && !defined(skip_index_glPolygonMode) void glshim_glPolygonMode(GLenum face, GLenum mode) { @@ -3318,7 +3318,7 @@ void glshim_glPolygonMode(GLenum face, GLenum mode) { packed_data.args.a2 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPolygonMode(GLenum face, GLenum mode) __attribute__((alias("glshim_glPolygonMode"))); +void glPolygonMode(GLenum face, GLenum mode) __attribute__((alias("glshim_glPolygonMode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPolygonOffset) && !defined(skip_index_glPolygonOffset) void glshim_glPolygonOffset(GLfloat factor, GLfloat units) { @@ -3328,7 +3328,7 @@ void glshim_glPolygonOffset(GLfloat factor, GLfloat units) { packed_data.args.a2 = (GLfloat)units; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPolygonOffset(GLfloat factor, GLfloat units) __attribute__((alias("glshim_glPolygonOffset"))); +void glPolygonOffset(GLfloat factor, GLfloat units) __attribute__((alias("glshim_glPolygonOffset"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPolygonStipple) && !defined(skip_index_glPolygonStipple) void glshim_glPolygonStipple(const GLubyte * mask) { @@ -3337,7 +3337,7 @@ void glshim_glPolygonStipple(const GLubyte * mask) { packed_data.args.a1 = (GLubyte *)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPolygonStipple(const GLubyte * mask) __attribute__((alias("glshim_glPolygonStipple"))); +void glPolygonStipple(const GLubyte * mask) __attribute__((alias("glshim_glPolygonStipple"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPopAttrib) && !defined(skip_index_glPopAttrib) void glshim_glPopAttrib() { @@ -3345,7 +3345,7 @@ void glshim_glPopAttrib() { packed_data.func = glPopAttrib_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPopAttrib() __attribute__((alias("glshim_glPopAttrib"))); +void glPopAttrib() __attribute__((alias("glshim_glPopAttrib"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPopClientAttrib) && !defined(skip_index_glPopClientAttrib) void glshim_glPopClientAttrib() { @@ -3353,7 +3353,7 @@ void glshim_glPopClientAttrib() { packed_data.func = glPopClientAttrib_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPopClientAttrib() __attribute__((alias("glshim_glPopClientAttrib"))); +void glPopClientAttrib() __attribute__((alias("glshim_glPopClientAttrib"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPopMatrix) && !defined(skip_index_glPopMatrix) void glshim_glPopMatrix() { @@ -3361,7 +3361,7 @@ void glshim_glPopMatrix() { packed_data.func = glPopMatrix_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPopMatrix() __attribute__((alias("glshim_glPopMatrix"))); +void glPopMatrix() __attribute__((alias("glshim_glPopMatrix"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPopName) && !defined(skip_index_glPopName) void glshim_glPopName() { @@ -3369,7 +3369,7 @@ void glshim_glPopName() { packed_data.func = glPopName_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPopName() __attribute__((alias("glshim_glPopName"))); +void glPopName() __attribute__((alias("glshim_glPopName"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPrioritizeTextures) && !defined(skip_index_glPrioritizeTextures) void glshim_glPrioritizeTextures(GLsizei n, const GLuint * textures, const GLfloat * priorities) { @@ -3380,7 +3380,7 @@ void glshim_glPrioritizeTextures(GLsizei n, const GLuint * textures, const GLflo packed_data.args.a3 = (GLfloat *)priorities; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPrioritizeTextures(GLsizei n, const GLuint * textures, const GLfloat * priorities) __attribute__((alias("glshim_glPrioritizeTextures"))); +void glPrioritizeTextures(GLsizei n, const GLuint * textures, const GLfloat * priorities) __attribute__((alias("glshim_glPrioritizeTextures"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPushAttrib) && !defined(skip_index_glPushAttrib) void glshim_glPushAttrib(GLbitfield mask) { @@ -3389,7 +3389,7 @@ void glshim_glPushAttrib(GLbitfield mask) { packed_data.args.a1 = (GLbitfield)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPushAttrib(GLbitfield mask) __attribute__((alias("glshim_glPushAttrib"))); +void glPushAttrib(GLbitfield mask) __attribute__((alias("glshim_glPushAttrib"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPushClientAttrib) && !defined(skip_index_glPushClientAttrib) void glshim_glPushClientAttrib(GLbitfield mask) { @@ -3398,7 +3398,7 @@ void glshim_glPushClientAttrib(GLbitfield mask) { packed_data.args.a1 = (GLbitfield)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPushClientAttrib(GLbitfield mask) __attribute__((alias("glshim_glPushClientAttrib"))); +void glPushClientAttrib(GLbitfield mask) __attribute__((alias("glshim_glPushClientAttrib"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPushMatrix) && !defined(skip_index_glPushMatrix) void glshim_glPushMatrix() { @@ -3406,7 +3406,7 @@ void glshim_glPushMatrix() { packed_data.func = glPushMatrix_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPushMatrix() __attribute__((alias("glshim_glPushMatrix"))); +void glPushMatrix() __attribute__((alias("glshim_glPushMatrix"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glPushName) && !defined(skip_index_glPushName) void glshim_glPushName(GLuint name) { @@ -3415,7 +3415,7 @@ void glshim_glPushName(GLuint name) { packed_data.args.a1 = (GLuint)name; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glPushName(GLuint name) __attribute__((alias("glshim_glPushName"))); +void glPushName(GLuint name) __attribute__((alias("glshim_glPushName"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos2d) && !defined(skip_index_glRasterPos2d) void glshim_glRasterPos2d(GLdouble x, GLdouble y) { @@ -3425,7 +3425,7 @@ void glshim_glRasterPos2d(GLdouble x, GLdouble y) { packed_data.args.a2 = (GLdouble)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos2d(GLdouble x, GLdouble y) __attribute__((alias("glshim_glRasterPos2d"))); +void glRasterPos2d(GLdouble x, GLdouble y) __attribute__((alias("glshim_glRasterPos2d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos2dv) && !defined(skip_index_glRasterPos2dv) void glshim_glRasterPos2dv(const GLdouble * v) { @@ -3434,7 +3434,7 @@ void glshim_glRasterPos2dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos2dv(const GLdouble * v) __attribute__((alias("glshim_glRasterPos2dv"))); +void glRasterPos2dv(const GLdouble * v) __attribute__((alias("glshim_glRasterPos2dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos2f) && !defined(skip_index_glRasterPos2f) void glshim_glRasterPos2f(GLfloat x, GLfloat y) { @@ -3444,7 +3444,7 @@ void glshim_glRasterPos2f(GLfloat x, GLfloat y) { packed_data.args.a2 = (GLfloat)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos2f(GLfloat x, GLfloat y) __attribute__((alias("glshim_glRasterPos2f"))); +void glRasterPos2f(GLfloat x, GLfloat y) __attribute__((alias("glshim_glRasterPos2f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos2fv) && !defined(skip_index_glRasterPos2fv) void glshim_glRasterPos2fv(const GLfloat * v) { @@ -3453,7 +3453,7 @@ void glshim_glRasterPos2fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos2fv(const GLfloat * v) __attribute__((alias("glshim_glRasterPos2fv"))); +void glRasterPos2fv(const GLfloat * v) __attribute__((alias("glshim_glRasterPos2fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos2i) && !defined(skip_index_glRasterPos2i) void glshim_glRasterPos2i(GLint x, GLint y) { @@ -3463,7 +3463,7 @@ void glshim_glRasterPos2i(GLint x, GLint y) { packed_data.args.a2 = (GLint)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos2i(GLint x, GLint y) __attribute__((alias("glshim_glRasterPos2i"))); +void glRasterPos2i(GLint x, GLint y) __attribute__((alias("glshim_glRasterPos2i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos2iv) && !defined(skip_index_glRasterPos2iv) void glshim_glRasterPos2iv(const GLint * v) { @@ -3472,7 +3472,7 @@ void glshim_glRasterPos2iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos2iv(const GLint * v) __attribute__((alias("glshim_glRasterPos2iv"))); +void glRasterPos2iv(const GLint * v) __attribute__((alias("glshim_glRasterPos2iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos2s) && !defined(skip_index_glRasterPos2s) void glshim_glRasterPos2s(GLshort x, GLshort y) { @@ -3482,7 +3482,7 @@ void glshim_glRasterPos2s(GLshort x, GLshort y) { packed_data.args.a2 = (GLshort)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos2s(GLshort x, GLshort y) __attribute__((alias("glshim_glRasterPos2s"))); +void glRasterPos2s(GLshort x, GLshort y) __attribute__((alias("glshim_glRasterPos2s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos2sv) && !defined(skip_index_glRasterPos2sv) void glshim_glRasterPos2sv(const GLshort * v) { @@ -3491,7 +3491,7 @@ void glshim_glRasterPos2sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos2sv(const GLshort * v) __attribute__((alias("glshim_glRasterPos2sv"))); +void glRasterPos2sv(const GLshort * v) __attribute__((alias("glshim_glRasterPos2sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos3d) && !defined(skip_index_glRasterPos3d) void glshim_glRasterPos3d(GLdouble x, GLdouble y, GLdouble z) { @@ -3502,7 +3502,7 @@ void glshim_glRasterPos3d(GLdouble x, GLdouble y, GLdouble z) { packed_data.args.a3 = (GLdouble)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos3d(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glRasterPos3d"))); +void glRasterPos3d(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glRasterPos3d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos3dv) && !defined(skip_index_glRasterPos3dv) void glshim_glRasterPos3dv(const GLdouble * v) { @@ -3511,7 +3511,7 @@ void glshim_glRasterPos3dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos3dv(const GLdouble * v) __attribute__((alias("glshim_glRasterPos3dv"))); +void glRasterPos3dv(const GLdouble * v) __attribute__((alias("glshim_glRasterPos3dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos3f) && !defined(skip_index_glRasterPos3f) void glshim_glRasterPos3f(GLfloat x, GLfloat y, GLfloat z) { @@ -3522,7 +3522,7 @@ void glshim_glRasterPos3f(GLfloat x, GLfloat y, GLfloat z) { packed_data.args.a3 = (GLfloat)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos3f(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glRasterPos3f"))); +void glRasterPos3f(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glRasterPos3f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos3fv) && !defined(skip_index_glRasterPos3fv) void glshim_glRasterPos3fv(const GLfloat * v) { @@ -3531,7 +3531,7 @@ void glshim_glRasterPos3fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos3fv(const GLfloat * v) __attribute__((alias("glshim_glRasterPos3fv"))); +void glRasterPos3fv(const GLfloat * v) __attribute__((alias("glshim_glRasterPos3fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos3i) && !defined(skip_index_glRasterPos3i) void glshim_glRasterPos3i(GLint x, GLint y, GLint z) { @@ -3542,7 +3542,7 @@ void glshim_glRasterPos3i(GLint x, GLint y, GLint z) { packed_data.args.a3 = (GLint)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos3i(GLint x, GLint y, GLint z) __attribute__((alias("glshim_glRasterPos3i"))); +void glRasterPos3i(GLint x, GLint y, GLint z) __attribute__((alias("glshim_glRasterPos3i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos3iv) && !defined(skip_index_glRasterPos3iv) void glshim_glRasterPos3iv(const GLint * v) { @@ -3551,7 +3551,7 @@ void glshim_glRasterPos3iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos3iv(const GLint * v) __attribute__((alias("glshim_glRasterPos3iv"))); +void glRasterPos3iv(const GLint * v) __attribute__((alias("glshim_glRasterPos3iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos3s) && !defined(skip_index_glRasterPos3s) void glshim_glRasterPos3s(GLshort x, GLshort y, GLshort z) { @@ -3562,7 +3562,7 @@ void glshim_glRasterPos3s(GLshort x, GLshort y, GLshort z) { packed_data.args.a3 = (GLshort)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos3s(GLshort x, GLshort y, GLshort z) __attribute__((alias("glshim_glRasterPos3s"))); +void glRasterPos3s(GLshort x, GLshort y, GLshort z) __attribute__((alias("glshim_glRasterPos3s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos3sv) && !defined(skip_index_glRasterPos3sv) void glshim_glRasterPos3sv(const GLshort * v) { @@ -3571,7 +3571,7 @@ void glshim_glRasterPos3sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos3sv(const GLshort * v) __attribute__((alias("glshim_glRasterPos3sv"))); +void glRasterPos3sv(const GLshort * v) __attribute__((alias("glshim_glRasterPos3sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos4d) && !defined(skip_index_glRasterPos4d) void glshim_glRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w) { @@ -3583,7 +3583,7 @@ void glshim_glRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w) { packed_data.args.a4 = (GLdouble)w; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w) __attribute__((alias("glshim_glRasterPos4d"))); +void glRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w) __attribute__((alias("glshim_glRasterPos4d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos4dv) && !defined(skip_index_glRasterPos4dv) void glshim_glRasterPos4dv(const GLdouble * v) { @@ -3592,7 +3592,7 @@ void glshim_glRasterPos4dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos4dv(const GLdouble * v) __attribute__((alias("glshim_glRasterPos4dv"))); +void glRasterPos4dv(const GLdouble * v) __attribute__((alias("glshim_glRasterPos4dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos4f) && !defined(skip_index_glRasterPos4f) void glshim_glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) { @@ -3604,7 +3604,7 @@ void glshim_glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) { packed_data.args.a4 = (GLfloat)w; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) __attribute__((alias("glshim_glRasterPos4f"))); +void glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) __attribute__((alias("glshim_glRasterPos4f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos4fv) && !defined(skip_index_glRasterPos4fv) void glshim_glRasterPos4fv(const GLfloat * v) { @@ -3613,7 +3613,7 @@ void glshim_glRasterPos4fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos4fv(const GLfloat * v) __attribute__((alias("glshim_glRasterPos4fv"))); +void glRasterPos4fv(const GLfloat * v) __attribute__((alias("glshim_glRasterPos4fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos4i) && !defined(skip_index_glRasterPos4i) void glshim_glRasterPos4i(GLint x, GLint y, GLint z, GLint w) { @@ -3625,7 +3625,7 @@ void glshim_glRasterPos4i(GLint x, GLint y, GLint z, GLint w) { packed_data.args.a4 = (GLint)w; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos4i(GLint x, GLint y, GLint z, GLint w) __attribute__((alias("glshim_glRasterPos4i"))); +void glRasterPos4i(GLint x, GLint y, GLint z, GLint w) __attribute__((alias("glshim_glRasterPos4i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos4iv) && !defined(skip_index_glRasterPos4iv) void glshim_glRasterPos4iv(const GLint * v) { @@ -3634,7 +3634,7 @@ void glshim_glRasterPos4iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos4iv(const GLint * v) __attribute__((alias("glshim_glRasterPos4iv"))); +void glRasterPos4iv(const GLint * v) __attribute__((alias("glshim_glRasterPos4iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos4s) && !defined(skip_index_glRasterPos4s) void glshim_glRasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w) { @@ -3646,7 +3646,7 @@ void glshim_glRasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w) { packed_data.args.a4 = (GLshort)w; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w) __attribute__((alias("glshim_glRasterPos4s"))); +void glRasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w) __attribute__((alias("glshim_glRasterPos4s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRasterPos4sv) && !defined(skip_index_glRasterPos4sv) void glshim_glRasterPos4sv(const GLshort * v) { @@ -3655,7 +3655,7 @@ void glshim_glRasterPos4sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRasterPos4sv(const GLshort * v) __attribute__((alias("glshim_glRasterPos4sv"))); +void glRasterPos4sv(const GLshort * v) __attribute__((alias("glshim_glRasterPos4sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glReadBuffer) && !defined(skip_index_glReadBuffer) void glshim_glReadBuffer(GLenum mode) { @@ -3664,7 +3664,7 @@ void glshim_glReadBuffer(GLenum mode) { packed_data.args.a1 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glReadBuffer(GLenum mode) __attribute__((alias("glshim_glReadBuffer"))); +void glReadBuffer(GLenum mode) __attribute__((alias("glshim_glReadBuffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glReadPixels) && !defined(skip_index_glReadPixels) void glshim_glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * pixels) { @@ -3679,7 +3679,7 @@ void glshim_glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum packed_data.args.a7 = (GLvoid *)pixels; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * pixels) __attribute__((alias("glshim_glReadPixels"))); +void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * pixels) __attribute__((alias("glshim_glReadPixels"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRectd) && !defined(skip_index_glRectd) void glshim_glRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2) { @@ -3691,7 +3691,7 @@ void glshim_glRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2) { packed_data.args.a4 = (GLdouble)y2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2) __attribute__((alias("glshim_glRectd"))); +void glRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2) __attribute__((alias("glshim_glRectd"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRectdv) && !defined(skip_index_glRectdv) void glshim_glRectdv(const GLdouble * v1, const GLdouble * v2) { @@ -3701,7 +3701,7 @@ void glshim_glRectdv(const GLdouble * v1, const GLdouble * v2) { packed_data.args.a2 = (GLdouble *)v2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRectdv(const GLdouble * v1, const GLdouble * v2) __attribute__((alias("glshim_glRectdv"))); +void glRectdv(const GLdouble * v1, const GLdouble * v2) __attribute__((alias("glshim_glRectdv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRectf) && !defined(skip_index_glRectf) void glshim_glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2) { @@ -3713,7 +3713,7 @@ void glshim_glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2) { packed_data.args.a4 = (GLfloat)y2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2) __attribute__((alias("glshim_glRectf"))); +void glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2) __attribute__((alias("glshim_glRectf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRectfv) && !defined(skip_index_glRectfv) void glshim_glRectfv(const GLfloat * v1, const GLfloat * v2) { @@ -3723,7 +3723,7 @@ void glshim_glRectfv(const GLfloat * v1, const GLfloat * v2) { packed_data.args.a2 = (GLfloat *)v2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRectfv(const GLfloat * v1, const GLfloat * v2) __attribute__((alias("glshim_glRectfv"))); +void glRectfv(const GLfloat * v1, const GLfloat * v2) __attribute__((alias("glshim_glRectfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRecti) && !defined(skip_index_glRecti) void glshim_glRecti(GLint x1, GLint y1, GLint x2, GLint y2) { @@ -3735,7 +3735,7 @@ void glshim_glRecti(GLint x1, GLint y1, GLint x2, GLint y2) { packed_data.args.a4 = (GLint)y2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRecti(GLint x1, GLint y1, GLint x2, GLint y2) __attribute__((alias("glshim_glRecti"))); +void glRecti(GLint x1, GLint y1, GLint x2, GLint y2) __attribute__((alias("glshim_glRecti"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRectiv) && !defined(skip_index_glRectiv) void glshim_glRectiv(const GLint * v1, const GLint * v2) { @@ -3745,7 +3745,7 @@ void glshim_glRectiv(const GLint * v1, const GLint * v2) { packed_data.args.a2 = (GLint *)v2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRectiv(const GLint * v1, const GLint * v2) __attribute__((alias("glshim_glRectiv"))); +void glRectiv(const GLint * v1, const GLint * v2) __attribute__((alias("glshim_glRectiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRects) && !defined(skip_index_glRects) void glshim_glRects(GLshort x1, GLshort y1, GLshort x2, GLshort y2) { @@ -3757,7 +3757,7 @@ void glshim_glRects(GLshort x1, GLshort y1, GLshort x2, GLshort y2) { packed_data.args.a4 = (GLshort)y2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRects(GLshort x1, GLshort y1, GLshort x2, GLshort y2) __attribute__((alias("glshim_glRects"))); +void glRects(GLshort x1, GLshort y1, GLshort x2, GLshort y2) __attribute__((alias("glshim_glRects"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRectsv) && !defined(skip_index_glRectsv) void glshim_glRectsv(const GLshort * v1, const GLshort * v2) { @@ -3767,7 +3767,7 @@ void glshim_glRectsv(const GLshort * v1, const GLshort * v2) { packed_data.args.a2 = (GLshort *)v2; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRectsv(const GLshort * v1, const GLshort * v2) __attribute__((alias("glshim_glRectsv"))); +void glRectsv(const GLshort * v1, const GLshort * v2) __attribute__((alias("glshim_glRectsv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRenderMode) && !defined(skip_index_glRenderMode) GLint glshim_glRenderMode(GLenum mode) { @@ -3778,7 +3778,7 @@ GLint glshim_glRenderMode(GLenum mode) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLint glRenderMode(GLenum mode) __attribute__((alias("glshim_glRenderMode"))); +GLint glRenderMode(GLenum mode) __attribute__((alias("glshim_glRenderMode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glResetHistogram) && !defined(skip_index_glResetHistogram) void glshim_glResetHistogram(GLenum target) { @@ -3787,7 +3787,7 @@ void glshim_glResetHistogram(GLenum target) { packed_data.args.a1 = (GLenum)target; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glResetHistogram(GLenum target) __attribute__((alias("glshim_glResetHistogram"))); +void glResetHistogram(GLenum target) __attribute__((alias("glshim_glResetHistogram"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glResetMinmax) && !defined(skip_index_glResetMinmax) void glshim_glResetMinmax(GLenum target) { @@ -3796,7 +3796,7 @@ void glshim_glResetMinmax(GLenum target) { packed_data.args.a1 = (GLenum)target; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glResetMinmax(GLenum target) __attribute__((alias("glshim_glResetMinmax"))); +void glResetMinmax(GLenum target) __attribute__((alias("glshim_glResetMinmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRotated) && !defined(skip_index_glRotated) void glshim_glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z) { @@ -3808,7 +3808,7 @@ void glshim_glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z) { packed_data.args.a4 = (GLdouble)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glRotated"))); +void glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glRotated"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glRotatef) && !defined(skip_index_glRotatef) void glshim_glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) { @@ -3820,7 +3820,7 @@ void glshim_glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) { packed_data.args.a4 = (GLfloat)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glRotatef"))); +void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glRotatef"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSampleCoverage) && !defined(skip_index_glSampleCoverage) void glshim_glSampleCoverage(GLfloat value, GLboolean invert) { @@ -3830,7 +3830,7 @@ void glshim_glSampleCoverage(GLfloat value, GLboolean invert) { packed_data.args.a2 = (GLboolean)invert; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSampleCoverage(GLfloat value, GLboolean invert) __attribute__((alias("glshim_glSampleCoverage"))); +void glSampleCoverage(GLfloat value, GLboolean invert) __attribute__((alias("glshim_glSampleCoverage"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glScaled) && !defined(skip_index_glScaled) void glshim_glScaled(GLdouble x, GLdouble y, GLdouble z) { @@ -3841,7 +3841,7 @@ void glshim_glScaled(GLdouble x, GLdouble y, GLdouble z) { packed_data.args.a3 = (GLdouble)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glScaled(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glScaled"))); +void glScaled(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glScaled"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glScalef) && !defined(skip_index_glScalef) void glshim_glScalef(GLfloat x, GLfloat y, GLfloat z) { @@ -3852,7 +3852,7 @@ void glshim_glScalef(GLfloat x, GLfloat y, GLfloat z) { packed_data.args.a3 = (GLfloat)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glScalef(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glScalef"))); +void glScalef(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glScalef"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glScissor) && !defined(skip_index_glScissor) void glshim_glScissor(GLint x, GLint y, GLsizei width, GLsizei height) { @@ -3864,7 +3864,7 @@ void glshim_glScissor(GLint x, GLint y, GLsizei width, GLsizei height) { packed_data.args.a4 = (GLsizei)height; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glScissor(GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glScissor"))); +void glScissor(GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glScissor"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3b) && !defined(skip_index_glSecondaryColor3b) void glshim_glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte blue) { @@ -3875,7 +3875,7 @@ void glshim_glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte blue) { packed_data.args.a3 = (GLbyte)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte blue) __attribute__((alias("glshim_glSecondaryColor3b"))); +void glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte blue) __attribute__((alias("glshim_glSecondaryColor3b"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3bv) && !defined(skip_index_glSecondaryColor3bv) void glshim_glSecondaryColor3bv(const GLbyte * v) { @@ -3884,7 +3884,7 @@ void glshim_glSecondaryColor3bv(const GLbyte * v) { packed_data.args.a1 = (GLbyte *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3bv(const GLbyte * v) __attribute__((alias("glshim_glSecondaryColor3bv"))); +void glSecondaryColor3bv(const GLbyte * v) __attribute__((alias("glshim_glSecondaryColor3bv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3d) && !defined(skip_index_glSecondaryColor3d) void glshim_glSecondaryColor3d(GLdouble red, GLdouble green, GLdouble blue) { @@ -3895,7 +3895,7 @@ void glshim_glSecondaryColor3d(GLdouble red, GLdouble green, GLdouble blue) { packed_data.args.a3 = (GLdouble)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3d(GLdouble red, GLdouble green, GLdouble blue) __attribute__((alias("glshim_glSecondaryColor3d"))); +void glSecondaryColor3d(GLdouble red, GLdouble green, GLdouble blue) __attribute__((alias("glshim_glSecondaryColor3d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3dv) && !defined(skip_index_glSecondaryColor3dv) void glshim_glSecondaryColor3dv(const GLdouble * v) { @@ -3904,7 +3904,7 @@ void glshim_glSecondaryColor3dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3dv(const GLdouble * v) __attribute__((alias("glshim_glSecondaryColor3dv"))); +void glSecondaryColor3dv(const GLdouble * v) __attribute__((alias("glshim_glSecondaryColor3dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3f) && !defined(skip_index_glSecondaryColor3f) void glshim_glSecondaryColor3f(GLfloat red, GLfloat green, GLfloat blue) { @@ -3915,7 +3915,7 @@ void glshim_glSecondaryColor3f(GLfloat red, GLfloat green, GLfloat blue) { packed_data.args.a3 = (GLfloat)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3f(GLfloat red, GLfloat green, GLfloat blue) __attribute__((alias("glshim_glSecondaryColor3f"))); +void glSecondaryColor3f(GLfloat red, GLfloat green, GLfloat blue) __attribute__((alias("glshim_glSecondaryColor3f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3fv) && !defined(skip_index_glSecondaryColor3fv) void glshim_glSecondaryColor3fv(const GLfloat * v) { @@ -3924,7 +3924,7 @@ void glshim_glSecondaryColor3fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3fv(const GLfloat * v) __attribute__((alias("glshim_glSecondaryColor3fv"))); +void glSecondaryColor3fv(const GLfloat * v) __attribute__((alias("glshim_glSecondaryColor3fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3i) && !defined(skip_index_glSecondaryColor3i) void glshim_glSecondaryColor3i(GLint red, GLint green, GLint blue) { @@ -3935,7 +3935,7 @@ void glshim_glSecondaryColor3i(GLint red, GLint green, GLint blue) { packed_data.args.a3 = (GLint)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3i(GLint red, GLint green, GLint blue) __attribute__((alias("glshim_glSecondaryColor3i"))); +void glSecondaryColor3i(GLint red, GLint green, GLint blue) __attribute__((alias("glshim_glSecondaryColor3i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3iv) && !defined(skip_index_glSecondaryColor3iv) void glshim_glSecondaryColor3iv(const GLint * v) { @@ -3944,7 +3944,7 @@ void glshim_glSecondaryColor3iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3iv(const GLint * v) __attribute__((alias("glshim_glSecondaryColor3iv"))); +void glSecondaryColor3iv(const GLint * v) __attribute__((alias("glshim_glSecondaryColor3iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3s) && !defined(skip_index_glSecondaryColor3s) void glshim_glSecondaryColor3s(GLshort red, GLshort green, GLshort blue) { @@ -3955,7 +3955,7 @@ void glshim_glSecondaryColor3s(GLshort red, GLshort green, GLshort blue) { packed_data.args.a3 = (GLshort)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3s(GLshort red, GLshort green, GLshort blue) __attribute__((alias("glshim_glSecondaryColor3s"))); +void glSecondaryColor3s(GLshort red, GLshort green, GLshort blue) __attribute__((alias("glshim_glSecondaryColor3s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3sv) && !defined(skip_index_glSecondaryColor3sv) void glshim_glSecondaryColor3sv(const GLshort * v) { @@ -3964,7 +3964,7 @@ void glshim_glSecondaryColor3sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3sv(const GLshort * v) __attribute__((alias("glshim_glSecondaryColor3sv"))); +void glSecondaryColor3sv(const GLshort * v) __attribute__((alias("glshim_glSecondaryColor3sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3ub) && !defined(skip_index_glSecondaryColor3ub) void glshim_glSecondaryColor3ub(GLubyte red, GLubyte green, GLubyte blue) { @@ -3975,7 +3975,7 @@ void glshim_glSecondaryColor3ub(GLubyte red, GLubyte green, GLubyte blue) { packed_data.args.a3 = (GLubyte)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3ub(GLubyte red, GLubyte green, GLubyte blue) __attribute__((alias("glshim_glSecondaryColor3ub"))); +void glSecondaryColor3ub(GLubyte red, GLubyte green, GLubyte blue) __attribute__((alias("glshim_glSecondaryColor3ub"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3ubv) && !defined(skip_index_glSecondaryColor3ubv) void glshim_glSecondaryColor3ubv(const GLubyte * v) { @@ -3984,7 +3984,7 @@ void glshim_glSecondaryColor3ubv(const GLubyte * v) { packed_data.args.a1 = (GLubyte *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3ubv(const GLubyte * v) __attribute__((alias("glshim_glSecondaryColor3ubv"))); +void glSecondaryColor3ubv(const GLubyte * v) __attribute__((alias("glshim_glSecondaryColor3ubv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3ui) && !defined(skip_index_glSecondaryColor3ui) void glshim_glSecondaryColor3ui(GLuint red, GLuint green, GLuint blue) { @@ -3995,7 +3995,7 @@ void glshim_glSecondaryColor3ui(GLuint red, GLuint green, GLuint blue) { packed_data.args.a3 = (GLuint)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3ui(GLuint red, GLuint green, GLuint blue) __attribute__((alias("glshim_glSecondaryColor3ui"))); +void glSecondaryColor3ui(GLuint red, GLuint green, GLuint blue) __attribute__((alias("glshim_glSecondaryColor3ui"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3uiv) && !defined(skip_index_glSecondaryColor3uiv) void glshim_glSecondaryColor3uiv(const GLuint * v) { @@ -4004,7 +4004,7 @@ void glshim_glSecondaryColor3uiv(const GLuint * v) { packed_data.args.a1 = (GLuint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3uiv(const GLuint * v) __attribute__((alias("glshim_glSecondaryColor3uiv"))); +void glSecondaryColor3uiv(const GLuint * v) __attribute__((alias("glshim_glSecondaryColor3uiv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3us) && !defined(skip_index_glSecondaryColor3us) void glshim_glSecondaryColor3us(GLushort red, GLushort green, GLushort blue) { @@ -4015,7 +4015,7 @@ void glshim_glSecondaryColor3us(GLushort red, GLushort green, GLushort blue) { packed_data.args.a3 = (GLushort)blue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3us(GLushort red, GLushort green, GLushort blue) __attribute__((alias("glshim_glSecondaryColor3us"))); +void glSecondaryColor3us(GLushort red, GLushort green, GLushort blue) __attribute__((alias("glshim_glSecondaryColor3us"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColor3usv) && !defined(skip_index_glSecondaryColor3usv) void glshim_glSecondaryColor3usv(const GLushort * v) { @@ -4024,7 +4024,7 @@ void glshim_glSecondaryColor3usv(const GLushort * v) { packed_data.args.a1 = (GLushort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColor3usv(const GLushort * v) __attribute__((alias("glshim_glSecondaryColor3usv"))); +void glSecondaryColor3usv(const GLushort * v) __attribute__((alias("glshim_glSecondaryColor3usv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSecondaryColorPointer) && !defined(skip_index_glSecondaryColorPointer) void glshim_glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -4036,7 +4036,7 @@ void glshim_glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, con packed_data.args.a4 = (GLvoid *)pointer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glSecondaryColorPointer"))); +void glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glSecondaryColorPointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSelectBuffer) && !defined(skip_index_glSelectBuffer) void glshim_glSelectBuffer(GLsizei size, GLuint * buffer) { @@ -4046,7 +4046,7 @@ void glshim_glSelectBuffer(GLsizei size, GLuint * buffer) { packed_data.args.a2 = (GLuint *)buffer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSelectBuffer(GLsizei size, GLuint * buffer) __attribute__((alias("glshim_glSelectBuffer"))); +void glSelectBuffer(GLsizei size, GLuint * buffer) __attribute__((alias("glshim_glSelectBuffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glSeparableFilter2D) && !defined(skip_index_glSeparableFilter2D) void glshim_glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * row, const GLvoid * column) { @@ -4062,7 +4062,7 @@ void glshim_glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei wi packed_data.args.a8 = (GLvoid *)column; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * row, const GLvoid * column) __attribute__((alias("glshim_glSeparableFilter2D"))); +void glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * row, const GLvoid * column) __attribute__((alias("glshim_glSeparableFilter2D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glShadeModel) && !defined(skip_index_glShadeModel) void glshim_glShadeModel(GLenum mode) { @@ -4071,7 +4071,7 @@ void glshim_glShadeModel(GLenum mode) { packed_data.args.a1 = (GLenum)mode; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glShadeModel(GLenum mode) __attribute__((alias("glshim_glShadeModel"))); +void glShadeModel(GLenum mode) __attribute__((alias("glshim_glShadeModel"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glStencilFunc) && !defined(skip_index_glStencilFunc) void glshim_glStencilFunc(GLenum func, GLint ref, GLuint mask) { @@ -4082,7 +4082,7 @@ void glshim_glStencilFunc(GLenum func, GLint ref, GLuint mask) { packed_data.args.a3 = (GLuint)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glStencilFunc(GLenum func, GLint ref, GLuint mask) __attribute__((alias("glshim_glStencilFunc"))); +void glStencilFunc(GLenum func, GLint ref, GLuint mask) __attribute__((alias("glshim_glStencilFunc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glStencilMask) && !defined(skip_index_glStencilMask) void glshim_glStencilMask(GLuint mask) { @@ -4091,7 +4091,7 @@ void glshim_glStencilMask(GLuint mask) { packed_data.args.a1 = (GLuint)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glStencilMask(GLuint mask) __attribute__((alias("glshim_glStencilMask"))); +void glStencilMask(GLuint mask) __attribute__((alias("glshim_glStencilMask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glStencilOp) && !defined(skip_index_glStencilOp) void glshim_glStencilOp(GLenum fail, GLenum zfail, GLenum zpass) { @@ -4102,7 +4102,7 @@ void glshim_glStencilOp(GLenum fail, GLenum zfail, GLenum zpass) { packed_data.args.a3 = (GLenum)zpass; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glStencilOp(GLenum fail, GLenum zfail, GLenum zpass) __attribute__((alias("glshim_glStencilOp"))); +void glStencilOp(GLenum fail, GLenum zfail, GLenum zpass) __attribute__((alias("glshim_glStencilOp"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord1d) && !defined(skip_index_glTexCoord1d) void glshim_glTexCoord1d(GLdouble s) { @@ -4111,7 +4111,7 @@ void glshim_glTexCoord1d(GLdouble s) { packed_data.args.a1 = (GLdouble)s; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord1d(GLdouble s) __attribute__((alias("glshim_glTexCoord1d"))); +void glTexCoord1d(GLdouble s) __attribute__((alias("glshim_glTexCoord1d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord1dv) && !defined(skip_index_glTexCoord1dv) void glshim_glTexCoord1dv(const GLdouble * v) { @@ -4120,7 +4120,7 @@ void glshim_glTexCoord1dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord1dv(const GLdouble * v) __attribute__((alias("glshim_glTexCoord1dv"))); +void glTexCoord1dv(const GLdouble * v) __attribute__((alias("glshim_glTexCoord1dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord1f) && !defined(skip_index_glTexCoord1f) void glshim_glTexCoord1f(GLfloat s) { @@ -4129,7 +4129,7 @@ void glshim_glTexCoord1f(GLfloat s) { packed_data.args.a1 = (GLfloat)s; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord1f(GLfloat s) __attribute__((alias("glshim_glTexCoord1f"))); +void glTexCoord1f(GLfloat s) __attribute__((alias("glshim_glTexCoord1f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord1fv) && !defined(skip_index_glTexCoord1fv) void glshim_glTexCoord1fv(const GLfloat * v) { @@ -4138,7 +4138,7 @@ void glshim_glTexCoord1fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord1fv(const GLfloat * v) __attribute__((alias("glshim_glTexCoord1fv"))); +void glTexCoord1fv(const GLfloat * v) __attribute__((alias("glshim_glTexCoord1fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord1i) && !defined(skip_index_glTexCoord1i) void glshim_glTexCoord1i(GLint s) { @@ -4147,7 +4147,7 @@ void glshim_glTexCoord1i(GLint s) { packed_data.args.a1 = (GLint)s; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord1i(GLint s) __attribute__((alias("glshim_glTexCoord1i"))); +void glTexCoord1i(GLint s) __attribute__((alias("glshim_glTexCoord1i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord1iv) && !defined(skip_index_glTexCoord1iv) void glshim_glTexCoord1iv(const GLint * v) { @@ -4156,7 +4156,7 @@ void glshim_glTexCoord1iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord1iv(const GLint * v) __attribute__((alias("glshim_glTexCoord1iv"))); +void glTexCoord1iv(const GLint * v) __attribute__((alias("glshim_glTexCoord1iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord1s) && !defined(skip_index_glTexCoord1s) void glshim_glTexCoord1s(GLshort s) { @@ -4165,7 +4165,7 @@ void glshim_glTexCoord1s(GLshort s) { packed_data.args.a1 = (GLshort)s; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord1s(GLshort s) __attribute__((alias("glshim_glTexCoord1s"))); +void glTexCoord1s(GLshort s) __attribute__((alias("glshim_glTexCoord1s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord1sv) && !defined(skip_index_glTexCoord1sv) void glshim_glTexCoord1sv(const GLshort * v) { @@ -4174,7 +4174,7 @@ void glshim_glTexCoord1sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord1sv(const GLshort * v) __attribute__((alias("glshim_glTexCoord1sv"))); +void glTexCoord1sv(const GLshort * v) __attribute__((alias("glshim_glTexCoord1sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord2d) && !defined(skip_index_glTexCoord2d) void glshim_glTexCoord2d(GLdouble s, GLdouble t) { @@ -4184,7 +4184,7 @@ void glshim_glTexCoord2d(GLdouble s, GLdouble t) { packed_data.args.a2 = (GLdouble)t; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord2d(GLdouble s, GLdouble t) __attribute__((alias("glshim_glTexCoord2d"))); +void glTexCoord2d(GLdouble s, GLdouble t) __attribute__((alias("glshim_glTexCoord2d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord2dv) && !defined(skip_index_glTexCoord2dv) void glshim_glTexCoord2dv(const GLdouble * v) { @@ -4193,7 +4193,7 @@ void glshim_glTexCoord2dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord2dv(const GLdouble * v) __attribute__((alias("glshim_glTexCoord2dv"))); +void glTexCoord2dv(const GLdouble * v) __attribute__((alias("glshim_glTexCoord2dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord2f) && !defined(skip_index_glTexCoord2f) void glshim_glTexCoord2f(GLfloat s, GLfloat t) { @@ -4203,7 +4203,7 @@ void glshim_glTexCoord2f(GLfloat s, GLfloat t) { packed_data.args.a2 = (GLfloat)t; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord2f(GLfloat s, GLfloat t) __attribute__((alias("glshim_glTexCoord2f"))); +void glTexCoord2f(GLfloat s, GLfloat t) __attribute__((alias("glshim_glTexCoord2f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord2fv) && !defined(skip_index_glTexCoord2fv) void glshim_glTexCoord2fv(const GLfloat * v) { @@ -4212,7 +4212,7 @@ void glshim_glTexCoord2fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord2fv(const GLfloat * v) __attribute__((alias("glshim_glTexCoord2fv"))); +void glTexCoord2fv(const GLfloat * v) __attribute__((alias("glshim_glTexCoord2fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord2i) && !defined(skip_index_glTexCoord2i) void glshim_glTexCoord2i(GLint s, GLint t) { @@ -4222,7 +4222,7 @@ void glshim_glTexCoord2i(GLint s, GLint t) { packed_data.args.a2 = (GLint)t; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord2i(GLint s, GLint t) __attribute__((alias("glshim_glTexCoord2i"))); +void glTexCoord2i(GLint s, GLint t) __attribute__((alias("glshim_glTexCoord2i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord2iv) && !defined(skip_index_glTexCoord2iv) void glshim_glTexCoord2iv(const GLint * v) { @@ -4231,7 +4231,7 @@ void glshim_glTexCoord2iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord2iv(const GLint * v) __attribute__((alias("glshim_glTexCoord2iv"))); +void glTexCoord2iv(const GLint * v) __attribute__((alias("glshim_glTexCoord2iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord2s) && !defined(skip_index_glTexCoord2s) void glshim_glTexCoord2s(GLshort s, GLshort t) { @@ -4241,7 +4241,7 @@ void glshim_glTexCoord2s(GLshort s, GLshort t) { packed_data.args.a2 = (GLshort)t; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord2s(GLshort s, GLshort t) __attribute__((alias("glshim_glTexCoord2s"))); +void glTexCoord2s(GLshort s, GLshort t) __attribute__((alias("glshim_glTexCoord2s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord2sv) && !defined(skip_index_glTexCoord2sv) void glshim_glTexCoord2sv(const GLshort * v) { @@ -4250,7 +4250,7 @@ void glshim_glTexCoord2sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord2sv(const GLshort * v) __attribute__((alias("glshim_glTexCoord2sv"))); +void glTexCoord2sv(const GLshort * v) __attribute__((alias("glshim_glTexCoord2sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord3d) && !defined(skip_index_glTexCoord3d) void glshim_glTexCoord3d(GLdouble s, GLdouble t, GLdouble r) { @@ -4261,7 +4261,7 @@ void glshim_glTexCoord3d(GLdouble s, GLdouble t, GLdouble r) { packed_data.args.a3 = (GLdouble)r; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord3d(GLdouble s, GLdouble t, GLdouble r) __attribute__((alias("glshim_glTexCoord3d"))); +void glTexCoord3d(GLdouble s, GLdouble t, GLdouble r) __attribute__((alias("glshim_glTexCoord3d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord3dv) && !defined(skip_index_glTexCoord3dv) void glshim_glTexCoord3dv(const GLdouble * v) { @@ -4270,7 +4270,7 @@ void glshim_glTexCoord3dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord3dv(const GLdouble * v) __attribute__((alias("glshim_glTexCoord3dv"))); +void glTexCoord3dv(const GLdouble * v) __attribute__((alias("glshim_glTexCoord3dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord3f) && !defined(skip_index_glTexCoord3f) void glshim_glTexCoord3f(GLfloat s, GLfloat t, GLfloat r) { @@ -4281,7 +4281,7 @@ void glshim_glTexCoord3f(GLfloat s, GLfloat t, GLfloat r) { packed_data.args.a3 = (GLfloat)r; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord3f(GLfloat s, GLfloat t, GLfloat r) __attribute__((alias("glshim_glTexCoord3f"))); +void glTexCoord3f(GLfloat s, GLfloat t, GLfloat r) __attribute__((alias("glshim_glTexCoord3f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord3fv) && !defined(skip_index_glTexCoord3fv) void glshim_glTexCoord3fv(const GLfloat * v) { @@ -4290,7 +4290,7 @@ void glshim_glTexCoord3fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord3fv(const GLfloat * v) __attribute__((alias("glshim_glTexCoord3fv"))); +void glTexCoord3fv(const GLfloat * v) __attribute__((alias("glshim_glTexCoord3fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord3i) && !defined(skip_index_glTexCoord3i) void glshim_glTexCoord3i(GLint s, GLint t, GLint r) { @@ -4301,7 +4301,7 @@ void glshim_glTexCoord3i(GLint s, GLint t, GLint r) { packed_data.args.a3 = (GLint)r; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord3i(GLint s, GLint t, GLint r) __attribute__((alias("glshim_glTexCoord3i"))); +void glTexCoord3i(GLint s, GLint t, GLint r) __attribute__((alias("glshim_glTexCoord3i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord3iv) && !defined(skip_index_glTexCoord3iv) void glshim_glTexCoord3iv(const GLint * v) { @@ -4310,7 +4310,7 @@ void glshim_glTexCoord3iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord3iv(const GLint * v) __attribute__((alias("glshim_glTexCoord3iv"))); +void glTexCoord3iv(const GLint * v) __attribute__((alias("glshim_glTexCoord3iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord3s) && !defined(skip_index_glTexCoord3s) void glshim_glTexCoord3s(GLshort s, GLshort t, GLshort r) { @@ -4321,7 +4321,7 @@ void glshim_glTexCoord3s(GLshort s, GLshort t, GLshort r) { packed_data.args.a3 = (GLshort)r; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord3s(GLshort s, GLshort t, GLshort r) __attribute__((alias("glshim_glTexCoord3s"))); +void glTexCoord3s(GLshort s, GLshort t, GLshort r) __attribute__((alias("glshim_glTexCoord3s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord3sv) && !defined(skip_index_glTexCoord3sv) void glshim_glTexCoord3sv(const GLshort * v) { @@ -4330,7 +4330,7 @@ void glshim_glTexCoord3sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord3sv(const GLshort * v) __attribute__((alias("glshim_glTexCoord3sv"))); +void glTexCoord3sv(const GLshort * v) __attribute__((alias("glshim_glTexCoord3sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord4d) && !defined(skip_index_glTexCoord4d) void glshim_glTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLdouble q) { @@ -4342,7 +4342,7 @@ void glshim_glTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLdouble q) { packed_data.args.a4 = (GLdouble)q; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLdouble q) __attribute__((alias("glshim_glTexCoord4d"))); +void glTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLdouble q) __attribute__((alias("glshim_glTexCoord4d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord4dv) && !defined(skip_index_glTexCoord4dv) void glshim_glTexCoord4dv(const GLdouble * v) { @@ -4351,7 +4351,7 @@ void glshim_glTexCoord4dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord4dv(const GLdouble * v) __attribute__((alias("glshim_glTexCoord4dv"))); +void glTexCoord4dv(const GLdouble * v) __attribute__((alias("glshim_glTexCoord4dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord4f) && !defined(skip_index_glTexCoord4f) void glshim_glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q) { @@ -4363,7 +4363,7 @@ void glshim_glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q) { packed_data.args.a4 = (GLfloat)q; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q) __attribute__((alias("glshim_glTexCoord4f"))); +void glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q) __attribute__((alias("glshim_glTexCoord4f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord4fv) && !defined(skip_index_glTexCoord4fv) void glshim_glTexCoord4fv(const GLfloat * v) { @@ -4372,7 +4372,7 @@ void glshim_glTexCoord4fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord4fv(const GLfloat * v) __attribute__((alias("glshim_glTexCoord4fv"))); +void glTexCoord4fv(const GLfloat * v) __attribute__((alias("glshim_glTexCoord4fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord4i) && !defined(skip_index_glTexCoord4i) void glshim_glTexCoord4i(GLint s, GLint t, GLint r, GLint q) { @@ -4384,7 +4384,7 @@ void glshim_glTexCoord4i(GLint s, GLint t, GLint r, GLint q) { packed_data.args.a4 = (GLint)q; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord4i(GLint s, GLint t, GLint r, GLint q) __attribute__((alias("glshim_glTexCoord4i"))); +void glTexCoord4i(GLint s, GLint t, GLint r, GLint q) __attribute__((alias("glshim_glTexCoord4i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord4iv) && !defined(skip_index_glTexCoord4iv) void glshim_glTexCoord4iv(const GLint * v) { @@ -4393,7 +4393,7 @@ void glshim_glTexCoord4iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord4iv(const GLint * v) __attribute__((alias("glshim_glTexCoord4iv"))); +void glTexCoord4iv(const GLint * v) __attribute__((alias("glshim_glTexCoord4iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord4s) && !defined(skip_index_glTexCoord4s) void glshim_glTexCoord4s(GLshort s, GLshort t, GLshort r, GLshort q) { @@ -4405,7 +4405,7 @@ void glshim_glTexCoord4s(GLshort s, GLshort t, GLshort r, GLshort q) { packed_data.args.a4 = (GLshort)q; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord4s(GLshort s, GLshort t, GLshort r, GLshort q) __attribute__((alias("glshim_glTexCoord4s"))); +void glTexCoord4s(GLshort s, GLshort t, GLshort r, GLshort q) __attribute__((alias("glshim_glTexCoord4s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoord4sv) && !defined(skip_index_glTexCoord4sv) void glshim_glTexCoord4sv(const GLshort * v) { @@ -4414,7 +4414,7 @@ void glshim_glTexCoord4sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoord4sv(const GLshort * v) __attribute__((alias("glshim_glTexCoord4sv"))); +void glTexCoord4sv(const GLshort * v) __attribute__((alias("glshim_glTexCoord4sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexCoordPointer) && !defined(skip_index_glTexCoordPointer) void glshim_glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -4426,7 +4426,7 @@ void glshim_glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLv packed_data.args.a4 = (GLvoid *)pointer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glTexCoordPointer"))); +void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glTexCoordPointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexEnvf) && !defined(skip_index_glTexEnvf) void glshim_glTexEnvf(GLenum target, GLenum pname, GLfloat param) { @@ -4437,7 +4437,7 @@ void glshim_glTexEnvf(GLenum target, GLenum pname, GLfloat param) { packed_data.args.a3 = (GLfloat)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexEnvf(GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexEnvf"))); +void glTexEnvf(GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexEnvf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexEnvfv) && !defined(skip_index_glTexEnvfv) void glshim_glTexEnvfv(GLenum target, GLenum pname, const GLfloat * params) { @@ -4448,7 +4448,7 @@ void glshim_glTexEnvfv(GLenum target, GLenum pname, const GLfloat * params) { packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexEnvfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexEnvfv"))); +void glTexEnvfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexEnvfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexEnvi) && !defined(skip_index_glTexEnvi) void glshim_glTexEnvi(GLenum target, GLenum pname, GLint param) { @@ -4459,7 +4459,7 @@ void glshim_glTexEnvi(GLenum target, GLenum pname, GLint param) { packed_data.args.a3 = (GLint)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexEnvi(GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glTexEnvi"))); +void glTexEnvi(GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glTexEnvi"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexEnviv) && !defined(skip_index_glTexEnviv) void glshim_glTexEnviv(GLenum target, GLenum pname, const GLint * params) { @@ -4470,7 +4470,7 @@ void glshim_glTexEnviv(GLenum target, GLenum pname, const GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexEnviv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glTexEnviv"))); +void glTexEnviv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glTexEnviv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexGend) && !defined(skip_index_glTexGend) void glshim_glTexGend(GLenum coord, GLenum pname, GLdouble param) { @@ -4481,7 +4481,7 @@ void glshim_glTexGend(GLenum coord, GLenum pname, GLdouble param) { packed_data.args.a3 = (GLdouble)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexGend(GLenum coord, GLenum pname, GLdouble param) __attribute__((alias("glshim_glTexGend"))); +void glTexGend(GLenum coord, GLenum pname, GLdouble param) __attribute__((alias("glshim_glTexGend"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexGendv) && !defined(skip_index_glTexGendv) void glshim_glTexGendv(GLenum coord, GLenum pname, const GLdouble * params) { @@ -4492,7 +4492,7 @@ void glshim_glTexGendv(GLenum coord, GLenum pname, const GLdouble * params) { packed_data.args.a3 = (GLdouble *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexGendv(GLenum coord, GLenum pname, const GLdouble * params) __attribute__((alias("glshim_glTexGendv"))); +void glTexGendv(GLenum coord, GLenum pname, const GLdouble * params) __attribute__((alias("glshim_glTexGendv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexGenf) && !defined(skip_index_glTexGenf) void glshim_glTexGenf(GLenum coord, GLenum pname, GLfloat param) { @@ -4503,7 +4503,7 @@ void glshim_glTexGenf(GLenum coord, GLenum pname, GLfloat param) { packed_data.args.a3 = (GLfloat)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexGenf(GLenum coord, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexGenf"))); +void glTexGenf(GLenum coord, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexGenf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexGenfv) && !defined(skip_index_glTexGenfv) void glshim_glTexGenfv(GLenum coord, GLenum pname, const GLfloat * params) { @@ -4514,7 +4514,7 @@ void glshim_glTexGenfv(GLenum coord, GLenum pname, const GLfloat * params) { packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexGenfv(GLenum coord, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexGenfv"))); +void glTexGenfv(GLenum coord, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexGenfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexGeni) && !defined(skip_index_glTexGeni) void glshim_glTexGeni(GLenum coord, GLenum pname, GLint param) { @@ -4525,7 +4525,7 @@ void glshim_glTexGeni(GLenum coord, GLenum pname, GLint param) { packed_data.args.a3 = (GLint)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexGeni(GLenum coord, GLenum pname, GLint param) __attribute__((alias("glshim_glTexGeni"))); +void glTexGeni(GLenum coord, GLenum pname, GLint param) __attribute__((alias("glshim_glTexGeni"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexGeniv) && !defined(skip_index_glTexGeniv) void glshim_glTexGeniv(GLenum coord, GLenum pname, const GLint * params) { @@ -4536,7 +4536,7 @@ void glshim_glTexGeniv(GLenum coord, GLenum pname, const GLint * params) { packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexGeniv(GLenum coord, GLenum pname, const GLint * params) __attribute__((alias("glshim_glTexGeniv"))); +void glTexGeniv(GLenum coord, GLenum pname, const GLint * params) __attribute__((alias("glshim_glTexGeniv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexImage1D) && !defined(skip_index_glTexImage1D) void glshim_glTexImage1D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid * pixels) { @@ -4552,7 +4552,7 @@ void glshim_glTexImage1D(GLenum target, GLint level, GLint internalformat, GLsiz packed_data.args.a8 = (GLvoid *)pixels; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexImage1D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexImage1D"))); +void glTexImage1D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexImage1D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexImage2D) && !defined(skip_index_glTexImage2D) void glshim_glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels) { @@ -4569,7 +4569,7 @@ void glshim_glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsiz packed_data.args.a9 = (GLvoid *)pixels; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexImage2D"))); +void glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexImage2D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexImage3D) && !defined(skip_index_glTexImage3D) void glshim_glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid * pixels) { @@ -4587,7 +4587,7 @@ void glshim_glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsiz packed_data.args.a10 = (GLvoid *)pixels; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexImage3D"))); +void glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexImage3D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexParameterf) && !defined(skip_index_glTexParameterf) void glshim_glTexParameterf(GLenum target, GLenum pname, GLfloat param) { @@ -4598,7 +4598,7 @@ void glshim_glTexParameterf(GLenum target, GLenum pname, GLfloat param) { packed_data.args.a3 = (GLfloat)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexParameterf(GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexParameterf"))); +void glTexParameterf(GLenum target, GLenum pname, GLfloat param) __attribute__((alias("glshim_glTexParameterf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexParameterfv) && !defined(skip_index_glTexParameterfv) void glshim_glTexParameterfv(GLenum target, GLenum pname, const GLfloat * params) { @@ -4609,7 +4609,7 @@ void glshim_glTexParameterfv(GLenum target, GLenum pname, const GLfloat * params packed_data.args.a3 = (GLfloat *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexParameterfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexParameterfv"))); +void glTexParameterfv(GLenum target, GLenum pname, const GLfloat * params) __attribute__((alias("glshim_glTexParameterfv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexParameteri) && !defined(skip_index_glTexParameteri) void glshim_glTexParameteri(GLenum target, GLenum pname, GLint param) { @@ -4620,7 +4620,7 @@ void glshim_glTexParameteri(GLenum target, GLenum pname, GLint param) { packed_data.args.a3 = (GLint)param; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexParameteri(GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glTexParameteri"))); +void glTexParameteri(GLenum target, GLenum pname, GLint param) __attribute__((alias("glshim_glTexParameteri"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexParameteriv) && !defined(skip_index_glTexParameteriv) void glshim_glTexParameteriv(GLenum target, GLenum pname, const GLint * params) { @@ -4631,7 +4631,7 @@ void glshim_glTexParameteriv(GLenum target, GLenum pname, const GLint * params) packed_data.args.a3 = (GLint *)params; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexParameteriv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glTexParameteriv"))); +void glTexParameteriv(GLenum target, GLenum pname, const GLint * params) __attribute__((alias("glshim_glTexParameteriv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexSubImage1D) && !defined(skip_index_glTexSubImage1D) void glshim_glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid * pixels) { @@ -4646,7 +4646,7 @@ void glshim_glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei w packed_data.args.a7 = (GLvoid *)pixels; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexSubImage1D"))); +void glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexSubImage1D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexSubImage2D) && !defined(skip_index_glTexSubImage2D) void glshim_glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * pixels) { @@ -4663,7 +4663,7 @@ void glshim_glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yof packed_data.args.a9 = (GLvoid *)pixels; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexSubImage2D"))); +void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexSubImage2D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTexSubImage3D) && !defined(skip_index_glTexSubImage3D) void glshim_glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid * pixels) { @@ -4682,7 +4682,7 @@ void glshim_glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yof packed_data.args.a11 = (GLvoid *)pixels; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexSubImage3D"))); +void glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid * pixels) __attribute__((alias("glshim_glTexSubImage3D"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTranslated) && !defined(skip_index_glTranslated) void glshim_glTranslated(GLdouble x, GLdouble y, GLdouble z) { @@ -4693,7 +4693,7 @@ void glshim_glTranslated(GLdouble x, GLdouble y, GLdouble z) { packed_data.args.a3 = (GLdouble)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTranslated(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glTranslated"))); +void glTranslated(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glTranslated"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glTranslatef) && !defined(skip_index_glTranslatef) void glshim_glTranslatef(GLfloat x, GLfloat y, GLfloat z) { @@ -4704,7 +4704,7 @@ void glshim_glTranslatef(GLfloat x, GLfloat y, GLfloat z) { packed_data.args.a3 = (GLfloat)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glTranslatef(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glTranslatef"))); +void glTranslatef(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glTranslatef"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glUnmapBuffer) && !defined(skip_index_glUnmapBuffer) GLboolean glshim_glUnmapBuffer(GLenum target) { @@ -4715,7 +4715,7 @@ GLboolean glshim_glUnmapBuffer(GLenum target) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLboolean glUnmapBuffer(GLenum target) __attribute__((alias("glshim_glUnmapBuffer"))); +GLboolean glUnmapBuffer(GLenum target) __attribute__((alias("glshim_glUnmapBuffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex2d) && !defined(skip_index_glVertex2d) void glshim_glVertex2d(GLdouble x, GLdouble y) { @@ -4725,7 +4725,7 @@ void glshim_glVertex2d(GLdouble x, GLdouble y) { packed_data.args.a2 = (GLdouble)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex2d(GLdouble x, GLdouble y) __attribute__((alias("glshim_glVertex2d"))); +void glVertex2d(GLdouble x, GLdouble y) __attribute__((alias("glshim_glVertex2d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex2dv) && !defined(skip_index_glVertex2dv) void glshim_glVertex2dv(const GLdouble * v) { @@ -4734,7 +4734,7 @@ void glshim_glVertex2dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex2dv(const GLdouble * v) __attribute__((alias("glshim_glVertex2dv"))); +void glVertex2dv(const GLdouble * v) __attribute__((alias("glshim_glVertex2dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex2f) && !defined(skip_index_glVertex2f) void glshim_glVertex2f(GLfloat x, GLfloat y) { @@ -4744,7 +4744,7 @@ void glshim_glVertex2f(GLfloat x, GLfloat y) { packed_data.args.a2 = (GLfloat)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex2f(GLfloat x, GLfloat y) __attribute__((alias("glshim_glVertex2f"))); +void glVertex2f(GLfloat x, GLfloat y) __attribute__((alias("glshim_glVertex2f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex2fv) && !defined(skip_index_glVertex2fv) void glshim_glVertex2fv(const GLfloat * v) { @@ -4753,7 +4753,7 @@ void glshim_glVertex2fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex2fv(const GLfloat * v) __attribute__((alias("glshim_glVertex2fv"))); +void glVertex2fv(const GLfloat * v) __attribute__((alias("glshim_glVertex2fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex2i) && !defined(skip_index_glVertex2i) void glshim_glVertex2i(GLint x, GLint y) { @@ -4763,7 +4763,7 @@ void glshim_glVertex2i(GLint x, GLint y) { packed_data.args.a2 = (GLint)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex2i(GLint x, GLint y) __attribute__((alias("glshim_glVertex2i"))); +void glVertex2i(GLint x, GLint y) __attribute__((alias("glshim_glVertex2i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex2iv) && !defined(skip_index_glVertex2iv) void glshim_glVertex2iv(const GLint * v) { @@ -4772,7 +4772,7 @@ void glshim_glVertex2iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex2iv(const GLint * v) __attribute__((alias("glshim_glVertex2iv"))); +void glVertex2iv(const GLint * v) __attribute__((alias("glshim_glVertex2iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex2s) && !defined(skip_index_glVertex2s) void glshim_glVertex2s(GLshort x, GLshort y) { @@ -4782,7 +4782,7 @@ void glshim_glVertex2s(GLshort x, GLshort y) { packed_data.args.a2 = (GLshort)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex2s(GLshort x, GLshort y) __attribute__((alias("glshim_glVertex2s"))); +void glVertex2s(GLshort x, GLshort y) __attribute__((alias("glshim_glVertex2s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex2sv) && !defined(skip_index_glVertex2sv) void glshim_glVertex2sv(const GLshort * v) { @@ -4791,7 +4791,7 @@ void glshim_glVertex2sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex2sv(const GLshort * v) __attribute__((alias("glshim_glVertex2sv"))); +void glVertex2sv(const GLshort * v) __attribute__((alias("glshim_glVertex2sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex3d) && !defined(skip_index_glVertex3d) void glshim_glVertex3d(GLdouble x, GLdouble y, GLdouble z) { @@ -4802,7 +4802,7 @@ void glshim_glVertex3d(GLdouble x, GLdouble y, GLdouble z) { packed_data.args.a3 = (GLdouble)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex3d(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glVertex3d"))); +void glVertex3d(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glVertex3d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex3dv) && !defined(skip_index_glVertex3dv) void glshim_glVertex3dv(const GLdouble * v) { @@ -4811,7 +4811,7 @@ void glshim_glVertex3dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex3dv(const GLdouble * v) __attribute__((alias("glshim_glVertex3dv"))); +void glVertex3dv(const GLdouble * v) __attribute__((alias("glshim_glVertex3dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex3f) && !defined(skip_index_glVertex3f) void glshim_glVertex3f(GLfloat x, GLfloat y, GLfloat z) { @@ -4822,7 +4822,7 @@ void glshim_glVertex3f(GLfloat x, GLfloat y, GLfloat z) { packed_data.args.a3 = (GLfloat)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex3f(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glVertex3f"))); +void glVertex3f(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glVertex3f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex3fv) && !defined(skip_index_glVertex3fv) void glshim_glVertex3fv(const GLfloat * v) { @@ -4831,7 +4831,7 @@ void glshim_glVertex3fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex3fv(const GLfloat * v) __attribute__((alias("glshim_glVertex3fv"))); +void glVertex3fv(const GLfloat * v) __attribute__((alias("glshim_glVertex3fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex3i) && !defined(skip_index_glVertex3i) void glshim_glVertex3i(GLint x, GLint y, GLint z) { @@ -4842,7 +4842,7 @@ void glshim_glVertex3i(GLint x, GLint y, GLint z) { packed_data.args.a3 = (GLint)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex3i(GLint x, GLint y, GLint z) __attribute__((alias("glshim_glVertex3i"))); +void glVertex3i(GLint x, GLint y, GLint z) __attribute__((alias("glshim_glVertex3i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex3iv) && !defined(skip_index_glVertex3iv) void glshim_glVertex3iv(const GLint * v) { @@ -4851,7 +4851,7 @@ void glshim_glVertex3iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex3iv(const GLint * v) __attribute__((alias("glshim_glVertex3iv"))); +void glVertex3iv(const GLint * v) __attribute__((alias("glshim_glVertex3iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex3s) && !defined(skip_index_glVertex3s) void glshim_glVertex3s(GLshort x, GLshort y, GLshort z) { @@ -4862,7 +4862,7 @@ void glshim_glVertex3s(GLshort x, GLshort y, GLshort z) { packed_data.args.a3 = (GLshort)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex3s(GLshort x, GLshort y, GLshort z) __attribute__((alias("glshim_glVertex3s"))); +void glVertex3s(GLshort x, GLshort y, GLshort z) __attribute__((alias("glshim_glVertex3s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex3sv) && !defined(skip_index_glVertex3sv) void glshim_glVertex3sv(const GLshort * v) { @@ -4871,7 +4871,7 @@ void glshim_glVertex3sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex3sv(const GLshort * v) __attribute__((alias("glshim_glVertex3sv"))); +void glVertex3sv(const GLshort * v) __attribute__((alias("glshim_glVertex3sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex4d) && !defined(skip_index_glVertex4d) void glshim_glVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w) { @@ -4883,7 +4883,7 @@ void glshim_glVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w) { packed_data.args.a4 = (GLdouble)w; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w) __attribute__((alias("glshim_glVertex4d"))); +void glVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w) __attribute__((alias("glshim_glVertex4d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex4dv) && !defined(skip_index_glVertex4dv) void glshim_glVertex4dv(const GLdouble * v) { @@ -4892,7 +4892,7 @@ void glshim_glVertex4dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex4dv(const GLdouble * v) __attribute__((alias("glshim_glVertex4dv"))); +void glVertex4dv(const GLdouble * v) __attribute__((alias("glshim_glVertex4dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex4f) && !defined(skip_index_glVertex4f) void glshim_glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) { @@ -4904,7 +4904,7 @@ void glshim_glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) { packed_data.args.a4 = (GLfloat)w; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) __attribute__((alias("glshim_glVertex4f"))); +void glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) __attribute__((alias("glshim_glVertex4f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex4fv) && !defined(skip_index_glVertex4fv) void glshim_glVertex4fv(const GLfloat * v) { @@ -4913,7 +4913,7 @@ void glshim_glVertex4fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex4fv(const GLfloat * v) __attribute__((alias("glshim_glVertex4fv"))); +void glVertex4fv(const GLfloat * v) __attribute__((alias("glshim_glVertex4fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex4i) && !defined(skip_index_glVertex4i) void glshim_glVertex4i(GLint x, GLint y, GLint z, GLint w) { @@ -4925,7 +4925,7 @@ void glshim_glVertex4i(GLint x, GLint y, GLint z, GLint w) { packed_data.args.a4 = (GLint)w; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex4i(GLint x, GLint y, GLint z, GLint w) __attribute__((alias("glshim_glVertex4i"))); +void glVertex4i(GLint x, GLint y, GLint z, GLint w) __attribute__((alias("glshim_glVertex4i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex4iv) && !defined(skip_index_glVertex4iv) void glshim_glVertex4iv(const GLint * v) { @@ -4934,7 +4934,7 @@ void glshim_glVertex4iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex4iv(const GLint * v) __attribute__((alias("glshim_glVertex4iv"))); +void glVertex4iv(const GLint * v) __attribute__((alias("glshim_glVertex4iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex4s) && !defined(skip_index_glVertex4s) void glshim_glVertex4s(GLshort x, GLshort y, GLshort z, GLshort w) { @@ -4946,7 +4946,7 @@ void glshim_glVertex4s(GLshort x, GLshort y, GLshort z, GLshort w) { packed_data.args.a4 = (GLshort)w; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex4s(GLshort x, GLshort y, GLshort z, GLshort w) __attribute__((alias("glshim_glVertex4s"))); +void glVertex4s(GLshort x, GLshort y, GLshort z, GLshort w) __attribute__((alias("glshim_glVertex4s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertex4sv) && !defined(skip_index_glVertex4sv) void glshim_glVertex4sv(const GLshort * v) { @@ -4955,7 +4955,7 @@ void glshim_glVertex4sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertex4sv(const GLshort * v) __attribute__((alias("glshim_glVertex4sv"))); +void glVertex4sv(const GLshort * v) __attribute__((alias("glshim_glVertex4sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glVertexPointer) && !defined(skip_index_glVertexPointer) void glshim_glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) { @@ -4967,7 +4967,7 @@ void glshim_glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoi packed_data.args.a4 = (GLvoid *)pointer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glVertexPointer"))); +void glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) __attribute__((alias("glshim_glVertexPointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glViewport) && !defined(skip_index_glViewport) void glshim_glViewport(GLint x, GLint y, GLsizei width, GLsizei height) { @@ -4979,7 +4979,7 @@ void glshim_glViewport(GLint x, GLint y, GLsizei width, GLsizei height) { packed_data.args.a4 = (GLsizei)height; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glViewport(GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glViewport"))); +void glViewport(GLint x, GLint y, GLsizei width, GLsizei height) __attribute__((alias("glshim_glViewport"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos2d) && !defined(skip_index_glWindowPos2d) void glshim_glWindowPos2d(GLdouble x, GLdouble y) { @@ -4989,7 +4989,7 @@ void glshim_glWindowPos2d(GLdouble x, GLdouble y) { packed_data.args.a2 = (GLdouble)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos2d(GLdouble x, GLdouble y) __attribute__((alias("glshim_glWindowPos2d"))); +void glWindowPos2d(GLdouble x, GLdouble y) __attribute__((alias("glshim_glWindowPos2d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos2dv) && !defined(skip_index_glWindowPos2dv) void glshim_glWindowPos2dv(const GLdouble * v) { @@ -4998,7 +4998,7 @@ void glshim_glWindowPos2dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos2dv(const GLdouble * v) __attribute__((alias("glshim_glWindowPos2dv"))); +void glWindowPos2dv(const GLdouble * v) __attribute__((alias("glshim_glWindowPos2dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos2f) && !defined(skip_index_glWindowPos2f) void glshim_glWindowPos2f(GLfloat x, GLfloat y) { @@ -5008,7 +5008,7 @@ void glshim_glWindowPos2f(GLfloat x, GLfloat y) { packed_data.args.a2 = (GLfloat)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos2f(GLfloat x, GLfloat y) __attribute__((alias("glshim_glWindowPos2f"))); +void glWindowPos2f(GLfloat x, GLfloat y) __attribute__((alias("glshim_glWindowPos2f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos2fv) && !defined(skip_index_glWindowPos2fv) void glshim_glWindowPos2fv(const GLfloat * v) { @@ -5017,7 +5017,7 @@ void glshim_glWindowPos2fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos2fv(const GLfloat * v) __attribute__((alias("glshim_glWindowPos2fv"))); +void glWindowPos2fv(const GLfloat * v) __attribute__((alias("glshim_glWindowPos2fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos2i) && !defined(skip_index_glWindowPos2i) void glshim_glWindowPos2i(GLint x, GLint y) { @@ -5027,7 +5027,7 @@ void glshim_glWindowPos2i(GLint x, GLint y) { packed_data.args.a2 = (GLint)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos2i(GLint x, GLint y) __attribute__((alias("glshim_glWindowPos2i"))); +void glWindowPos2i(GLint x, GLint y) __attribute__((alias("glshim_glWindowPos2i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos2iv) && !defined(skip_index_glWindowPos2iv) void glshim_glWindowPos2iv(const GLint * v) { @@ -5036,7 +5036,7 @@ void glshim_glWindowPos2iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos2iv(const GLint * v) __attribute__((alias("glshim_glWindowPos2iv"))); +void glWindowPos2iv(const GLint * v) __attribute__((alias("glshim_glWindowPos2iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos2s) && !defined(skip_index_glWindowPos2s) void glshim_glWindowPos2s(GLshort x, GLshort y) { @@ -5046,7 +5046,7 @@ void glshim_glWindowPos2s(GLshort x, GLshort y) { packed_data.args.a2 = (GLshort)y; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos2s(GLshort x, GLshort y) __attribute__((alias("glshim_glWindowPos2s"))); +void glWindowPos2s(GLshort x, GLshort y) __attribute__((alias("glshim_glWindowPos2s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos2sv) && !defined(skip_index_glWindowPos2sv) void glshim_glWindowPos2sv(const GLshort * v) { @@ -5055,7 +5055,7 @@ void glshim_glWindowPos2sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos2sv(const GLshort * v) __attribute__((alias("glshim_glWindowPos2sv"))); +void glWindowPos2sv(const GLshort * v) __attribute__((alias("glshim_glWindowPos2sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos3d) && !defined(skip_index_glWindowPos3d) void glshim_glWindowPos3d(GLdouble x, GLdouble y, GLdouble z) { @@ -5066,7 +5066,7 @@ void glshim_glWindowPos3d(GLdouble x, GLdouble y, GLdouble z) { packed_data.args.a3 = (GLdouble)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos3d(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glWindowPos3d"))); +void glWindowPos3d(GLdouble x, GLdouble y, GLdouble z) __attribute__((alias("glshim_glWindowPos3d"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos3dv) && !defined(skip_index_glWindowPos3dv) void glshim_glWindowPos3dv(const GLdouble * v) { @@ -5075,7 +5075,7 @@ void glshim_glWindowPos3dv(const GLdouble * v) { packed_data.args.a1 = (GLdouble *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos3dv(const GLdouble * v) __attribute__((alias("glshim_glWindowPos3dv"))); +void glWindowPos3dv(const GLdouble * v) __attribute__((alias("glshim_glWindowPos3dv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos3f) && !defined(skip_index_glWindowPos3f) void glshim_glWindowPos3f(GLfloat x, GLfloat y, GLfloat z) { @@ -5086,7 +5086,7 @@ void glshim_glWindowPos3f(GLfloat x, GLfloat y, GLfloat z) { packed_data.args.a3 = (GLfloat)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos3f(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glWindowPos3f"))); +void glWindowPos3f(GLfloat x, GLfloat y, GLfloat z) __attribute__((alias("glshim_glWindowPos3f"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos3fv) && !defined(skip_index_glWindowPos3fv) void glshim_glWindowPos3fv(const GLfloat * v) { @@ -5095,7 +5095,7 @@ void glshim_glWindowPos3fv(const GLfloat * v) { packed_data.args.a1 = (GLfloat *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos3fv(const GLfloat * v) __attribute__((alias("glshim_glWindowPos3fv"))); +void glWindowPos3fv(const GLfloat * v) __attribute__((alias("glshim_glWindowPos3fv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos3i) && !defined(skip_index_glWindowPos3i) void glshim_glWindowPos3i(GLint x, GLint y, GLint z) { @@ -5106,7 +5106,7 @@ void glshim_glWindowPos3i(GLint x, GLint y, GLint z) { packed_data.args.a3 = (GLint)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos3i(GLint x, GLint y, GLint z) __attribute__((alias("glshim_glWindowPos3i"))); +void glWindowPos3i(GLint x, GLint y, GLint z) __attribute__((alias("glshim_glWindowPos3i"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos3iv) && !defined(skip_index_glWindowPos3iv) void glshim_glWindowPos3iv(const GLint * v) { @@ -5115,7 +5115,7 @@ void glshim_glWindowPos3iv(const GLint * v) { packed_data.args.a1 = (GLint *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos3iv(const GLint * v) __attribute__((alias("glshim_glWindowPos3iv"))); +void glWindowPos3iv(const GLint * v) __attribute__((alias("glshim_glWindowPos3iv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos3s) && !defined(skip_index_glWindowPos3s) void glshim_glWindowPos3s(GLshort x, GLshort y, GLshort z) { @@ -5126,7 +5126,7 @@ void glshim_glWindowPos3s(GLshort x, GLshort y, GLshort z) { packed_data.args.a3 = (GLshort)z; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos3s(GLshort x, GLshort y, GLshort z) __attribute__((alias("glshim_glWindowPos3s"))); +void glWindowPos3s(GLshort x, GLshort y, GLshort z) __attribute__((alias("glshim_glWindowPos3s"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glWindowPos3sv) && !defined(skip_index_glWindowPos3sv) void glshim_glWindowPos3sv(const GLshort * v) { @@ -5135,7 +5135,7 @@ void glshim_glWindowPos3sv(const GLshort * v) { packed_data.args.a1 = (GLshort *)v; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glWindowPos3sv(const GLshort * v) __attribute__((alias("glshim_glWindowPos3sv"))); +void glWindowPos3sv(const GLshort * v) __attribute__((alias("glshim_glWindowPos3sv"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXBindHyperpipeSGIX) && !defined(skip_index_glXBindHyperpipeSGIX) int glshim_glXBindHyperpipeSGIX(Display * dpy, int hpId) { @@ -5147,7 +5147,7 @@ int glshim_glXBindHyperpipeSGIX(Display * dpy, int hpId) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int glXBindHyperpipeSGIX(Display * dpy, int hpId) __attribute__((alias("glshim_glXBindHyperpipeSGIX"))); +int glXBindHyperpipeSGIX(Display * dpy, int hpId) __attribute__((alias("glshim_glXBindHyperpipeSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXBindSwapBarrierSGIX) && !defined(skip_index_glXBindSwapBarrierSGIX) void glshim_glXBindSwapBarrierSGIX(uint32_t window, uint32_t barrier) { @@ -5157,7 +5157,7 @@ void glshim_glXBindSwapBarrierSGIX(uint32_t window, uint32_t barrier) { packed_data.args.a2 = (uint32_t)barrier; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXBindSwapBarrierSGIX(uint32_t window, uint32_t barrier) __attribute__((alias("glshim_glXBindSwapBarrierSGIX"))); +void glXBindSwapBarrierSGIX(uint32_t window, uint32_t barrier) __attribute__((alias("glshim_glXBindSwapBarrierSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXChangeDrawableAttributes) && !defined(skip_index_glXChangeDrawableAttributes) void glshim_glXChangeDrawableAttributes(uint32_t drawable) { @@ -5166,7 +5166,7 @@ void glshim_glXChangeDrawableAttributes(uint32_t drawable) { packed_data.args.a1 = (uint32_t)drawable; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXChangeDrawableAttributes(uint32_t drawable) __attribute__((alias("glshim_glXChangeDrawableAttributes"))); +void glXChangeDrawableAttributes(uint32_t drawable) __attribute__((alias("glshim_glXChangeDrawableAttributes"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXChangeDrawableAttributesSGIX) && !defined(skip_index_glXChangeDrawableAttributesSGIX) void glshim_glXChangeDrawableAttributesSGIX(uint32_t drawable) { @@ -5175,7 +5175,7 @@ void glshim_glXChangeDrawableAttributesSGIX(uint32_t drawable) { packed_data.args.a1 = (uint32_t)drawable; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXChangeDrawableAttributesSGIX(uint32_t drawable) __attribute__((alias("glshim_glXChangeDrawableAttributesSGIX"))); +void glXChangeDrawableAttributesSGIX(uint32_t drawable) __attribute__((alias("glshim_glXChangeDrawableAttributesSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXChooseFBConfig) && !defined(skip_index_glXChooseFBConfig) GLXFBConfig * glshim_glXChooseFBConfig(Display * dpy, int screen, const int * attrib_list, int * nelements) { @@ -5189,7 +5189,7 @@ GLXFBConfig * glshim_glXChooseFBConfig(Display * dpy, int screen, const int * at syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXFBConfig * glXChooseFBConfig(Display * dpy, int screen, const int * attrib_list, int * nelements) __attribute__((alias("glshim_glXChooseFBConfig"))); +GLXFBConfig * glXChooseFBConfig(Display * dpy, int screen, const int * attrib_list, int * nelements) __attribute__((alias("glshim_glXChooseFBConfig"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXChooseVisual) && !defined(skip_index_glXChooseVisual) XVisualInfo * glshim_glXChooseVisual(Display * dpy, int screen, int * attribList) { @@ -5202,7 +5202,7 @@ XVisualInfo * glshim_glXChooseVisual(Display * dpy, int screen, int * attribList syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -XVisualInfo * glXChooseVisual(Display * dpy, int screen, int * attribList) __attribute__((alias("glshim_glXChooseVisual"))); +XVisualInfo * glXChooseVisual(Display * dpy, int screen, int * attribList) __attribute__((alias("glshim_glXChooseVisual"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXClientInfo) && !defined(skip_index_glXClientInfo) void glshim_glXClientInfo() { @@ -5210,7 +5210,7 @@ void glshim_glXClientInfo() { packed_data.func = glXClientInfo_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXClientInfo() __attribute__((alias("glshim_glXClientInfo"))); +void glXClientInfo() __attribute__((alias("glshim_glXClientInfo"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCopyContext) && !defined(skip_index_glXCopyContext) void glshim_glXCopyContext(Display * dpy, GLXContext src, GLXContext dst, unsigned long mask) { @@ -5222,7 +5222,7 @@ void glshim_glXCopyContext(Display * dpy, GLXContext src, GLXContext dst, unsign packed_data.args.a4 = (unsigned long)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXCopyContext(Display * dpy, GLXContext src, GLXContext dst, unsigned long mask) __attribute__((alias("glshim_glXCopyContext"))); +void glXCopyContext(Display * dpy, GLXContext src, GLXContext dst, unsigned long mask) __attribute__((alias("glshim_glXCopyContext"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreateContext) && !defined(skip_index_glXCreateContext) GLXContext glshim_glXCreateContext(Display * dpy, XVisualInfo * vis, GLXContext shareList, Bool direct) { @@ -5236,7 +5236,7 @@ GLXContext glshim_glXCreateContext(Display * dpy, XVisualInfo * vis, GLXContext syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXContext glXCreateContext(Display * dpy, XVisualInfo * vis, GLXContext shareList, Bool direct) __attribute__((alias("glshim_glXCreateContext"))); +GLXContext glXCreateContext(Display * dpy, XVisualInfo * vis, GLXContext shareList, Bool direct) __attribute__((alias("glshim_glXCreateContext"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreateContextAttribsARB) && !defined(skip_index_glXCreateContextAttribsARB) GLXContext glshim_glXCreateContextAttribsARB(Display * display, void * config, GLXContext share_context, Bool direct, const int * attrib_list) { @@ -5251,7 +5251,7 @@ GLXContext glshim_glXCreateContextAttribsARB(Display * display, void * config, G syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXContext glXCreateContextAttribsARB(Display * display, void * config, GLXContext share_context, Bool direct, const int * attrib_list) __attribute__((alias("glshim_glXCreateContextAttribsARB"))); +GLXContext glXCreateContextAttribsARB(Display * display, void * config, GLXContext share_context, Bool direct, const int * attrib_list) __attribute__((alias("glshim_glXCreateContextAttribsARB"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreateContextWithConfigSGIX) && !defined(skip_index_glXCreateContextWithConfigSGIX) void glshim_glXCreateContextWithConfigSGIX(uint32_t gc_id, uint32_t screen, uint32_t config, uint32_t share_list) { @@ -5263,7 +5263,7 @@ void glshim_glXCreateContextWithConfigSGIX(uint32_t gc_id, uint32_t screen, uint packed_data.args.a4 = (uint32_t)share_list; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXCreateContextWithConfigSGIX(uint32_t gc_id, uint32_t screen, uint32_t config, uint32_t share_list) __attribute__((alias("glshim_glXCreateContextWithConfigSGIX"))); +void glXCreateContextWithConfigSGIX(uint32_t gc_id, uint32_t screen, uint32_t config, uint32_t share_list) __attribute__((alias("glshim_glXCreateContextWithConfigSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreateGLXPbufferSGIX) && !defined(skip_index_glXCreateGLXPbufferSGIX) void glshim_glXCreateGLXPbufferSGIX(uint32_t config, uint32_t pbuffer) { @@ -5273,7 +5273,7 @@ void glshim_glXCreateGLXPbufferSGIX(uint32_t config, uint32_t pbuffer) { packed_data.args.a2 = (uint32_t)pbuffer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXCreateGLXPbufferSGIX(uint32_t config, uint32_t pbuffer) __attribute__((alias("glshim_glXCreateGLXPbufferSGIX"))); +void glXCreateGLXPbufferSGIX(uint32_t config, uint32_t pbuffer) __attribute__((alias("glshim_glXCreateGLXPbufferSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreateGLXPixmap) && !defined(skip_index_glXCreateGLXPixmap) GLXPixmap glshim_glXCreateGLXPixmap(Display * dpy, XVisualInfo * visual, Pixmap pixmap) { @@ -5286,7 +5286,7 @@ GLXPixmap glshim_glXCreateGLXPixmap(Display * dpy, XVisualInfo * visual, Pixmap syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXPixmap glXCreateGLXPixmap(Display * dpy, XVisualInfo * visual, Pixmap pixmap) __attribute__((alias("glshim_glXCreateGLXPixmap"))); +GLXPixmap glXCreateGLXPixmap(Display * dpy, XVisualInfo * visual, Pixmap pixmap) __attribute__((alias("glshim_glXCreateGLXPixmap"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreateGLXPixmapWithConfigSGIX) && !defined(skip_index_glXCreateGLXPixmapWithConfigSGIX) void glshim_glXCreateGLXPixmapWithConfigSGIX(uint32_t config, uint32_t pixmap, uint32_t glxpixmap) { @@ -5297,7 +5297,7 @@ void glshim_glXCreateGLXPixmapWithConfigSGIX(uint32_t config, uint32_t pixmap, u packed_data.args.a3 = (uint32_t)glxpixmap; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXCreateGLXPixmapWithConfigSGIX(uint32_t config, uint32_t pixmap, uint32_t glxpixmap) __attribute__((alias("glshim_glXCreateGLXPixmapWithConfigSGIX"))); +void glXCreateGLXPixmapWithConfigSGIX(uint32_t config, uint32_t pixmap, uint32_t glxpixmap) __attribute__((alias("glshim_glXCreateGLXPixmapWithConfigSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreateGLXVideoSourceSGIX) && !defined(skip_index_glXCreateGLXVideoSourceSGIX) void glshim_glXCreateGLXVideoSourceSGIX(Display * dpy, uint32_t screen, uint32_t server, uint32_t path, uint32_t class, uint32_t node) { @@ -5311,7 +5311,7 @@ void glshim_glXCreateGLXVideoSourceSGIX(Display * dpy, uint32_t screen, uint32_t packed_data.args.a6 = (uint32_t)node; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXCreateGLXVideoSourceSGIX(Display * dpy, uint32_t screen, uint32_t server, uint32_t path, uint32_t class, uint32_t node) __attribute__((alias("glshim_glXCreateGLXVideoSourceSGIX"))); +void glXCreateGLXVideoSourceSGIX(Display * dpy, uint32_t screen, uint32_t server, uint32_t path, uint32_t class, uint32_t node) __attribute__((alias("glshim_glXCreateGLXVideoSourceSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreateNewContext) && !defined(skip_index_glXCreateNewContext) GLXContext glshim_glXCreateNewContext(Display * dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct) { @@ -5326,7 +5326,7 @@ GLXContext glshim_glXCreateNewContext(Display * dpy, GLXFBConfig config, int ren syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXContext glXCreateNewContext(Display * dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct) __attribute__((alias("glshim_glXCreateNewContext"))); +GLXContext glXCreateNewContext(Display * dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct) __attribute__((alias("glshim_glXCreateNewContext"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreatePbuffer) && !defined(skip_index_glXCreatePbuffer) GLXPbuffer glshim_glXCreatePbuffer(Display * dpy, GLXFBConfig config, const int * attrib_list) { @@ -5339,7 +5339,7 @@ GLXPbuffer glshim_glXCreatePbuffer(Display * dpy, GLXFBConfig config, const int syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXPbuffer glXCreatePbuffer(Display * dpy, GLXFBConfig config, const int * attrib_list) __attribute__((alias("glshim_glXCreatePbuffer"))); +GLXPbuffer glXCreatePbuffer(Display * dpy, GLXFBConfig config, const int * attrib_list) __attribute__((alias("glshim_glXCreatePbuffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreatePixmap) && !defined(skip_index_glXCreatePixmap) GLXPixmap glshim_glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixmap, const int * attrib_list) { @@ -5353,7 +5353,7 @@ GLXPixmap glshim_glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixma syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXPixmap glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixmap, const int * attrib_list) __attribute__((alias("glshim_glXCreatePixmap"))); +GLXPixmap glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixmap, const int * attrib_list) __attribute__((alias("glshim_glXCreatePixmap"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXCreateWindow) && !defined(skip_index_glXCreateWindow) GLXWindow glshim_glXCreateWindow(Display * dpy, GLXFBConfig config, Window win, const int * attrib_list) { @@ -5367,7 +5367,7 @@ GLXWindow glshim_glXCreateWindow(Display * dpy, GLXFBConfig config, Window win, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXWindow glXCreateWindow(Display * dpy, GLXFBConfig config, Window win, const int * attrib_list) __attribute__((alias("glshim_glXCreateWindow"))); +GLXWindow glXCreateWindow(Display * dpy, GLXFBConfig config, Window win, const int * attrib_list) __attribute__((alias("glshim_glXCreateWindow"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXDestroyContext) && !defined(skip_index_glXDestroyContext) void glshim_glXDestroyContext(Display * dpy, GLXContext ctx) { @@ -5377,7 +5377,7 @@ void glshim_glXDestroyContext(Display * dpy, GLXContext ctx) { packed_data.args.a2 = (GLXContext)ctx; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXDestroyContext(Display * dpy, GLXContext ctx) __attribute__((alias("glshim_glXDestroyContext"))); +void glXDestroyContext(Display * dpy, GLXContext ctx) __attribute__((alias("glshim_glXDestroyContext"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXDestroyGLXPbufferSGIX) && !defined(skip_index_glXDestroyGLXPbufferSGIX) void glshim_glXDestroyGLXPbufferSGIX(uint32_t pbuffer) { @@ -5386,7 +5386,7 @@ void glshim_glXDestroyGLXPbufferSGIX(uint32_t pbuffer) { packed_data.args.a1 = (uint32_t)pbuffer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXDestroyGLXPbufferSGIX(uint32_t pbuffer) __attribute__((alias("glshim_glXDestroyGLXPbufferSGIX"))); +void glXDestroyGLXPbufferSGIX(uint32_t pbuffer) __attribute__((alias("glshim_glXDestroyGLXPbufferSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXDestroyGLXPixmap) && !defined(skip_index_glXDestroyGLXPixmap) void glshim_glXDestroyGLXPixmap(Display * dpy, GLXPixmap pixmap) { @@ -5396,7 +5396,7 @@ void glshim_glXDestroyGLXPixmap(Display * dpy, GLXPixmap pixmap) { packed_data.args.a2 = (GLXPixmap)pixmap; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXDestroyGLXPixmap(Display * dpy, GLXPixmap pixmap) __attribute__((alias("glshim_glXDestroyGLXPixmap"))); +void glXDestroyGLXPixmap(Display * dpy, GLXPixmap pixmap) __attribute__((alias("glshim_glXDestroyGLXPixmap"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXDestroyGLXVideoSourceSGIX) && !defined(skip_index_glXDestroyGLXVideoSourceSGIX) void glshim_glXDestroyGLXVideoSourceSGIX(Display * dpy, uint32_t glxvideosource) { @@ -5406,7 +5406,7 @@ void glshim_glXDestroyGLXVideoSourceSGIX(Display * dpy, uint32_t glxvideosource) packed_data.args.a2 = (uint32_t)glxvideosource; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXDestroyGLXVideoSourceSGIX(Display * dpy, uint32_t glxvideosource) __attribute__((alias("glshim_glXDestroyGLXVideoSourceSGIX"))); +void glXDestroyGLXVideoSourceSGIX(Display * dpy, uint32_t glxvideosource) __attribute__((alias("glshim_glXDestroyGLXVideoSourceSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXDestroyHyperpipeConfigSGIX) && !defined(skip_index_glXDestroyHyperpipeConfigSGIX) int glshim_glXDestroyHyperpipeConfigSGIX(Display * dpy, int hpId) { @@ -5418,7 +5418,7 @@ int glshim_glXDestroyHyperpipeConfigSGIX(Display * dpy, int hpId) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int glXDestroyHyperpipeConfigSGIX(Display * dpy, int hpId) __attribute__((alias("glshim_glXDestroyHyperpipeConfigSGIX"))); +int glXDestroyHyperpipeConfigSGIX(Display * dpy, int hpId) __attribute__((alias("glshim_glXDestroyHyperpipeConfigSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXDestroyPbuffer) && !defined(skip_index_glXDestroyPbuffer) void glshim_glXDestroyPbuffer(Display * dpy, GLXPbuffer pbuf) { @@ -5428,7 +5428,7 @@ void glshim_glXDestroyPbuffer(Display * dpy, GLXPbuffer pbuf) { packed_data.args.a2 = (GLXPbuffer)pbuf; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXDestroyPbuffer(Display * dpy, GLXPbuffer pbuf) __attribute__((alias("glshim_glXDestroyPbuffer"))); +void glXDestroyPbuffer(Display * dpy, GLXPbuffer pbuf) __attribute__((alias("glshim_glXDestroyPbuffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXDestroyPixmap) && !defined(skip_index_glXDestroyPixmap) void glshim_glXDestroyPixmap(Display * dpy, GLXPixmap pixmap) { @@ -5438,7 +5438,7 @@ void glshim_glXDestroyPixmap(Display * dpy, GLXPixmap pixmap) { packed_data.args.a2 = (GLXPixmap)pixmap; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXDestroyPixmap(Display * dpy, GLXPixmap pixmap) __attribute__((alias("glshim_glXDestroyPixmap"))); +void glXDestroyPixmap(Display * dpy, GLXPixmap pixmap) __attribute__((alias("glshim_glXDestroyPixmap"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXDestroyWindow) && !defined(skip_index_glXDestroyWindow) void glshim_glXDestroyWindow(Display * dpy, GLXWindow win) { @@ -5448,7 +5448,7 @@ void glshim_glXDestroyWindow(Display * dpy, GLXWindow win) { packed_data.args.a2 = (GLXWindow)win; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXDestroyWindow(Display * dpy, GLXWindow win) __attribute__((alias("glshim_glXDestroyWindow"))); +void glXDestroyWindow(Display * dpy, GLXWindow win) __attribute__((alias("glshim_glXDestroyWindow"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetClientString) && !defined(skip_index_glXGetClientString) const char * glshim_glXGetClientString(Display * display, int name) { @@ -5460,7 +5460,7 @@ const char * glshim_glXGetClientString(Display * display, int name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * glXGetClientString(Display * display, int name) __attribute__((alias("glshim_glXGetClientString"))); +const char * glXGetClientString(Display * display, int name) __attribute__((alias("glshim_glXGetClientString"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetConfig) && !defined(skip_index_glXGetConfig) int glshim_glXGetConfig(Display * display, XVisualInfo * visual, int attribute, int * value) { @@ -5474,7 +5474,7 @@ int glshim_glXGetConfig(Display * display, XVisualInfo * visual, int attribute, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int glXGetConfig(Display * display, XVisualInfo * visual, int attribute, int * value) __attribute__((alias("glshim_glXGetConfig"))); +int glXGetConfig(Display * display, XVisualInfo * visual, int attribute, int * value) __attribute__((alias("glshim_glXGetConfig"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetCurrentContext) && !defined(skip_index_glXGetCurrentContext) GLXContext glshim_glXGetCurrentContext() { @@ -5484,7 +5484,7 @@ GLXContext glshim_glXGetCurrentContext() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXContext glXGetCurrentContext() __attribute__((alias("glshim_glXGetCurrentContext"))); +GLXContext glXGetCurrentContext() __attribute__((alias("glshim_glXGetCurrentContext"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetCurrentDisplay) && !defined(skip_index_glXGetCurrentDisplay) Display * glshim_glXGetCurrentDisplay() { @@ -5494,7 +5494,7 @@ Display * glshim_glXGetCurrentDisplay() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -Display * glXGetCurrentDisplay() __attribute__((alias("glshim_glXGetCurrentDisplay"))); +Display * glXGetCurrentDisplay() __attribute__((alias("glshim_glXGetCurrentDisplay"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetCurrentDrawable) && !defined(skip_index_glXGetCurrentDrawable) GLXDrawable glshim_glXGetCurrentDrawable() { @@ -5504,7 +5504,7 @@ GLXDrawable glshim_glXGetCurrentDrawable() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXDrawable glXGetCurrentDrawable() __attribute__((alias("glshim_glXGetCurrentDrawable"))); +GLXDrawable glXGetCurrentDrawable() __attribute__((alias("glshim_glXGetCurrentDrawable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetCurrentReadDrawable) && !defined(skip_index_glXGetCurrentReadDrawable) GLXDrawable glshim_glXGetCurrentReadDrawable() { @@ -5514,7 +5514,7 @@ GLXDrawable glshim_glXGetCurrentReadDrawable() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXDrawable glXGetCurrentReadDrawable() __attribute__((alias("glshim_glXGetCurrentReadDrawable"))); +GLXDrawable glXGetCurrentReadDrawable() __attribute__((alias("glshim_glXGetCurrentReadDrawable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetDrawableAttributes) && !defined(skip_index_glXGetDrawableAttributes) void glshim_glXGetDrawableAttributes(uint32_t drawable) { @@ -5523,7 +5523,7 @@ void glshim_glXGetDrawableAttributes(uint32_t drawable) { packed_data.args.a1 = (uint32_t)drawable; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXGetDrawableAttributes(uint32_t drawable) __attribute__((alias("glshim_glXGetDrawableAttributes"))); +void glXGetDrawableAttributes(uint32_t drawable) __attribute__((alias("glshim_glXGetDrawableAttributes"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetDrawableAttributesSGIX) && !defined(skip_index_glXGetDrawableAttributesSGIX) void glshim_glXGetDrawableAttributesSGIX(uint32_t drawable) { @@ -5532,7 +5532,7 @@ void glshim_glXGetDrawableAttributesSGIX(uint32_t drawable) { packed_data.args.a1 = (uint32_t)drawable; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXGetDrawableAttributesSGIX(uint32_t drawable) __attribute__((alias("glshim_glXGetDrawableAttributesSGIX"))); +void glXGetDrawableAttributesSGIX(uint32_t drawable) __attribute__((alias("glshim_glXGetDrawableAttributesSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetFBConfigAttrib) && !defined(skip_index_glXGetFBConfigAttrib) int glshim_glXGetFBConfigAttrib(Display * dpy, GLXFBConfig config, int attribute, int * value) { @@ -5546,7 +5546,7 @@ int glshim_glXGetFBConfigAttrib(Display * dpy, GLXFBConfig config, int attribute syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int glXGetFBConfigAttrib(Display * dpy, GLXFBConfig config, int attribute, int * value) __attribute__((alias("glshim_glXGetFBConfigAttrib"))); +int glXGetFBConfigAttrib(Display * dpy, GLXFBConfig config, int attribute, int * value) __attribute__((alias("glshim_glXGetFBConfigAttrib"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetFBConfigs) && !defined(skip_index_glXGetFBConfigs) GLXFBConfig * glshim_glXGetFBConfigs(Display * dpy, int screen, int * nelements) { @@ -5559,7 +5559,7 @@ GLXFBConfig * glshim_glXGetFBConfigs(Display * dpy, int screen, int * nelements) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXFBConfig * glXGetFBConfigs(Display * dpy, int screen, int * nelements) __attribute__((alias("glshim_glXGetFBConfigs"))); +GLXFBConfig * glXGetFBConfigs(Display * dpy, int screen, int * nelements) __attribute__((alias("glshim_glXGetFBConfigs"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetFBConfigsSGIX) && !defined(skip_index_glXGetFBConfigsSGIX) void glshim_glXGetFBConfigsSGIX() { @@ -5567,7 +5567,7 @@ void glshim_glXGetFBConfigsSGIX() { packed_data.func = glXGetFBConfigsSGIX_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXGetFBConfigsSGIX() __attribute__((alias("glshim_glXGetFBConfigsSGIX"))); +void glXGetFBConfigsSGIX() __attribute__((alias("glshim_glXGetFBConfigsSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetProcAddress) && !defined(skip_index_glXGetProcAddress) __GLXextFuncPtr glshim_glXGetProcAddress(const GLubyte * procName) { @@ -5578,7 +5578,7 @@ __GLXextFuncPtr glshim_glXGetProcAddress(const GLubyte * procName) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -__GLXextFuncPtr glXGetProcAddress(const GLubyte * procName) __attribute__((alias("glshim_glXGetProcAddress"))); +__GLXextFuncPtr glXGetProcAddress(const GLubyte * procName) __attribute__((alias("glshim_glXGetProcAddress"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetSelectedEvent) && !defined(skip_index_glXGetSelectedEvent) void glshim_glXGetSelectedEvent(Display * dpy, GLXDrawable draw, unsigned long * event_mask) { @@ -5589,7 +5589,7 @@ void glshim_glXGetSelectedEvent(Display * dpy, GLXDrawable draw, unsigned long * packed_data.args.a3 = (unsigned long *)event_mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXGetSelectedEvent(Display * dpy, GLXDrawable draw, unsigned long * event_mask) __attribute__((alias("glshim_glXGetSelectedEvent"))); +void glXGetSelectedEvent(Display * dpy, GLXDrawable draw, unsigned long * event_mask) __attribute__((alias("glshim_glXGetSelectedEvent"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetVisualConfigs) && !defined(skip_index_glXGetVisualConfigs) void glshim_glXGetVisualConfigs() { @@ -5597,7 +5597,7 @@ void glshim_glXGetVisualConfigs() { packed_data.func = glXGetVisualConfigs_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXGetVisualConfigs() __attribute__((alias("glshim_glXGetVisualConfigs"))); +void glXGetVisualConfigs() __attribute__((alias("glshim_glXGetVisualConfigs"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXGetVisualFromFBConfig) && !defined(skip_index_glXGetVisualFromFBConfig) XVisualInfo * glshim_glXGetVisualFromFBConfig(Display * dpy, GLXFBConfig config) { @@ -5609,7 +5609,7 @@ XVisualInfo * glshim_glXGetVisualFromFBConfig(Display * dpy, GLXFBConfig config) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -XVisualInfo * glXGetVisualFromFBConfig(Display * dpy, GLXFBConfig config) __attribute__((alias("glshim_glXGetVisualFromFBConfig"))); +XVisualInfo * glXGetVisualFromFBConfig(Display * dpy, GLXFBConfig config) __attribute__((alias("glshim_glXGetVisualFromFBConfig"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXHyperpipeAttribSGIX) && !defined(skip_index_glXHyperpipeAttribSGIX) int glshim_glXHyperpipeAttribSGIX(Display * dpy, int timeSlice, int attrib, int size, const void * attribList) { @@ -5624,7 +5624,7 @@ int glshim_glXHyperpipeAttribSGIX(Display * dpy, int timeSlice, int attrib, int syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int glXHyperpipeAttribSGIX(Display * dpy, int timeSlice, int attrib, int size, const void * attribList) __attribute__((alias("glshim_glXHyperpipeAttribSGIX"))); +int glXHyperpipeAttribSGIX(Display * dpy, int timeSlice, int attrib, int size, const void * attribList) __attribute__((alias("glshim_glXHyperpipeAttribSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXHyperpipeConfigSGIX) && !defined(skip_index_glXHyperpipeConfigSGIX) int glshim_glXHyperpipeConfigSGIX(Display * dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX cfg, int * hpId) { @@ -5639,7 +5639,7 @@ int glshim_glXHyperpipeConfigSGIX(Display * dpy, int networkId, int npipes, GLXH syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int glXHyperpipeConfigSGIX(Display * dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX cfg, int * hpId) __attribute__((alias("glshim_glXHyperpipeConfigSGIX"))); +int glXHyperpipeConfigSGIX(Display * dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX cfg, int * hpId) __attribute__((alias("glshim_glXHyperpipeConfigSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXIsDirect) && !defined(skip_index_glXIsDirect) Bool glshim_glXIsDirect(Display * dpy, GLXContext ctx) { @@ -5651,7 +5651,7 @@ Bool glshim_glXIsDirect(Display * dpy, GLXContext ctx) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -Bool glXIsDirect(Display * dpy, GLXContext ctx) __attribute__((alias("glshim_glXIsDirect"))); +Bool glXIsDirect(Display * dpy, GLXContext ctx) __attribute__((alias("glshim_glXIsDirect"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXJoinSwapGroupSGIX) && !defined(skip_index_glXJoinSwapGroupSGIX) void glshim_glXJoinSwapGroupSGIX(uint32_t window, uint32_t group) { @@ -5661,7 +5661,7 @@ void glshim_glXJoinSwapGroupSGIX(uint32_t window, uint32_t group) { packed_data.args.a2 = (uint32_t)group; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXJoinSwapGroupSGIX(uint32_t window, uint32_t group) __attribute__((alias("glshim_glXJoinSwapGroupSGIX"))); +void glXJoinSwapGroupSGIX(uint32_t window, uint32_t group) __attribute__((alias("glshim_glXJoinSwapGroupSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXMakeContextCurrent) && !defined(skip_index_glXMakeContextCurrent) Bool glshim_glXMakeContextCurrent(Display * dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) { @@ -5675,7 +5675,7 @@ Bool glshim_glXMakeContextCurrent(Display * dpy, GLXDrawable draw, GLXDrawable r syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -Bool glXMakeContextCurrent(Display * dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) __attribute__((alias("glshim_glXMakeContextCurrent"))); +Bool glXMakeContextCurrent(Display * dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) __attribute__((alias("glshim_glXMakeContextCurrent"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXMakeCurrent) && !defined(skip_index_glXMakeCurrent) Bool glshim_glXMakeCurrent(Display * dpy, GLXDrawable drawable, GLXContext ctx) { @@ -5688,7 +5688,7 @@ Bool glshim_glXMakeCurrent(Display * dpy, GLXDrawable drawable, GLXContext ctx) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -Bool glXMakeCurrent(Display * dpy, GLXDrawable drawable, GLXContext ctx) __attribute__((alias("glshim_glXMakeCurrent"))); +Bool glXMakeCurrent(Display * dpy, GLXDrawable drawable, GLXContext ctx) __attribute__((alias("glshim_glXMakeCurrent"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXMakeCurrentReadSGI) && !defined(skip_index_glXMakeCurrentReadSGI) void glshim_glXMakeCurrentReadSGI(uint32_t drawable, uint32_t readdrawable, uint32_t context) { @@ -5699,7 +5699,7 @@ void glshim_glXMakeCurrentReadSGI(uint32_t drawable, uint32_t readdrawable, uint packed_data.args.a3 = (uint32_t)context; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXMakeCurrentReadSGI(uint32_t drawable, uint32_t readdrawable, uint32_t context) __attribute__((alias("glshim_glXMakeCurrentReadSGI"))); +void glXMakeCurrentReadSGI(uint32_t drawable, uint32_t readdrawable, uint32_t context) __attribute__((alias("glshim_glXMakeCurrentReadSGI"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryContext) && !defined(skip_index_glXQueryContext) int glshim_glXQueryContext(Display * dpy, GLXContext ctx, int attribute, int * value) { @@ -5713,7 +5713,7 @@ int glshim_glXQueryContext(Display * dpy, GLXContext ctx, int attribute, int * v syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int glXQueryContext(Display * dpy, GLXContext ctx, int attribute, int * value) __attribute__((alias("glshim_glXQueryContext"))); +int glXQueryContext(Display * dpy, GLXContext ctx, int attribute, int * value) __attribute__((alias("glshim_glXQueryContext"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryContextInfoEXT) && !defined(skip_index_glXQueryContextInfoEXT) void glshim_glXQueryContextInfoEXT() { @@ -5721,7 +5721,7 @@ void glshim_glXQueryContextInfoEXT() { packed_data.func = glXQueryContextInfoEXT_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXQueryContextInfoEXT() __attribute__((alias("glshim_glXQueryContextInfoEXT"))); +void glXQueryContextInfoEXT() __attribute__((alias("glshim_glXQueryContextInfoEXT"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryDrawable) && !defined(skip_index_glXQueryDrawable) void glshim_glXQueryDrawable(Display * dpy, GLXDrawable draw, int attribute, unsigned int * value) { @@ -5733,7 +5733,7 @@ void glshim_glXQueryDrawable(Display * dpy, GLXDrawable draw, int attribute, uns packed_data.args.a4 = (unsigned int *)value; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXQueryDrawable(Display * dpy, GLXDrawable draw, int attribute, unsigned int * value) __attribute__((alias("glshim_glXQueryDrawable"))); +void glXQueryDrawable(Display * dpy, GLXDrawable draw, int attribute, unsigned int * value) __attribute__((alias("glshim_glXQueryDrawable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryExtension) && !defined(skip_index_glXQueryExtension) Bool glshim_glXQueryExtension(Display * display, int * errorBase, int * eventBase) { @@ -5746,7 +5746,7 @@ Bool glshim_glXQueryExtension(Display * display, int * errorBase, int * eventBas syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -Bool glXQueryExtension(Display * display, int * errorBase, int * eventBase) __attribute__((alias("glshim_glXQueryExtension"))); +Bool glXQueryExtension(Display * display, int * errorBase, int * eventBase) __attribute__((alias("glshim_glXQueryExtension"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryExtensionsString) && !defined(skip_index_glXQueryExtensionsString) const char * glshim_glXQueryExtensionsString(Display * dpy, int screen) { @@ -5758,7 +5758,7 @@ const char * glshim_glXQueryExtensionsString(Display * dpy, int screen) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * glXQueryExtensionsString(Display * dpy, int screen) __attribute__((alias("glshim_glXQueryExtensionsString"))); +const char * glXQueryExtensionsString(Display * dpy, int screen) __attribute__((alias("glshim_glXQueryExtensionsString"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryHyperpipeAttribSGIX) && !defined(skip_index_glXQueryHyperpipeAttribSGIX) int glshim_glXQueryHyperpipeAttribSGIX(Display * dpy, int timeSlice, int attrib, int size, const void * returnAttribList) { @@ -5773,7 +5773,7 @@ int glshim_glXQueryHyperpipeAttribSGIX(Display * dpy, int timeSlice, int attrib, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int glXQueryHyperpipeAttribSGIX(Display * dpy, int timeSlice, int attrib, int size, const void * returnAttribList) __attribute__((alias("glshim_glXQueryHyperpipeAttribSGIX"))); +int glXQueryHyperpipeAttribSGIX(Display * dpy, int timeSlice, int attrib, int size, const void * returnAttribList) __attribute__((alias("glshim_glXQueryHyperpipeAttribSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryHyperpipeBestAttribSGIX) && !defined(skip_index_glXQueryHyperpipeBestAttribSGIX) int glshim_glXQueryHyperpipeBestAttribSGIX(Display * dpy, int timeSlice, int attrib, int size, const void * attribList, void * returnAttribList) { @@ -5789,7 +5789,7 @@ int glshim_glXQueryHyperpipeBestAttribSGIX(Display * dpy, int timeSlice, int att syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int glXQueryHyperpipeBestAttribSGIX(Display * dpy, int timeSlice, int attrib, int size, const void * attribList, void * returnAttribList) __attribute__((alias("glshim_glXQueryHyperpipeBestAttribSGIX"))); +int glXQueryHyperpipeBestAttribSGIX(Display * dpy, int timeSlice, int attrib, int size, const void * attribList, void * returnAttribList) __attribute__((alias("glshim_glXQueryHyperpipeBestAttribSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryHyperpipeConfigSGIX) && !defined(skip_index_glXQueryHyperpipeConfigSGIX) GLXHyperpipeConfigSGIX * glshim_glXQueryHyperpipeConfigSGIX(Display * dpy, int hpId, int * npipes) { @@ -5802,7 +5802,7 @@ GLXHyperpipeConfigSGIX * glshim_glXQueryHyperpipeConfigSGIX(Display * dpy, int h syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXHyperpipeConfigSGIX * glXQueryHyperpipeConfigSGIX(Display * dpy, int hpId, int * npipes) __attribute__((alias("glshim_glXQueryHyperpipeConfigSGIX"))); +GLXHyperpipeConfigSGIX * glXQueryHyperpipeConfigSGIX(Display * dpy, int hpId, int * npipes) __attribute__((alias("glshim_glXQueryHyperpipeConfigSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryHyperpipeNetworkSGIX) && !defined(skip_index_glXQueryHyperpipeNetworkSGIX) GLXHyperpipeNetworkSGIX * glshim_glXQueryHyperpipeNetworkSGIX(Display * dpy, int * npipes) { @@ -5814,7 +5814,7 @@ GLXHyperpipeNetworkSGIX * glshim_glXQueryHyperpipeNetworkSGIX(Display * dpy, int syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -GLXHyperpipeNetworkSGIX * glXQueryHyperpipeNetworkSGIX(Display * dpy, int * npipes) __attribute__((alias("glshim_glXQueryHyperpipeNetworkSGIX"))); +GLXHyperpipeNetworkSGIX * glXQueryHyperpipeNetworkSGIX(Display * dpy, int * npipes) __attribute__((alias("glshim_glXQueryHyperpipeNetworkSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryMaxSwapBarriersSGIX) && !defined(skip_index_glXQueryMaxSwapBarriersSGIX) void glshim_glXQueryMaxSwapBarriersSGIX() { @@ -5822,7 +5822,7 @@ void glshim_glXQueryMaxSwapBarriersSGIX() { packed_data.func = glXQueryMaxSwapBarriersSGIX_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXQueryMaxSwapBarriersSGIX() __attribute__((alias("glshim_glXQueryMaxSwapBarriersSGIX"))); +void glXQueryMaxSwapBarriersSGIX() __attribute__((alias("glshim_glXQueryMaxSwapBarriersSGIX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryServerString) && !defined(skip_index_glXQueryServerString) const char * glshim_glXQueryServerString(Display * dpy, int screen, int name) { @@ -5835,7 +5835,7 @@ const char * glshim_glXQueryServerString(Display * dpy, int screen, int name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * glXQueryServerString(Display * dpy, int screen, int name) __attribute__((alias("glshim_glXQueryServerString"))); +const char * glXQueryServerString(Display * dpy, int screen, int name) __attribute__((alias("glshim_glXQueryServerString"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXQueryVersion) && !defined(skip_index_glXQueryVersion) Bool glshim_glXQueryVersion(Display * dpy, int * maj, int * min) { @@ -5848,7 +5848,7 @@ Bool glshim_glXQueryVersion(Display * dpy, int * maj, int * min) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -Bool glXQueryVersion(Display * dpy, int * maj, int * min) __attribute__((alias("glshim_glXQueryVersion"))); +Bool glXQueryVersion(Display * dpy, int * maj, int * min) __attribute__((alias("glshim_glXQueryVersion"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXReleaseBuffersMESA) && !defined(skip_index_glXReleaseBuffersMESA) Bool glshim_glXReleaseBuffersMESA(Display * dpy, GLXDrawable drawable) { @@ -5860,7 +5860,7 @@ Bool glshim_glXReleaseBuffersMESA(Display * dpy, GLXDrawable drawable) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -Bool glXReleaseBuffersMESA(Display * dpy, GLXDrawable drawable) __attribute__((alias("glshim_glXReleaseBuffersMESA"))); +Bool glXReleaseBuffersMESA(Display * dpy, GLXDrawable drawable) __attribute__((alias("glshim_glXReleaseBuffersMESA"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXRender) && !defined(skip_index_glXRender) void glshim_glXRender() { @@ -5868,7 +5868,7 @@ void glshim_glXRender() { packed_data.func = glXRender_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXRender() __attribute__((alias("glshim_glXRender"))); +void glXRender() __attribute__((alias("glshim_glXRender"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXRenderLarge) && !defined(skip_index_glXRenderLarge) void glshim_glXRenderLarge() { @@ -5876,7 +5876,7 @@ void glshim_glXRenderLarge() { packed_data.func = glXRenderLarge_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXRenderLarge() __attribute__((alias("glshim_glXRenderLarge"))); +void glXRenderLarge() __attribute__((alias("glshim_glXRenderLarge"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXSelectEvent) && !defined(skip_index_glXSelectEvent) void glshim_glXSelectEvent(Display * dpy, GLXDrawable draw, unsigned long event_mask) { @@ -5887,7 +5887,7 @@ void glshim_glXSelectEvent(Display * dpy, GLXDrawable draw, unsigned long event_ packed_data.args.a3 = (unsigned long)event_mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXSelectEvent(Display * dpy, GLXDrawable draw, unsigned long event_mask) __attribute__((alias("glshim_glXSelectEvent"))); +void glXSelectEvent(Display * dpy, GLXDrawable draw, unsigned long event_mask) __attribute__((alias("glshim_glXSelectEvent"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXSwapBuffers) && !defined(skip_index_glXSwapBuffers) void glshim_glXSwapBuffers(Display * dpy, GLXDrawable drawable) { @@ -5897,7 +5897,7 @@ void glshim_glXSwapBuffers(Display * dpy, GLXDrawable drawable) { packed_data.args.a2 = (GLXDrawable)drawable; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXSwapBuffers(Display * dpy, GLXDrawable drawable) __attribute__((alias("glshim_glXSwapBuffers"))); +void glXSwapBuffers(Display * dpy, GLXDrawable drawable) __attribute__((alias("glshim_glXSwapBuffers"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXSwapIntervalMESA) && !defined(skip_index_glXSwapIntervalMESA) int glshim_glXSwapIntervalMESA(unsigned int interval) { @@ -5908,7 +5908,7 @@ int glshim_glXSwapIntervalMESA(unsigned int interval) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int glXSwapIntervalMESA(unsigned int interval) __attribute__((alias("glshim_glXSwapIntervalMESA"))); +int glXSwapIntervalMESA(unsigned int interval) __attribute__((alias("glshim_glXSwapIntervalMESA"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXSwapIntervalSGI) && !defined(skip_index_glXSwapIntervalSGI) void glshim_glXSwapIntervalSGI(unsigned int interval) { @@ -5917,7 +5917,7 @@ void glshim_glXSwapIntervalSGI(unsigned int interval) { packed_data.args.a1 = (unsigned int)interval; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXSwapIntervalSGI(unsigned int interval) __attribute__((alias("glshim_glXSwapIntervalSGI"))); +void glXSwapIntervalSGI(unsigned int interval) __attribute__((alias("glshim_glXSwapIntervalSGI"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXUseXFont) && !defined(skip_index_glXUseXFont) void glshim_glXUseXFont(Font font, int first, int count, int list) { @@ -5929,7 +5929,7 @@ void glshim_glXUseXFont(Font font, int first, int count, int list) { packed_data.args.a4 = (int)list; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXUseXFont(Font font, int first, int count, int list) __attribute__((alias("glshim_glXUseXFont"))); +void glXUseXFont(Font font, int first, int count, int list) __attribute__((alias("glshim_glXUseXFont"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXVendorPrivate) && !defined(skip_index_glXVendorPrivate) void glshim_glXVendorPrivate() { @@ -5937,7 +5937,7 @@ void glshim_glXVendorPrivate() { packed_data.func = glXVendorPrivate_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXVendorPrivate() __attribute__((alias("glshim_glXVendorPrivate"))); +void glXVendorPrivate() __attribute__((alias("glshim_glXVendorPrivate"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXVendorPrivateWithReply) && !defined(skip_index_glXVendorPrivateWithReply) void glshim_glXVendorPrivateWithReply() { @@ -5945,7 +5945,7 @@ void glshim_glXVendorPrivateWithReply() { packed_data.func = glXVendorPrivateWithReply_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXVendorPrivateWithReply() __attribute__((alias("glshim_glXVendorPrivateWithReply"))); +void glXVendorPrivateWithReply() __attribute__((alias("glshim_glXVendorPrivateWithReply"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXWaitGL) && !defined(skip_index_glXWaitGL) void glshim_glXWaitGL() { @@ -5953,7 +5953,7 @@ void glshim_glXWaitGL() { packed_data.func = glXWaitGL_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXWaitGL() __attribute__((alias("glshim_glXWaitGL"))); +void glXWaitGL() __attribute__((alias("glshim_glXWaitGL"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_glXWaitX) && !defined(skip_index_glXWaitX) void glshim_glXWaitX() { @@ -5961,7 +5961,7 @@ void glshim_glXWaitX() { packed_data.func = glXWaitX_INDEX; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void glXWaitX() __attribute__((alias("glshim_glXWaitX"))); +void glXWaitX() __attribute__((alias("glshim_glXWaitX"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_asoundlib_version) && !defined(skip_index_snd_asoundlib_version) const char * glshim_snd_asoundlib_version() { @@ -5971,7 +5971,7 @@ const char * glshim_snd_asoundlib_version() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_asoundlib_version() __attribute__((alias("glshim_snd_asoundlib_version"))); +const char * snd_asoundlib_version() __attribute__((alias("glshim_snd_asoundlib_version"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_add_ctl_handler) && !defined(skip_index_snd_async_add_ctl_handler) int glshim_snd_async_add_ctl_handler(snd_async_handler_t ** handler, snd_ctl_t * ctl, snd_async_callback_t callback, void * private_data) { @@ -5985,7 +5985,7 @@ int glshim_snd_async_add_ctl_handler(snd_async_handler_t ** handler, snd_ctl_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_async_add_ctl_handler(snd_async_handler_t ** handler, snd_ctl_t * ctl, snd_async_callback_t callback, void * private_data) __attribute__((alias("glshim_snd_async_add_ctl_handler"))); +int snd_async_add_ctl_handler(snd_async_handler_t ** handler, snd_ctl_t * ctl, snd_async_callback_t callback, void * private_data) __attribute__((alias("glshim_snd_async_add_ctl_handler"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_add_handler) && !defined(skip_index_snd_async_add_handler) int glshim_snd_async_add_handler(snd_async_handler_t ** handler, int fd, snd_async_callback_t callback, void * private_data) { @@ -5999,7 +5999,7 @@ int glshim_snd_async_add_handler(snd_async_handler_t ** handler, int fd, snd_asy syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_async_add_handler(snd_async_handler_t ** handler, int fd, snd_async_callback_t callback, void * private_data) __attribute__((alias("glshim_snd_async_add_handler"))); +int snd_async_add_handler(snd_async_handler_t ** handler, int fd, snd_async_callback_t callback, void * private_data) __attribute__((alias("glshim_snd_async_add_handler"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_add_pcm_handler) && !defined(skip_index_snd_async_add_pcm_handler) int glshim_snd_async_add_pcm_handler(snd_async_handler_t ** handler, snd_pcm_t * pcm, snd_async_callback_t callback, void * private_data) { @@ -6013,7 +6013,7 @@ int glshim_snd_async_add_pcm_handler(snd_async_handler_t ** handler, snd_pcm_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_async_add_pcm_handler(snd_async_handler_t ** handler, snd_pcm_t * pcm, snd_async_callback_t callback, void * private_data) __attribute__((alias("glshim_snd_async_add_pcm_handler"))); +int snd_async_add_pcm_handler(snd_async_handler_t ** handler, snd_pcm_t * pcm, snd_async_callback_t callback, void * private_data) __attribute__((alias("glshim_snd_async_add_pcm_handler"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_add_timer_handler) && !defined(skip_index_snd_async_add_timer_handler) int glshim_snd_async_add_timer_handler(snd_async_handler_t ** handler, snd_timer_t * timer, snd_async_callback_t callback, void * private_data) { @@ -6027,7 +6027,7 @@ int glshim_snd_async_add_timer_handler(snd_async_handler_t ** handler, snd_timer syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_async_add_timer_handler(snd_async_handler_t ** handler, snd_timer_t * timer, snd_async_callback_t callback, void * private_data) __attribute__((alias("glshim_snd_async_add_timer_handler"))); +int snd_async_add_timer_handler(snd_async_handler_t ** handler, snd_timer_t * timer, snd_async_callback_t callback, void * private_data) __attribute__((alias("glshim_snd_async_add_timer_handler"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_del_handler) && !defined(skip_index_snd_async_del_handler) int glshim_snd_async_del_handler(snd_async_handler_t * handler) { @@ -6038,7 +6038,7 @@ int glshim_snd_async_del_handler(snd_async_handler_t * handler) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_async_del_handler(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_del_handler"))); +int snd_async_del_handler(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_del_handler"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_handler_get_callback_private) && !defined(skip_index_snd_async_handler_get_callback_private) void * glshim_snd_async_handler_get_callback_private(snd_async_handler_t * handler) { @@ -6049,7 +6049,7 @@ void * glshim_snd_async_handler_get_callback_private(snd_async_handler_t * handl syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_async_handler_get_callback_private(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_callback_private"))); +void * snd_async_handler_get_callback_private(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_handler_get_ctl) && !defined(skip_index_snd_async_handler_get_ctl) snd_ctl_t * glshim_snd_async_handler_get_ctl(snd_async_handler_t * handler) { @@ -6060,7 +6060,7 @@ snd_ctl_t * glshim_snd_async_handler_get_ctl(snd_async_handler_t * handler) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_t * snd_async_handler_get_ctl(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_ctl"))); +snd_ctl_t * snd_async_handler_get_ctl(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_ctl"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_handler_get_fd) && !defined(skip_index_snd_async_handler_get_fd) int glshim_snd_async_handler_get_fd(snd_async_handler_t * handler) { @@ -6071,7 +6071,7 @@ int glshim_snd_async_handler_get_fd(snd_async_handler_t * handler) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_async_handler_get_fd(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_fd"))); +int snd_async_handler_get_fd(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_fd"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_handler_get_pcm) && !defined(skip_index_snd_async_handler_get_pcm) snd_pcm_t * glshim_snd_async_handler_get_pcm(snd_async_handler_t * handler) { @@ -6082,7 +6082,7 @@ snd_pcm_t * glshim_snd_async_handler_get_pcm(snd_async_handler_t * handler) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_t * snd_async_handler_get_pcm(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_pcm"))); +snd_pcm_t * snd_async_handler_get_pcm(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_pcm"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_handler_get_signo) && !defined(skip_index_snd_async_handler_get_signo) int glshim_snd_async_handler_get_signo(snd_async_handler_t * handler) { @@ -6093,7 +6093,7 @@ int glshim_snd_async_handler_get_signo(snd_async_handler_t * handler) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_async_handler_get_signo(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_signo"))); +int snd_async_handler_get_signo(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_signo"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_async_handler_get_timer) && !defined(skip_index_snd_async_handler_get_timer) snd_timer_t * glshim_snd_async_handler_get_timer(snd_async_handler_t * handler) { @@ -6104,7 +6104,7 @@ snd_timer_t * glshim_snd_async_handler_get_timer(snd_async_handler_t * handler) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_timer_t * snd_async_handler_get_timer(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_timer"))); +snd_timer_t * snd_async_handler_get_timer(snd_async_handler_t * handler) __attribute__((alias("glshim_snd_async_handler_get_timer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_card_get_index) && !defined(skip_index_snd_card_get_index) int glshim_snd_card_get_index(const char * name) { @@ -6115,7 +6115,7 @@ int glshim_snd_card_get_index(const char * name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_card_get_index(const char * name) __attribute__((alias("glshim_snd_card_get_index"))); +int snd_card_get_index(const char * name) __attribute__((alias("glshim_snd_card_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_card_get_longname) && !defined(skip_index_snd_card_get_longname) int glshim_snd_card_get_longname(int card, char ** name) { @@ -6127,7 +6127,7 @@ int glshim_snd_card_get_longname(int card, char ** name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_card_get_longname(int card, char ** name) __attribute__((alias("glshim_snd_card_get_longname"))); +int snd_card_get_longname(int card, char ** name) __attribute__((alias("glshim_snd_card_get_longname"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_card_get_name) && !defined(skip_index_snd_card_get_name) int glshim_snd_card_get_name(int card, char ** name) { @@ -6139,7 +6139,7 @@ int glshim_snd_card_get_name(int card, char ** name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_card_get_name(int card, char ** name) __attribute__((alias("glshim_snd_card_get_name"))); +int snd_card_get_name(int card, char ** name) __attribute__((alias("glshim_snd_card_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_card_load) && !defined(skip_index_snd_card_load) int glshim_snd_card_load(int card) { @@ -6150,7 +6150,7 @@ int glshim_snd_card_load(int card) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_card_load(int card) __attribute__((alias("glshim_snd_card_load"))); +int snd_card_load(int card) __attribute__((alias("glshim_snd_card_load"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_card_next) && !defined(skip_index_snd_card_next) int glshim_snd_card_next(int * card) { @@ -6161,7 +6161,7 @@ int glshim_snd_card_next(int * card) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_card_next(int * card) __attribute__((alias("glshim_snd_card_next"))); +int snd_card_next(int * card) __attribute__((alias("glshim_snd_card_next"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_add) && !defined(skip_index_snd_config_add) int glshim_snd_config_add(snd_config_t * config, snd_config_t * leaf) { @@ -6173,7 +6173,7 @@ int glshim_snd_config_add(snd_config_t * config, snd_config_t * leaf) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_add(snd_config_t * config, snd_config_t * leaf) __attribute__((alias("glshim_snd_config_add"))); +int snd_config_add(snd_config_t * config, snd_config_t * leaf) __attribute__((alias("glshim_snd_config_add"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_copy) && !defined(skip_index_snd_config_copy) int glshim_snd_config_copy(snd_config_t ** dst, snd_config_t * src) { @@ -6185,7 +6185,7 @@ int glshim_snd_config_copy(snd_config_t ** dst, snd_config_t * src) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_copy(snd_config_t ** dst, snd_config_t * src) __attribute__((alias("glshim_snd_config_copy"))); +int snd_config_copy(snd_config_t ** dst, snd_config_t * src) __attribute__((alias("glshim_snd_config_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_delete) && !defined(skip_index_snd_config_delete) int glshim_snd_config_delete(snd_config_t * config) { @@ -6196,7 +6196,7 @@ int glshim_snd_config_delete(snd_config_t * config) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_delete(snd_config_t * config) __attribute__((alias("glshim_snd_config_delete"))); +int snd_config_delete(snd_config_t * config) __attribute__((alias("glshim_snd_config_delete"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_delete_compound_members) && !defined(skip_index_snd_config_delete_compound_members) int glshim_snd_config_delete_compound_members(const snd_config_t * config) { @@ -6207,7 +6207,7 @@ int glshim_snd_config_delete_compound_members(const snd_config_t * config) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_delete_compound_members(const snd_config_t * config) __attribute__((alias("glshim_snd_config_delete_compound_members"))); +int snd_config_delete_compound_members(const snd_config_t * config) __attribute__((alias("glshim_snd_config_delete_compound_members"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_evaluate) && !defined(skip_index_snd_config_evaluate) int glshim_snd_config_evaluate(snd_config_t * config, snd_config_t * root, snd_config_t * private_data, snd_config_t ** result) { @@ -6221,7 +6221,7 @@ int glshim_snd_config_evaluate(snd_config_t * config, snd_config_t * root, snd_c syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_evaluate(snd_config_t * config, snd_config_t * root, snd_config_t * private_data, snd_config_t ** result) __attribute__((alias("glshim_snd_config_evaluate"))); +int snd_config_evaluate(snd_config_t * config, snd_config_t * root, snd_config_t * private_data, snd_config_t ** result) __attribute__((alias("glshim_snd_config_evaluate"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_expand) && !defined(skip_index_snd_config_expand) int glshim_snd_config_expand(snd_config_t * config, snd_config_t * root, const char * args, snd_config_t * private_data, snd_config_t ** result) { @@ -6236,7 +6236,7 @@ int glshim_snd_config_expand(snd_config_t * config, snd_config_t * root, const c syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_expand(snd_config_t * config, snd_config_t * root, const char * args, snd_config_t * private_data, snd_config_t ** result) __attribute__((alias("glshim_snd_config_expand"))); +int snd_config_expand(snd_config_t * config, snd_config_t * root, const char * args, snd_config_t * private_data, snd_config_t ** result) __attribute__((alias("glshim_snd_config_expand"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_ascii) && !defined(skip_index_snd_config_get_ascii) int glshim_snd_config_get_ascii(const snd_config_t * config, char ** value) { @@ -6248,7 +6248,7 @@ int glshim_snd_config_get_ascii(const snd_config_t * config, char ** value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_ascii(const snd_config_t * config, char ** value) __attribute__((alias("glshim_snd_config_get_ascii"))); +int snd_config_get_ascii(const snd_config_t * config, char ** value) __attribute__((alias("glshim_snd_config_get_ascii"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_bool) && !defined(skip_index_snd_config_get_bool) int glshim_snd_config_get_bool(const snd_config_t * conf) { @@ -6259,7 +6259,7 @@ int glshim_snd_config_get_bool(const snd_config_t * conf) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_bool(const snd_config_t * conf) __attribute__((alias("glshim_snd_config_get_bool"))); +int snd_config_get_bool(const snd_config_t * conf) __attribute__((alias("glshim_snd_config_get_bool"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_bool_ascii) && !defined(skip_index_snd_config_get_bool_ascii) int glshim_snd_config_get_bool_ascii(const char * ascii) { @@ -6270,7 +6270,7 @@ int glshim_snd_config_get_bool_ascii(const char * ascii) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_bool_ascii(const char * ascii) __attribute__((alias("glshim_snd_config_get_bool_ascii"))); +int snd_config_get_bool_ascii(const char * ascii) __attribute__((alias("glshim_snd_config_get_bool_ascii"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_ctl_iface) && !defined(skip_index_snd_config_get_ctl_iface) int glshim_snd_config_get_ctl_iface(const snd_config_t * conf) { @@ -6281,7 +6281,7 @@ int glshim_snd_config_get_ctl_iface(const snd_config_t * conf) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_ctl_iface(const snd_config_t * conf) __attribute__((alias("glshim_snd_config_get_ctl_iface"))); +int snd_config_get_ctl_iface(const snd_config_t * conf) __attribute__((alias("glshim_snd_config_get_ctl_iface"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_ctl_iface_ascii) && !defined(skip_index_snd_config_get_ctl_iface_ascii) int glshim_snd_config_get_ctl_iface_ascii(const char * ascii) { @@ -6292,7 +6292,7 @@ int glshim_snd_config_get_ctl_iface_ascii(const char * ascii) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_ctl_iface_ascii(const char * ascii) __attribute__((alias("glshim_snd_config_get_ctl_iface_ascii"))); +int snd_config_get_ctl_iface_ascii(const char * ascii) __attribute__((alias("glshim_snd_config_get_ctl_iface_ascii"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_id) && !defined(skip_index_snd_config_get_id) int glshim_snd_config_get_id(const snd_config_t * config, const char ** value) { @@ -6304,7 +6304,7 @@ int glshim_snd_config_get_id(const snd_config_t * config, const char ** value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_id(const snd_config_t * config, const char ** value) __attribute__((alias("glshim_snd_config_get_id"))); +int snd_config_get_id(const snd_config_t * config, const char ** value) __attribute__((alias("glshim_snd_config_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_integer) && !defined(skip_index_snd_config_get_integer) int glshim_snd_config_get_integer(const snd_config_t * config, long * value) { @@ -6316,7 +6316,7 @@ int glshim_snd_config_get_integer(const snd_config_t * config, long * value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_integer(const snd_config_t * config, long * value) __attribute__((alias("glshim_snd_config_get_integer"))); +int snd_config_get_integer(const snd_config_t * config, long * value) __attribute__((alias("glshim_snd_config_get_integer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_integer64) && !defined(skip_index_snd_config_get_integer64) int glshim_snd_config_get_integer64(const snd_config_t * config, long long * value) { @@ -6328,7 +6328,7 @@ int glshim_snd_config_get_integer64(const snd_config_t * config, long long * val syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_integer64(const snd_config_t * config, long long * value) __attribute__((alias("glshim_snd_config_get_integer64"))); +int snd_config_get_integer64(const snd_config_t * config, long long * value) __attribute__((alias("glshim_snd_config_get_integer64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_ireal) && !defined(skip_index_snd_config_get_ireal) int glshim_snd_config_get_ireal(const snd_config_t * config, double * value) { @@ -6340,7 +6340,7 @@ int glshim_snd_config_get_ireal(const snd_config_t * config, double * value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_ireal(const snd_config_t * config, double * value) __attribute__((alias("glshim_snd_config_get_ireal"))); +int snd_config_get_ireal(const snd_config_t * config, double * value) __attribute__((alias("glshim_snd_config_get_ireal"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_pointer) && !defined(skip_index_snd_config_get_pointer) int glshim_snd_config_get_pointer(const snd_config_t * config, const void ** value) { @@ -6352,7 +6352,7 @@ int glshim_snd_config_get_pointer(const snd_config_t * config, const void ** val syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_pointer(const snd_config_t * config, const void ** value) __attribute__((alias("glshim_snd_config_get_pointer"))); +int snd_config_get_pointer(const snd_config_t * config, const void ** value) __attribute__((alias("glshim_snd_config_get_pointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_real) && !defined(skip_index_snd_config_get_real) int glshim_snd_config_get_real(const snd_config_t * config, double * value) { @@ -6364,7 +6364,7 @@ int glshim_snd_config_get_real(const snd_config_t * config, double * value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_real(const snd_config_t * config, double * value) __attribute__((alias("glshim_snd_config_get_real"))); +int snd_config_get_real(const snd_config_t * config, double * value) __attribute__((alias("glshim_snd_config_get_real"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_string) && !defined(skip_index_snd_config_get_string) int glshim_snd_config_get_string(const snd_config_t * config, const char ** value) { @@ -6376,7 +6376,7 @@ int glshim_snd_config_get_string(const snd_config_t * config, const char ** valu syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_get_string(const snd_config_t * config, const char ** value) __attribute__((alias("glshim_snd_config_get_string"))); +int snd_config_get_string(const snd_config_t * config, const char ** value) __attribute__((alias("glshim_snd_config_get_string"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_get_type) && !defined(skip_index_snd_config_get_type) snd_config_type_t glshim_snd_config_get_type(const snd_config_t * config) { @@ -6387,7 +6387,7 @@ snd_config_type_t glshim_snd_config_get_type(const snd_config_t * config) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_config_type_t snd_config_get_type(const snd_config_t * config) __attribute__((alias("glshim_snd_config_get_type"))); +snd_config_type_t snd_config_get_type(const snd_config_t * config) __attribute__((alias("glshim_snd_config_get_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_imake_integer) && !defined(skip_index_snd_config_imake_integer) int glshim_snd_config_imake_integer(snd_config_t ** config, const char * key, const long value) { @@ -6400,7 +6400,7 @@ int glshim_snd_config_imake_integer(snd_config_t ** config, const char * key, co syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_imake_integer(snd_config_t ** config, const char * key, const long value) __attribute__((alias("glshim_snd_config_imake_integer"))); +int snd_config_imake_integer(snd_config_t ** config, const char * key, const long value) __attribute__((alias("glshim_snd_config_imake_integer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_imake_integer64) && !defined(skip_index_snd_config_imake_integer64) int glshim_snd_config_imake_integer64(snd_config_t ** config, const char * key, const long long value) { @@ -6413,7 +6413,7 @@ int glshim_snd_config_imake_integer64(snd_config_t ** config, const char * key, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_imake_integer64(snd_config_t ** config, const char * key, const long long value) __attribute__((alias("glshim_snd_config_imake_integer64"))); +int snd_config_imake_integer64(snd_config_t ** config, const char * key, const long long value) __attribute__((alias("glshim_snd_config_imake_integer64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_imake_pointer) && !defined(skip_index_snd_config_imake_pointer) int glshim_snd_config_imake_pointer(snd_config_t ** config, const char * key, const void * ptr) { @@ -6426,7 +6426,7 @@ int glshim_snd_config_imake_pointer(snd_config_t ** config, const char * key, co syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_imake_pointer(snd_config_t ** config, const char * key, const void * ptr) __attribute__((alias("glshim_snd_config_imake_pointer"))); +int snd_config_imake_pointer(snd_config_t ** config, const char * key, const void * ptr) __attribute__((alias("glshim_snd_config_imake_pointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_imake_real) && !defined(skip_index_snd_config_imake_real) int glshim_snd_config_imake_real(snd_config_t ** config, const char * key, const double value) { @@ -6439,7 +6439,7 @@ int glshim_snd_config_imake_real(snd_config_t ** config, const char * key, const syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_imake_real(snd_config_t ** config, const char * key, const double value) __attribute__((alias("glshim_snd_config_imake_real"))); +int snd_config_imake_real(snd_config_t ** config, const char * key, const double value) __attribute__((alias("glshim_snd_config_imake_real"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_imake_string) && !defined(skip_index_snd_config_imake_string) int glshim_snd_config_imake_string(snd_config_t ** config, const char * key, const char * ascii) { @@ -6452,7 +6452,7 @@ int glshim_snd_config_imake_string(snd_config_t ** config, const char * key, con syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_imake_string(snd_config_t ** config, const char * key, const char * ascii) __attribute__((alias("glshim_snd_config_imake_string"))); +int snd_config_imake_string(snd_config_t ** config, const char * key, const char * ascii) __attribute__((alias("glshim_snd_config_imake_string"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_iterator_end) && !defined(skip_index_snd_config_iterator_end) snd_config_iterator_t glshim_snd_config_iterator_end(const snd_config_t * node) { @@ -6463,7 +6463,7 @@ snd_config_iterator_t glshim_snd_config_iterator_end(const snd_config_t * node) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_config_iterator_t snd_config_iterator_end(const snd_config_t * node) __attribute__((alias("glshim_snd_config_iterator_end"))); +snd_config_iterator_t snd_config_iterator_end(const snd_config_t * node) __attribute__((alias("glshim_snd_config_iterator_end"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_iterator_entry) && !defined(skip_index_snd_config_iterator_entry) snd_config_t * glshim_snd_config_iterator_entry(const snd_config_iterator_t iterator) { @@ -6474,7 +6474,7 @@ snd_config_t * glshim_snd_config_iterator_entry(const snd_config_iterator_t iter syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_config_t * snd_config_iterator_entry(const snd_config_iterator_t iterator) __attribute__((alias("glshim_snd_config_iterator_entry"))); +snd_config_t * snd_config_iterator_entry(const snd_config_iterator_t iterator) __attribute__((alias("glshim_snd_config_iterator_entry"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_iterator_first) && !defined(skip_index_snd_config_iterator_first) snd_config_iterator_t glshim_snd_config_iterator_first(const snd_config_t * node) { @@ -6485,7 +6485,7 @@ snd_config_iterator_t glshim_snd_config_iterator_first(const snd_config_t * node syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_config_iterator_t snd_config_iterator_first(const snd_config_t * node) __attribute__((alias("glshim_snd_config_iterator_first"))); +snd_config_iterator_t snd_config_iterator_first(const snd_config_t * node) __attribute__((alias("glshim_snd_config_iterator_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_iterator_next) && !defined(skip_index_snd_config_iterator_next) snd_config_iterator_t glshim_snd_config_iterator_next(const snd_config_iterator_t iterator) { @@ -6496,7 +6496,7 @@ snd_config_iterator_t glshim_snd_config_iterator_next(const snd_config_iterator_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_config_iterator_t snd_config_iterator_next(const snd_config_iterator_t iterator) __attribute__((alias("glshim_snd_config_iterator_next"))); +snd_config_iterator_t snd_config_iterator_next(const snd_config_iterator_t iterator) __attribute__((alias("glshim_snd_config_iterator_next"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_load) && !defined(skip_index_snd_config_load) int glshim_snd_config_load(snd_config_t * config, snd_input_t * in) { @@ -6508,7 +6508,7 @@ int glshim_snd_config_load(snd_config_t * config, snd_input_t * in) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_load(snd_config_t * config, snd_input_t * in) __attribute__((alias("glshim_snd_config_load"))); +int snd_config_load(snd_config_t * config, snd_input_t * in) __attribute__((alias("glshim_snd_config_load"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_load_override) && !defined(skip_index_snd_config_load_override) int glshim_snd_config_load_override(snd_config_t * config, snd_input_t * in) { @@ -6520,7 +6520,7 @@ int glshim_snd_config_load_override(snd_config_t * config, snd_input_t * in) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_load_override(snd_config_t * config, snd_input_t * in) __attribute__((alias("glshim_snd_config_load_override"))); +int snd_config_load_override(snd_config_t * config, snd_input_t * in) __attribute__((alias("glshim_snd_config_load_override"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_make) && !defined(skip_index_snd_config_make) int glshim_snd_config_make(snd_config_t ** config, const char * key, snd_config_type_t type) { @@ -6533,7 +6533,7 @@ int glshim_snd_config_make(snd_config_t ** config, const char * key, snd_config_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_make(snd_config_t ** config, const char * key, snd_config_type_t type) __attribute__((alias("glshim_snd_config_make"))); +int snd_config_make(snd_config_t ** config, const char * key, snd_config_type_t type) __attribute__((alias("glshim_snd_config_make"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_make_compound) && !defined(skip_index_snd_config_make_compound) int glshim_snd_config_make_compound(snd_config_t ** config, const char * key, int join) { @@ -6546,7 +6546,7 @@ int glshim_snd_config_make_compound(snd_config_t ** config, const char * key, in syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_make_compound(snd_config_t ** config, const char * key, int join) __attribute__((alias("glshim_snd_config_make_compound"))); +int snd_config_make_compound(snd_config_t ** config, const char * key, int join) __attribute__((alias("glshim_snd_config_make_compound"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_make_integer) && !defined(skip_index_snd_config_make_integer) int glshim_snd_config_make_integer(snd_config_t ** config, const char * key) { @@ -6558,7 +6558,7 @@ int glshim_snd_config_make_integer(snd_config_t ** config, const char * key) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_make_integer(snd_config_t ** config, const char * key) __attribute__((alias("glshim_snd_config_make_integer"))); +int snd_config_make_integer(snd_config_t ** config, const char * key) __attribute__((alias("glshim_snd_config_make_integer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_make_integer64) && !defined(skip_index_snd_config_make_integer64) int glshim_snd_config_make_integer64(snd_config_t ** config, const char * key) { @@ -6570,7 +6570,7 @@ int glshim_snd_config_make_integer64(snd_config_t ** config, const char * key) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_make_integer64(snd_config_t ** config, const char * key) __attribute__((alias("glshim_snd_config_make_integer64"))); +int snd_config_make_integer64(snd_config_t ** config, const char * key) __attribute__((alias("glshim_snd_config_make_integer64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_make_pointer) && !defined(skip_index_snd_config_make_pointer) int glshim_snd_config_make_pointer(snd_config_t ** config, const char * key) { @@ -6582,7 +6582,7 @@ int glshim_snd_config_make_pointer(snd_config_t ** config, const char * key) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_make_pointer(snd_config_t ** config, const char * key) __attribute__((alias("glshim_snd_config_make_pointer"))); +int snd_config_make_pointer(snd_config_t ** config, const char * key) __attribute__((alias("glshim_snd_config_make_pointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_make_real) && !defined(skip_index_snd_config_make_real) int glshim_snd_config_make_real(snd_config_t ** config, const char * key) { @@ -6594,7 +6594,7 @@ int glshim_snd_config_make_real(snd_config_t ** config, const char * key) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_make_real(snd_config_t ** config, const char * key) __attribute__((alias("glshim_snd_config_make_real"))); +int snd_config_make_real(snd_config_t ** config, const char * key) __attribute__((alias("glshim_snd_config_make_real"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_make_string) && !defined(skip_index_snd_config_make_string) int glshim_snd_config_make_string(snd_config_t ** config, const char * key) { @@ -6606,7 +6606,7 @@ int glshim_snd_config_make_string(snd_config_t ** config, const char * key) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_make_string(snd_config_t ** config, const char * key) __attribute__((alias("glshim_snd_config_make_string"))); +int snd_config_make_string(snd_config_t ** config, const char * key) __attribute__((alias("glshim_snd_config_make_string"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_save) && !defined(skip_index_snd_config_save) int glshim_snd_config_save(snd_config_t * config, snd_output_t * out) { @@ -6618,7 +6618,7 @@ int glshim_snd_config_save(snd_config_t * config, snd_output_t * out) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_save(snd_config_t * config, snd_output_t * out) __attribute__((alias("glshim_snd_config_save"))); +int snd_config_save(snd_config_t * config, snd_output_t * out) __attribute__((alias("glshim_snd_config_save"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_search) && !defined(skip_index_snd_config_search) int glshim_snd_config_search(snd_config_t * config, const char * key, snd_config_t ** result) { @@ -6631,7 +6631,7 @@ int glshim_snd_config_search(snd_config_t * config, const char * key, snd_config syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_search(snd_config_t * config, const char * key, snd_config_t ** result) __attribute__((alias("glshim_snd_config_search"))); +int snd_config_search(snd_config_t * config, const char * key, snd_config_t ** result) __attribute__((alias("glshim_snd_config_search"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_search_definition) && !defined(skip_index_snd_config_search_definition) int glshim_snd_config_search_definition(snd_config_t * config, const char * base, const char * key, snd_config_t ** result) { @@ -6645,7 +6645,7 @@ int glshim_snd_config_search_definition(snd_config_t * config, const char * base syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_search_definition(snd_config_t * config, const char * base, const char * key, snd_config_t ** result) __attribute__((alias("glshim_snd_config_search_definition"))); +int snd_config_search_definition(snd_config_t * config, const char * base, const char * key, snd_config_t ** result) __attribute__((alias("glshim_snd_config_search_definition"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_set_ascii) && !defined(skip_index_snd_config_set_ascii) int glshim_snd_config_set_ascii(snd_config_t * config, const char * ascii) { @@ -6657,7 +6657,7 @@ int glshim_snd_config_set_ascii(snd_config_t * config, const char * ascii) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_set_ascii(snd_config_t * config, const char * ascii) __attribute__((alias("glshim_snd_config_set_ascii"))); +int snd_config_set_ascii(snd_config_t * config, const char * ascii) __attribute__((alias("glshim_snd_config_set_ascii"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_set_id) && !defined(skip_index_snd_config_set_id) int glshim_snd_config_set_id(snd_config_t * config, const char * id) { @@ -6669,7 +6669,7 @@ int glshim_snd_config_set_id(snd_config_t * config, const char * id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_set_id(snd_config_t * config, const char * id) __attribute__((alias("glshim_snd_config_set_id"))); +int snd_config_set_id(snd_config_t * config, const char * id) __attribute__((alias("glshim_snd_config_set_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_set_integer) && !defined(skip_index_snd_config_set_integer) int glshim_snd_config_set_integer(snd_config_t * config, long value) { @@ -6681,7 +6681,7 @@ int glshim_snd_config_set_integer(snd_config_t * config, long value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_set_integer(snd_config_t * config, long value) __attribute__((alias("glshim_snd_config_set_integer"))); +int snd_config_set_integer(snd_config_t * config, long value) __attribute__((alias("glshim_snd_config_set_integer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_set_integer64) && !defined(skip_index_snd_config_set_integer64) int glshim_snd_config_set_integer64(snd_config_t * config, long long value) { @@ -6693,7 +6693,7 @@ int glshim_snd_config_set_integer64(snd_config_t * config, long long value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_set_integer64(snd_config_t * config, long long value) __attribute__((alias("glshim_snd_config_set_integer64"))); +int snd_config_set_integer64(snd_config_t * config, long long value) __attribute__((alias("glshim_snd_config_set_integer64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_set_pointer) && !defined(skip_index_snd_config_set_pointer) int glshim_snd_config_set_pointer(snd_config_t * config, const void * ptr) { @@ -6705,7 +6705,7 @@ int glshim_snd_config_set_pointer(snd_config_t * config, const void * ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_set_pointer(snd_config_t * config, const void * ptr) __attribute__((alias("glshim_snd_config_set_pointer"))); +int snd_config_set_pointer(snd_config_t * config, const void * ptr) __attribute__((alias("glshim_snd_config_set_pointer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_set_real) && !defined(skip_index_snd_config_set_real) int glshim_snd_config_set_real(snd_config_t * config, double value) { @@ -6717,7 +6717,7 @@ int glshim_snd_config_set_real(snd_config_t * config, double value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_set_real(snd_config_t * config, double value) __attribute__((alias("glshim_snd_config_set_real"))); +int snd_config_set_real(snd_config_t * config, double value) __attribute__((alias("glshim_snd_config_set_real"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_set_string) && !defined(skip_index_snd_config_set_string) int glshim_snd_config_set_string(snd_config_t * config, const char * value) { @@ -6729,7 +6729,7 @@ int glshim_snd_config_set_string(snd_config_t * config, const char * value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_set_string(snd_config_t * config, const char * value) __attribute__((alias("glshim_snd_config_set_string"))); +int snd_config_set_string(snd_config_t * config, const char * value) __attribute__((alias("glshim_snd_config_set_string"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_test_id) && !defined(skip_index_snd_config_test_id) int glshim_snd_config_test_id(const snd_config_t * config, const char * id) { @@ -6741,7 +6741,7 @@ int glshim_snd_config_test_id(const snd_config_t * config, const char * id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_test_id(const snd_config_t * config, const char * id) __attribute__((alias("glshim_snd_config_test_id"))); +int snd_config_test_id(const snd_config_t * config, const char * id) __attribute__((alias("glshim_snd_config_test_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_top) && !defined(skip_index_snd_config_top) int glshim_snd_config_top(snd_config_t ** config) { @@ -6752,7 +6752,7 @@ int glshim_snd_config_top(snd_config_t ** config) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_top(snd_config_t ** config) __attribute__((alias("glshim_snd_config_top"))); +int snd_config_top(snd_config_t ** config) __attribute__((alias("glshim_snd_config_top"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_update) && !defined(skip_index_snd_config_update) int glshim_snd_config_update() { @@ -6762,7 +6762,7 @@ int glshim_snd_config_update() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_update() __attribute__((alias("glshim_snd_config_update"))); +int snd_config_update() __attribute__((alias("glshim_snd_config_update"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_update_free) && !defined(skip_index_snd_config_update_free) int glshim_snd_config_update_free(snd_config_update_t * update) { @@ -6773,7 +6773,7 @@ int glshim_snd_config_update_free(snd_config_update_t * update) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_update_free(snd_config_update_t * update) __attribute__((alias("glshim_snd_config_update_free"))); +int snd_config_update_free(snd_config_update_t * update) __attribute__((alias("glshim_snd_config_update_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_update_free_global) && !defined(skip_index_snd_config_update_free_global) int glshim_snd_config_update_free_global() { @@ -6783,7 +6783,7 @@ int glshim_snd_config_update_free_global() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_update_free_global() __attribute__((alias("glshim_snd_config_update_free_global"))); +int snd_config_update_free_global() __attribute__((alias("glshim_snd_config_update_free_global"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_config_update_r) && !defined(skip_index_snd_config_update_r) int glshim_snd_config_update_r(snd_config_t ** top, snd_config_update_t ** update, const char * path) { @@ -6796,7 +6796,7 @@ int glshim_snd_config_update_r(snd_config_t ** top, snd_config_update_t ** updat syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_config_update_r(snd_config_t ** top, snd_config_update_t ** update, const char * path) __attribute__((alias("glshim_snd_config_update_r"))); +int snd_config_update_r(snd_config_t ** top, snd_config_update_t ** update, const char * path) __attribute__((alias("glshim_snd_config_update_r"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info) && !defined(skip_index_snd_ctl_card_info) int glshim_snd_ctl_card_info(snd_ctl_t * ctl, snd_ctl_card_info_t * info) { @@ -6808,7 +6808,7 @@ int glshim_snd_ctl_card_info(snd_ctl_t * ctl, snd_ctl_card_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_card_info(snd_ctl_t * ctl, snd_ctl_card_info_t * info) __attribute__((alias("glshim_snd_ctl_card_info"))); +int snd_ctl_card_info(snd_ctl_t * ctl, snd_ctl_card_info_t * info) __attribute__((alias("glshim_snd_ctl_card_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_clear) && !defined(skip_index_snd_ctl_card_info_clear) void glshim_snd_ctl_card_info_clear(snd_ctl_card_info_t * obj) { @@ -6817,7 +6817,7 @@ void glshim_snd_ctl_card_info_clear(snd_ctl_card_info_t * obj) { packed_data.args.a1 = (snd_ctl_card_info_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_card_info_clear(snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_clear"))); +void snd_ctl_card_info_clear(snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_clear"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_copy) && !defined(skip_index_snd_ctl_card_info_copy) void glshim_snd_ctl_card_info_copy(snd_ctl_card_info_t * dst, const snd_ctl_card_info_t * src) { @@ -6827,7 +6827,7 @@ void glshim_snd_ctl_card_info_copy(snd_ctl_card_info_t * dst, const snd_ctl_card packed_data.args.a2 = (snd_ctl_card_info_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_card_info_copy(snd_ctl_card_info_t * dst, const snd_ctl_card_info_t * src) __attribute__((alias("glshim_snd_ctl_card_info_copy"))); +void snd_ctl_card_info_copy(snd_ctl_card_info_t * dst, const snd_ctl_card_info_t * src) __attribute__((alias("glshim_snd_ctl_card_info_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_free) && !defined(skip_index_snd_ctl_card_info_free) void glshim_snd_ctl_card_info_free(snd_ctl_card_info_t * obj) { @@ -6836,7 +6836,7 @@ void glshim_snd_ctl_card_info_free(snd_ctl_card_info_t * obj) { packed_data.args.a1 = (snd_ctl_card_info_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_card_info_free(snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_free"))); +void snd_ctl_card_info_free(snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_get_card) && !defined(skip_index_snd_ctl_card_info_get_card) int glshim_snd_ctl_card_info_get_card(const snd_ctl_card_info_t * obj) { @@ -6847,7 +6847,7 @@ int glshim_snd_ctl_card_info_get_card(const snd_ctl_card_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_card_info_get_card(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_card"))); +int snd_ctl_card_info_get_card(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_card"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_get_components) && !defined(skip_index_snd_ctl_card_info_get_components) const char * glshim_snd_ctl_card_info_get_components(const snd_ctl_card_info_t * obj) { @@ -6858,7 +6858,7 @@ const char * glshim_snd_ctl_card_info_get_components(const snd_ctl_card_info_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_card_info_get_components(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_components"))); +const char * snd_ctl_card_info_get_components(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_components"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_get_driver) && !defined(skip_index_snd_ctl_card_info_get_driver) const char * glshim_snd_ctl_card_info_get_driver(const snd_ctl_card_info_t * obj) { @@ -6869,7 +6869,7 @@ const char * glshim_snd_ctl_card_info_get_driver(const snd_ctl_card_info_t * obj syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_card_info_get_driver(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_driver"))); +const char * snd_ctl_card_info_get_driver(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_driver"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_get_id) && !defined(skip_index_snd_ctl_card_info_get_id) const char * glshim_snd_ctl_card_info_get_id(const snd_ctl_card_info_t * obj) { @@ -6880,7 +6880,7 @@ const char * glshim_snd_ctl_card_info_get_id(const snd_ctl_card_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_card_info_get_id(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_id"))); +const char * snd_ctl_card_info_get_id(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_get_longname) && !defined(skip_index_snd_ctl_card_info_get_longname) const char * glshim_snd_ctl_card_info_get_longname(const snd_ctl_card_info_t * obj) { @@ -6891,7 +6891,7 @@ const char * glshim_snd_ctl_card_info_get_longname(const snd_ctl_card_info_t * o syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_card_info_get_longname(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_longname"))); +const char * snd_ctl_card_info_get_longname(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_longname"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_get_mixername) && !defined(skip_index_snd_ctl_card_info_get_mixername) const char * glshim_snd_ctl_card_info_get_mixername(const snd_ctl_card_info_t * obj) { @@ -6902,7 +6902,7 @@ const char * glshim_snd_ctl_card_info_get_mixername(const snd_ctl_card_info_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_card_info_get_mixername(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_mixername"))); +const char * snd_ctl_card_info_get_mixername(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_mixername"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_get_name) && !defined(skip_index_snd_ctl_card_info_get_name) const char * glshim_snd_ctl_card_info_get_name(const snd_ctl_card_info_t * obj) { @@ -6913,7 +6913,7 @@ const char * glshim_snd_ctl_card_info_get_name(const snd_ctl_card_info_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_card_info_get_name(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_name"))); +const char * snd_ctl_card_info_get_name(const snd_ctl_card_info_t * obj) __attribute__((alias("glshim_snd_ctl_card_info_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_malloc) && !defined(skip_index_snd_ctl_card_info_malloc) int glshim_snd_ctl_card_info_malloc(snd_ctl_card_info_t ** ptr) { @@ -6924,7 +6924,7 @@ int glshim_snd_ctl_card_info_malloc(snd_ctl_card_info_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_card_info_malloc(snd_ctl_card_info_t ** ptr) __attribute__((alias("glshim_snd_ctl_card_info_malloc"))); +int snd_ctl_card_info_malloc(snd_ctl_card_info_t ** ptr) __attribute__((alias("glshim_snd_ctl_card_info_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_card_info_sizeof) && !defined(skip_index_snd_ctl_card_info_sizeof) size_t glshim_snd_ctl_card_info_sizeof() { @@ -6934,7 +6934,7 @@ size_t glshim_snd_ctl_card_info_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_ctl_card_info_sizeof() __attribute__((alias("glshim_snd_ctl_card_info_sizeof"))); +size_t snd_ctl_card_info_sizeof() __attribute__((alias("glshim_snd_ctl_card_info_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_close) && !defined(skip_index_snd_ctl_close) int glshim_snd_ctl_close(snd_ctl_t * ctl) { @@ -6945,7 +6945,7 @@ int glshim_snd_ctl_close(snd_ctl_t * ctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_close(snd_ctl_t * ctl) __attribute__((alias("glshim_snd_ctl_close"))); +int snd_ctl_close(snd_ctl_t * ctl) __attribute__((alias("glshim_snd_ctl_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_add_boolean) && !defined(skip_index_snd_ctl_elem_add_boolean) int glshim_snd_ctl_elem_add_boolean(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int count) { @@ -6958,7 +6958,7 @@ int glshim_snd_ctl_elem_add_boolean(snd_ctl_t * ctl, const snd_ctl_elem_id_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_add_boolean(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int count) __attribute__((alias("glshim_snd_ctl_elem_add_boolean"))); +int snd_ctl_elem_add_boolean(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int count) __attribute__((alias("glshim_snd_ctl_elem_add_boolean"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_add_iec958) && !defined(skip_index_snd_ctl_elem_add_iec958) int glshim_snd_ctl_elem_add_iec958(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id) { @@ -6970,7 +6970,7 @@ int glshim_snd_ctl_elem_add_iec958(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_add_iec958(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id) __attribute__((alias("glshim_snd_ctl_elem_add_iec958"))); +int snd_ctl_elem_add_iec958(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id) __attribute__((alias("glshim_snd_ctl_elem_add_iec958"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_add_integer) && !defined(skip_index_snd_ctl_elem_add_integer) int glshim_snd_ctl_elem_add_integer(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int count, long imin, long imax, long istep) { @@ -6986,7 +6986,7 @@ int glshim_snd_ctl_elem_add_integer(snd_ctl_t * ctl, const snd_ctl_elem_id_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_add_integer(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int count, long imin, long imax, long istep) __attribute__((alias("glshim_snd_ctl_elem_add_integer"))); +int snd_ctl_elem_add_integer(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int count, long imin, long imax, long istep) __attribute__((alias("glshim_snd_ctl_elem_add_integer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_add_integer64) && !defined(skip_index_snd_ctl_elem_add_integer64) int glshim_snd_ctl_elem_add_integer64(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int count, long long imin, long long imax, long long istep) { @@ -7002,7 +7002,7 @@ int glshim_snd_ctl_elem_add_integer64(snd_ctl_t * ctl, const snd_ctl_elem_id_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_add_integer64(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int count, long long imin, long long imax, long long istep) __attribute__((alias("glshim_snd_ctl_elem_add_integer64"))); +int snd_ctl_elem_add_integer64(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int count, long long imin, long long imax, long long istep) __attribute__((alias("glshim_snd_ctl_elem_add_integer64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_clear) && !defined(skip_index_snd_ctl_elem_id_clear) void glshim_snd_ctl_elem_id_clear(snd_ctl_elem_id_t * obj) { @@ -7011,7 +7011,7 @@ void glshim_snd_ctl_elem_id_clear(snd_ctl_elem_id_t * obj) { packed_data.args.a1 = (snd_ctl_elem_id_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_id_clear(snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_clear"))); +void snd_ctl_elem_id_clear(snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_clear"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_copy) && !defined(skip_index_snd_ctl_elem_id_copy) void glshim_snd_ctl_elem_id_copy(snd_ctl_elem_id_t * dst, const snd_ctl_elem_id_t * src) { @@ -7021,7 +7021,7 @@ void glshim_snd_ctl_elem_id_copy(snd_ctl_elem_id_t * dst, const snd_ctl_elem_id_ packed_data.args.a2 = (snd_ctl_elem_id_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_id_copy(snd_ctl_elem_id_t * dst, const snd_ctl_elem_id_t * src) __attribute__((alias("glshim_snd_ctl_elem_id_copy"))); +void snd_ctl_elem_id_copy(snd_ctl_elem_id_t * dst, const snd_ctl_elem_id_t * src) __attribute__((alias("glshim_snd_ctl_elem_id_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_free) && !defined(skip_index_snd_ctl_elem_id_free) void glshim_snd_ctl_elem_id_free(snd_ctl_elem_id_t * obj) { @@ -7030,7 +7030,7 @@ void glshim_snd_ctl_elem_id_free(snd_ctl_elem_id_t * obj) { packed_data.args.a1 = (snd_ctl_elem_id_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_id_free(snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_free"))); +void snd_ctl_elem_id_free(snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_get_device) && !defined(skip_index_snd_ctl_elem_id_get_device) unsigned int glshim_snd_ctl_elem_id_get_device(const snd_ctl_elem_id_t * obj) { @@ -7041,7 +7041,7 @@ unsigned int glshim_snd_ctl_elem_id_get_device(const snd_ctl_elem_id_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_id_get_device(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_device"))); +unsigned int snd_ctl_elem_id_get_device(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_get_index) && !defined(skip_index_snd_ctl_elem_id_get_index) unsigned int glshim_snd_ctl_elem_id_get_index(const snd_ctl_elem_id_t * obj) { @@ -7052,7 +7052,7 @@ unsigned int glshim_snd_ctl_elem_id_get_index(const snd_ctl_elem_id_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_id_get_index(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_index"))); +unsigned int snd_ctl_elem_id_get_index(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_get_interface) && !defined(skip_index_snd_ctl_elem_id_get_interface) snd_ctl_elem_iface_t glshim_snd_ctl_elem_id_get_interface(const snd_ctl_elem_id_t * obj) { @@ -7063,7 +7063,7 @@ snd_ctl_elem_iface_t glshim_snd_ctl_elem_id_get_interface(const snd_ctl_elem_id_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_elem_iface_t snd_ctl_elem_id_get_interface(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_interface"))); +snd_ctl_elem_iface_t snd_ctl_elem_id_get_interface(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_interface"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_get_name) && !defined(skip_index_snd_ctl_elem_id_get_name) const char * glshim_snd_ctl_elem_id_get_name(const snd_ctl_elem_id_t * obj) { @@ -7074,7 +7074,7 @@ const char * glshim_snd_ctl_elem_id_get_name(const snd_ctl_elem_id_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_elem_id_get_name(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_name"))); +const char * snd_ctl_elem_id_get_name(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_get_numid) && !defined(skip_index_snd_ctl_elem_id_get_numid) unsigned int glshim_snd_ctl_elem_id_get_numid(const snd_ctl_elem_id_t * obj) { @@ -7085,7 +7085,7 @@ unsigned int glshim_snd_ctl_elem_id_get_numid(const snd_ctl_elem_id_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_id_get_numid(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_numid"))); +unsigned int snd_ctl_elem_id_get_numid(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_numid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_get_subdevice) && !defined(skip_index_snd_ctl_elem_id_get_subdevice) unsigned int glshim_snd_ctl_elem_id_get_subdevice(const snd_ctl_elem_id_t * obj) { @@ -7096,7 +7096,7 @@ unsigned int glshim_snd_ctl_elem_id_get_subdevice(const snd_ctl_elem_id_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_id_get_subdevice(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_subdevice"))); +unsigned int snd_ctl_elem_id_get_subdevice(const snd_ctl_elem_id_t * obj) __attribute__((alias("glshim_snd_ctl_elem_id_get_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_malloc) && !defined(skip_index_snd_ctl_elem_id_malloc) int glshim_snd_ctl_elem_id_malloc(snd_ctl_elem_id_t ** ptr) { @@ -7107,7 +7107,7 @@ int glshim_snd_ctl_elem_id_malloc(snd_ctl_elem_id_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_id_malloc(snd_ctl_elem_id_t ** ptr) __attribute__((alias("glshim_snd_ctl_elem_id_malloc"))); +int snd_ctl_elem_id_malloc(snd_ctl_elem_id_t ** ptr) __attribute__((alias("glshim_snd_ctl_elem_id_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_set_device) && !defined(skip_index_snd_ctl_elem_id_set_device) void glshim_snd_ctl_elem_id_set_device(snd_ctl_elem_id_t * obj, unsigned int val) { @@ -7117,7 +7117,7 @@ void glshim_snd_ctl_elem_id_set_device(snd_ctl_elem_id_t * obj, unsigned int val packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_id_set_device(snd_ctl_elem_id_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_id_set_device"))); +void snd_ctl_elem_id_set_device(snd_ctl_elem_id_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_id_set_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_set_index) && !defined(skip_index_snd_ctl_elem_id_set_index) void glshim_snd_ctl_elem_id_set_index(snd_ctl_elem_id_t * obj, unsigned int val) { @@ -7127,7 +7127,7 @@ void glshim_snd_ctl_elem_id_set_index(snd_ctl_elem_id_t * obj, unsigned int val) packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_id_set_index(snd_ctl_elem_id_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_id_set_index"))); +void snd_ctl_elem_id_set_index(snd_ctl_elem_id_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_id_set_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_set_interface) && !defined(skip_index_snd_ctl_elem_id_set_interface) void glshim_snd_ctl_elem_id_set_interface(snd_ctl_elem_id_t * obj, snd_ctl_elem_iface_t val) { @@ -7137,7 +7137,7 @@ void glshim_snd_ctl_elem_id_set_interface(snd_ctl_elem_id_t * obj, snd_ctl_elem_ packed_data.args.a2 = (snd_ctl_elem_iface_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_id_set_interface(snd_ctl_elem_id_t * obj, snd_ctl_elem_iface_t val) __attribute__((alias("glshim_snd_ctl_elem_id_set_interface"))); +void snd_ctl_elem_id_set_interface(snd_ctl_elem_id_t * obj, snd_ctl_elem_iface_t val) __attribute__((alias("glshim_snd_ctl_elem_id_set_interface"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_set_name) && !defined(skip_index_snd_ctl_elem_id_set_name) void glshim_snd_ctl_elem_id_set_name(snd_ctl_elem_id_t * obj, const char * val) { @@ -7147,7 +7147,7 @@ void glshim_snd_ctl_elem_id_set_name(snd_ctl_elem_id_t * obj, const char * val) packed_data.args.a2 = (char *)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_id_set_name(snd_ctl_elem_id_t * obj, const char * val) __attribute__((alias("glshim_snd_ctl_elem_id_set_name"))); +void snd_ctl_elem_id_set_name(snd_ctl_elem_id_t * obj, const char * val) __attribute__((alias("glshim_snd_ctl_elem_id_set_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_set_numid) && !defined(skip_index_snd_ctl_elem_id_set_numid) void glshim_snd_ctl_elem_id_set_numid(snd_ctl_elem_id_t * obj, unsigned int val) { @@ -7157,7 +7157,7 @@ void glshim_snd_ctl_elem_id_set_numid(snd_ctl_elem_id_t * obj, unsigned int val) packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_id_set_numid(snd_ctl_elem_id_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_id_set_numid"))); +void snd_ctl_elem_id_set_numid(snd_ctl_elem_id_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_id_set_numid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_set_subdevice) && !defined(skip_index_snd_ctl_elem_id_set_subdevice) void glshim_snd_ctl_elem_id_set_subdevice(snd_ctl_elem_id_t * obj, unsigned int val) { @@ -7167,7 +7167,7 @@ void glshim_snd_ctl_elem_id_set_subdevice(snd_ctl_elem_id_t * obj, unsigned int packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_id_set_subdevice(snd_ctl_elem_id_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_id_set_subdevice"))); +void snd_ctl_elem_id_set_subdevice(snd_ctl_elem_id_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_id_set_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_id_sizeof) && !defined(skip_index_snd_ctl_elem_id_sizeof) size_t glshim_snd_ctl_elem_id_sizeof() { @@ -7177,7 +7177,7 @@ size_t glshim_snd_ctl_elem_id_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_ctl_elem_id_sizeof() __attribute__((alias("glshim_snd_ctl_elem_id_sizeof"))); +size_t snd_ctl_elem_id_sizeof() __attribute__((alias("glshim_snd_ctl_elem_id_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_iface_name) && !defined(skip_index_snd_ctl_elem_iface_name) const char * glshim_snd_ctl_elem_iface_name(snd_ctl_elem_iface_t iface) { @@ -7188,7 +7188,7 @@ const char * glshim_snd_ctl_elem_iface_name(snd_ctl_elem_iface_t iface) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_elem_iface_name(snd_ctl_elem_iface_t iface) __attribute__((alias("glshim_snd_ctl_elem_iface_name"))); +const char * snd_ctl_elem_iface_name(snd_ctl_elem_iface_t iface) __attribute__((alias("glshim_snd_ctl_elem_iface_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info) && !defined(skip_index_snd_ctl_elem_info) int glshim_snd_ctl_elem_info(snd_ctl_t * ctl, snd_ctl_elem_info_t * info) { @@ -7200,7 +7200,7 @@ int glshim_snd_ctl_elem_info(snd_ctl_t * ctl, snd_ctl_elem_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info(snd_ctl_t * ctl, snd_ctl_elem_info_t * info) __attribute__((alias("glshim_snd_ctl_elem_info"))); +int snd_ctl_elem_info(snd_ctl_t * ctl, snd_ctl_elem_info_t * info) __attribute__((alias("glshim_snd_ctl_elem_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_clear) && !defined(skip_index_snd_ctl_elem_info_clear) void glshim_snd_ctl_elem_info_clear(snd_ctl_elem_info_t * obj) { @@ -7209,7 +7209,7 @@ void glshim_snd_ctl_elem_info_clear(snd_ctl_elem_info_t * obj) { packed_data.args.a1 = (snd_ctl_elem_info_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_clear(snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_clear"))); +void snd_ctl_elem_info_clear(snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_clear"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_copy) && !defined(skip_index_snd_ctl_elem_info_copy) void glshim_snd_ctl_elem_info_copy(snd_ctl_elem_info_t * dst, const snd_ctl_elem_info_t * src) { @@ -7219,7 +7219,7 @@ void glshim_snd_ctl_elem_info_copy(snd_ctl_elem_info_t * dst, const snd_ctl_elem packed_data.args.a2 = (snd_ctl_elem_info_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_copy(snd_ctl_elem_info_t * dst, const snd_ctl_elem_info_t * src) __attribute__((alias("glshim_snd_ctl_elem_info_copy"))); +void snd_ctl_elem_info_copy(snd_ctl_elem_info_t * dst, const snd_ctl_elem_info_t * src) __attribute__((alias("glshim_snd_ctl_elem_info_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_free) && !defined(skip_index_snd_ctl_elem_info_free) void glshim_snd_ctl_elem_info_free(snd_ctl_elem_info_t * obj) { @@ -7228,7 +7228,7 @@ void glshim_snd_ctl_elem_info_free(snd_ctl_elem_info_t * obj) { packed_data.args.a1 = (snd_ctl_elem_info_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_free(snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_free"))); +void snd_ctl_elem_info_free(snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_count) && !defined(skip_index_snd_ctl_elem_info_get_count) unsigned int glshim_snd_ctl_elem_info_get_count(const snd_ctl_elem_info_t * obj) { @@ -7239,7 +7239,7 @@ unsigned int glshim_snd_ctl_elem_info_get_count(const snd_ctl_elem_info_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_info_get_count(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_count"))); +unsigned int snd_ctl_elem_info_get_count(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_device) && !defined(skip_index_snd_ctl_elem_info_get_device) unsigned int glshim_snd_ctl_elem_info_get_device(const snd_ctl_elem_info_t * obj) { @@ -7250,7 +7250,7 @@ unsigned int glshim_snd_ctl_elem_info_get_device(const snd_ctl_elem_info_t * obj syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_info_get_device(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_device"))); +unsigned int snd_ctl_elem_info_get_device(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_dimension) && !defined(skip_index_snd_ctl_elem_info_get_dimension) int glshim_snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t * obj, unsigned int idx) { @@ -7262,7 +7262,7 @@ int glshim_snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t * obj, unsi syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_info_get_dimension"))); +int snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_info_get_dimension"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_dimensions) && !defined(skip_index_snd_ctl_elem_info_get_dimensions) int glshim_snd_ctl_elem_info_get_dimensions(const snd_ctl_elem_info_t * obj) { @@ -7273,7 +7273,7 @@ int glshim_snd_ctl_elem_info_get_dimensions(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_get_dimensions(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_dimensions"))); +int snd_ctl_elem_info_get_dimensions(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_dimensions"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_id) && !defined(skip_index_snd_ctl_elem_info_get_id) void glshim_snd_ctl_elem_info_get_id(const snd_ctl_elem_info_t * obj, snd_ctl_elem_id_t * ptr) { @@ -7283,7 +7283,7 @@ void glshim_snd_ctl_elem_info_get_id(const snd_ctl_elem_info_t * obj, snd_ctl_el packed_data.args.a2 = (snd_ctl_elem_id_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_get_id(const snd_ctl_elem_info_t * obj, snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_info_get_id"))); +void snd_ctl_elem_info_get_id(const snd_ctl_elem_info_t * obj, snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_info_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_index) && !defined(skip_index_snd_ctl_elem_info_get_index) unsigned int glshim_snd_ctl_elem_info_get_index(const snd_ctl_elem_info_t * obj) { @@ -7294,7 +7294,7 @@ unsigned int glshim_snd_ctl_elem_info_get_index(const snd_ctl_elem_info_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_info_get_index(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_index"))); +unsigned int snd_ctl_elem_info_get_index(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_interface) && !defined(skip_index_snd_ctl_elem_info_get_interface) snd_ctl_elem_iface_t glshim_snd_ctl_elem_info_get_interface(const snd_ctl_elem_info_t * obj) { @@ -7305,7 +7305,7 @@ snd_ctl_elem_iface_t glshim_snd_ctl_elem_info_get_interface(const snd_ctl_elem_i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_elem_iface_t snd_ctl_elem_info_get_interface(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_interface"))); +snd_ctl_elem_iface_t snd_ctl_elem_info_get_interface(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_interface"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_item_name) && !defined(skip_index_snd_ctl_elem_info_get_item_name) const char * glshim_snd_ctl_elem_info_get_item_name(const snd_ctl_elem_info_t * obj) { @@ -7316,7 +7316,7 @@ const char * glshim_snd_ctl_elem_info_get_item_name(const snd_ctl_elem_info_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_elem_info_get_item_name(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_item_name"))); +const char * snd_ctl_elem_info_get_item_name(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_item_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_items) && !defined(skip_index_snd_ctl_elem_info_get_items) unsigned int glshim_snd_ctl_elem_info_get_items(const snd_ctl_elem_info_t * obj) { @@ -7327,7 +7327,7 @@ unsigned int glshim_snd_ctl_elem_info_get_items(const snd_ctl_elem_info_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_info_get_items(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_items"))); +unsigned int snd_ctl_elem_info_get_items(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_items"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_max) && !defined(skip_index_snd_ctl_elem_info_get_max) long glshim_snd_ctl_elem_info_get_max(const snd_ctl_elem_info_t * obj) { @@ -7338,7 +7338,7 @@ long glshim_snd_ctl_elem_info_get_max(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_ctl_elem_info_get_max(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_max"))); +long snd_ctl_elem_info_get_max(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_max64) && !defined(skip_index_snd_ctl_elem_info_get_max64) long long glshim_snd_ctl_elem_info_get_max64(const snd_ctl_elem_info_t * obj) { @@ -7349,7 +7349,7 @@ long long glshim_snd_ctl_elem_info_get_max64(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long long snd_ctl_elem_info_get_max64(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_max64"))); +long long snd_ctl_elem_info_get_max64(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_max64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_min) && !defined(skip_index_snd_ctl_elem_info_get_min) long glshim_snd_ctl_elem_info_get_min(const snd_ctl_elem_info_t * obj) { @@ -7360,7 +7360,7 @@ long glshim_snd_ctl_elem_info_get_min(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_ctl_elem_info_get_min(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_min"))); +long snd_ctl_elem_info_get_min(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_min64) && !defined(skip_index_snd_ctl_elem_info_get_min64) long long glshim_snd_ctl_elem_info_get_min64(const snd_ctl_elem_info_t * obj) { @@ -7371,7 +7371,7 @@ long long glshim_snd_ctl_elem_info_get_min64(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long long snd_ctl_elem_info_get_min64(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_min64"))); +long long snd_ctl_elem_info_get_min64(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_min64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_name) && !defined(skip_index_snd_ctl_elem_info_get_name) const char * glshim_snd_ctl_elem_info_get_name(const snd_ctl_elem_info_t * obj) { @@ -7382,7 +7382,7 @@ const char * glshim_snd_ctl_elem_info_get_name(const snd_ctl_elem_info_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_elem_info_get_name(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_name"))); +const char * snd_ctl_elem_info_get_name(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_numid) && !defined(skip_index_snd_ctl_elem_info_get_numid) unsigned int glshim_snd_ctl_elem_info_get_numid(const snd_ctl_elem_info_t * obj) { @@ -7393,7 +7393,7 @@ unsigned int glshim_snd_ctl_elem_info_get_numid(const snd_ctl_elem_info_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_info_get_numid(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_numid"))); +unsigned int snd_ctl_elem_info_get_numid(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_numid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_owner) && !defined(skip_index_snd_ctl_elem_info_get_owner) pid_t glshim_snd_ctl_elem_info_get_owner(const snd_ctl_elem_info_t * obj) { @@ -7404,7 +7404,7 @@ pid_t glshim_snd_ctl_elem_info_get_owner(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -pid_t snd_ctl_elem_info_get_owner(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_owner"))); +pid_t snd_ctl_elem_info_get_owner(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_owner"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_step) && !defined(skip_index_snd_ctl_elem_info_get_step) long glshim_snd_ctl_elem_info_get_step(const snd_ctl_elem_info_t * obj) { @@ -7415,7 +7415,7 @@ long glshim_snd_ctl_elem_info_get_step(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_ctl_elem_info_get_step(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_step"))); +long snd_ctl_elem_info_get_step(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_step"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_step64) && !defined(skip_index_snd_ctl_elem_info_get_step64) long long glshim_snd_ctl_elem_info_get_step64(const snd_ctl_elem_info_t * obj) { @@ -7426,7 +7426,7 @@ long long glshim_snd_ctl_elem_info_get_step64(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long long snd_ctl_elem_info_get_step64(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_step64"))); +long long snd_ctl_elem_info_get_step64(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_step64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_subdevice) && !defined(skip_index_snd_ctl_elem_info_get_subdevice) unsigned int glshim_snd_ctl_elem_info_get_subdevice(const snd_ctl_elem_info_t * obj) { @@ -7437,7 +7437,7 @@ unsigned int glshim_snd_ctl_elem_info_get_subdevice(const snd_ctl_elem_info_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_info_get_subdevice(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_subdevice"))); +unsigned int snd_ctl_elem_info_get_subdevice(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_get_type) && !defined(skip_index_snd_ctl_elem_info_get_type) snd_ctl_elem_type_t glshim_snd_ctl_elem_info_get_type(const snd_ctl_elem_info_t * obj) { @@ -7448,7 +7448,7 @@ snd_ctl_elem_type_t glshim_snd_ctl_elem_info_get_type(const snd_ctl_elem_info_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_elem_type_t snd_ctl_elem_info_get_type(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_type"))); +snd_ctl_elem_type_t snd_ctl_elem_info_get_type(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_get_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_is_inactive) && !defined(skip_index_snd_ctl_elem_info_is_inactive) int glshim_snd_ctl_elem_info_is_inactive(const snd_ctl_elem_info_t * obj) { @@ -7459,7 +7459,7 @@ int glshim_snd_ctl_elem_info_is_inactive(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_is_inactive(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_inactive"))); +int snd_ctl_elem_info_is_inactive(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_inactive"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_is_locked) && !defined(skip_index_snd_ctl_elem_info_is_locked) int glshim_snd_ctl_elem_info_is_locked(const snd_ctl_elem_info_t * obj) { @@ -7470,7 +7470,7 @@ int glshim_snd_ctl_elem_info_is_locked(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_is_locked(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_locked"))); +int snd_ctl_elem_info_is_locked(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_locked"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_is_owner) && !defined(skip_index_snd_ctl_elem_info_is_owner) int glshim_snd_ctl_elem_info_is_owner(const snd_ctl_elem_info_t * obj) { @@ -7481,7 +7481,7 @@ int glshim_snd_ctl_elem_info_is_owner(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_is_owner(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_owner"))); +int snd_ctl_elem_info_is_owner(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_owner"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_is_readable) && !defined(skip_index_snd_ctl_elem_info_is_readable) int glshim_snd_ctl_elem_info_is_readable(const snd_ctl_elem_info_t * obj) { @@ -7492,7 +7492,7 @@ int glshim_snd_ctl_elem_info_is_readable(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_is_readable(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_readable"))); +int snd_ctl_elem_info_is_readable(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_readable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_is_tlv_commandable) && !defined(skip_index_snd_ctl_elem_info_is_tlv_commandable) int glshim_snd_ctl_elem_info_is_tlv_commandable(const snd_ctl_elem_info_t * obj) { @@ -7503,7 +7503,7 @@ int glshim_snd_ctl_elem_info_is_tlv_commandable(const snd_ctl_elem_info_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_is_tlv_commandable(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_tlv_commandable"))); +int snd_ctl_elem_info_is_tlv_commandable(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_tlv_commandable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_is_tlv_readable) && !defined(skip_index_snd_ctl_elem_info_is_tlv_readable) int glshim_snd_ctl_elem_info_is_tlv_readable(const snd_ctl_elem_info_t * obj) { @@ -7514,7 +7514,7 @@ int glshim_snd_ctl_elem_info_is_tlv_readable(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_is_tlv_readable(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_tlv_readable"))); +int snd_ctl_elem_info_is_tlv_readable(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_tlv_readable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_is_tlv_writable) && !defined(skip_index_snd_ctl_elem_info_is_tlv_writable) int glshim_snd_ctl_elem_info_is_tlv_writable(const snd_ctl_elem_info_t * obj) { @@ -7525,7 +7525,7 @@ int glshim_snd_ctl_elem_info_is_tlv_writable(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_is_tlv_writable(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_tlv_writable"))); +int snd_ctl_elem_info_is_tlv_writable(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_tlv_writable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_is_user) && !defined(skip_index_snd_ctl_elem_info_is_user) int glshim_snd_ctl_elem_info_is_user(const snd_ctl_elem_info_t * obj) { @@ -7536,7 +7536,7 @@ int glshim_snd_ctl_elem_info_is_user(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_is_user(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_user"))); +int snd_ctl_elem_info_is_user(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_user"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_is_volatile) && !defined(skip_index_snd_ctl_elem_info_is_volatile) int glshim_snd_ctl_elem_info_is_volatile(const snd_ctl_elem_info_t * obj) { @@ -7547,7 +7547,7 @@ int glshim_snd_ctl_elem_info_is_volatile(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_is_volatile(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_volatile"))); +int snd_ctl_elem_info_is_volatile(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_volatile"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_is_writable) && !defined(skip_index_snd_ctl_elem_info_is_writable) int glshim_snd_ctl_elem_info_is_writable(const snd_ctl_elem_info_t * obj) { @@ -7558,7 +7558,7 @@ int glshim_snd_ctl_elem_info_is_writable(const snd_ctl_elem_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_is_writable(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_writable"))); +int snd_ctl_elem_info_is_writable(const snd_ctl_elem_info_t * obj) __attribute__((alias("glshim_snd_ctl_elem_info_is_writable"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_malloc) && !defined(skip_index_snd_ctl_elem_info_malloc) int glshim_snd_ctl_elem_info_malloc(snd_ctl_elem_info_t ** ptr) { @@ -7569,7 +7569,7 @@ int glshim_snd_ctl_elem_info_malloc(snd_ctl_elem_info_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_info_malloc(snd_ctl_elem_info_t ** ptr) __attribute__((alias("glshim_snd_ctl_elem_info_malloc"))); +int snd_ctl_elem_info_malloc(snd_ctl_elem_info_t ** ptr) __attribute__((alias("glshim_snd_ctl_elem_info_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_set_device) && !defined(skip_index_snd_ctl_elem_info_set_device) void glshim_snd_ctl_elem_info_set_device(snd_ctl_elem_info_t * obj, unsigned int val) { @@ -7579,7 +7579,7 @@ void glshim_snd_ctl_elem_info_set_device(snd_ctl_elem_info_t * obj, unsigned int packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_set_device(snd_ctl_elem_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_info_set_device"))); +void snd_ctl_elem_info_set_device(snd_ctl_elem_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_info_set_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_set_id) && !defined(skip_index_snd_ctl_elem_info_set_id) void glshim_snd_ctl_elem_info_set_id(snd_ctl_elem_info_t * obj, const snd_ctl_elem_id_t * ptr) { @@ -7589,7 +7589,7 @@ void glshim_snd_ctl_elem_info_set_id(snd_ctl_elem_info_t * obj, const snd_ctl_el packed_data.args.a2 = (snd_ctl_elem_id_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_set_id(snd_ctl_elem_info_t * obj, const snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_info_set_id"))); +void snd_ctl_elem_info_set_id(snd_ctl_elem_info_t * obj, const snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_info_set_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_set_index) && !defined(skip_index_snd_ctl_elem_info_set_index) void glshim_snd_ctl_elem_info_set_index(snd_ctl_elem_info_t * obj, unsigned int val) { @@ -7599,7 +7599,7 @@ void glshim_snd_ctl_elem_info_set_index(snd_ctl_elem_info_t * obj, unsigned int packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_set_index(snd_ctl_elem_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_info_set_index"))); +void snd_ctl_elem_info_set_index(snd_ctl_elem_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_info_set_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_set_interface) && !defined(skip_index_snd_ctl_elem_info_set_interface) void glshim_snd_ctl_elem_info_set_interface(snd_ctl_elem_info_t * obj, snd_ctl_elem_iface_t val) { @@ -7609,7 +7609,7 @@ void glshim_snd_ctl_elem_info_set_interface(snd_ctl_elem_info_t * obj, snd_ctl_e packed_data.args.a2 = (snd_ctl_elem_iface_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_set_interface(snd_ctl_elem_info_t * obj, snd_ctl_elem_iface_t val) __attribute__((alias("glshim_snd_ctl_elem_info_set_interface"))); +void snd_ctl_elem_info_set_interface(snd_ctl_elem_info_t * obj, snd_ctl_elem_iface_t val) __attribute__((alias("glshim_snd_ctl_elem_info_set_interface"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_set_item) && !defined(skip_index_snd_ctl_elem_info_set_item) void glshim_snd_ctl_elem_info_set_item(snd_ctl_elem_info_t * obj, unsigned int val) { @@ -7619,7 +7619,7 @@ void glshim_snd_ctl_elem_info_set_item(snd_ctl_elem_info_t * obj, unsigned int v packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_set_item(snd_ctl_elem_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_info_set_item"))); +void snd_ctl_elem_info_set_item(snd_ctl_elem_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_info_set_item"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_set_name) && !defined(skip_index_snd_ctl_elem_info_set_name) void glshim_snd_ctl_elem_info_set_name(snd_ctl_elem_info_t * obj, const char * val) { @@ -7629,7 +7629,7 @@ void glshim_snd_ctl_elem_info_set_name(snd_ctl_elem_info_t * obj, const char * v packed_data.args.a2 = (char *)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_set_name(snd_ctl_elem_info_t * obj, const char * val) __attribute__((alias("glshim_snd_ctl_elem_info_set_name"))); +void snd_ctl_elem_info_set_name(snd_ctl_elem_info_t * obj, const char * val) __attribute__((alias("glshim_snd_ctl_elem_info_set_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_set_numid) && !defined(skip_index_snd_ctl_elem_info_set_numid) void glshim_snd_ctl_elem_info_set_numid(snd_ctl_elem_info_t * obj, unsigned int val) { @@ -7639,7 +7639,7 @@ void glshim_snd_ctl_elem_info_set_numid(snd_ctl_elem_info_t * obj, unsigned int packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_set_numid(snd_ctl_elem_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_info_set_numid"))); +void snd_ctl_elem_info_set_numid(snd_ctl_elem_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_info_set_numid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_set_subdevice) && !defined(skip_index_snd_ctl_elem_info_set_subdevice) void glshim_snd_ctl_elem_info_set_subdevice(snd_ctl_elem_info_t * obj, unsigned int val) { @@ -7649,7 +7649,7 @@ void glshim_snd_ctl_elem_info_set_subdevice(snd_ctl_elem_info_t * obj, unsigned packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_info_set_subdevice(snd_ctl_elem_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_info_set_subdevice"))); +void snd_ctl_elem_info_set_subdevice(snd_ctl_elem_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_info_set_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_info_sizeof) && !defined(skip_index_snd_ctl_elem_info_sizeof) size_t glshim_snd_ctl_elem_info_sizeof() { @@ -7659,7 +7659,7 @@ size_t glshim_snd_ctl_elem_info_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_ctl_elem_info_sizeof() __attribute__((alias("glshim_snd_ctl_elem_info_sizeof"))); +size_t snd_ctl_elem_info_sizeof() __attribute__((alias("glshim_snd_ctl_elem_info_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list) && !defined(skip_index_snd_ctl_elem_list) int glshim_snd_ctl_elem_list(snd_ctl_t * ctl, snd_ctl_elem_list_t * list) { @@ -7671,7 +7671,7 @@ int glshim_snd_ctl_elem_list(snd_ctl_t * ctl, snd_ctl_elem_list_t * list) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_list(snd_ctl_t * ctl, snd_ctl_elem_list_t * list) __attribute__((alias("glshim_snd_ctl_elem_list"))); +int snd_ctl_elem_list(snd_ctl_t * ctl, snd_ctl_elem_list_t * list) __attribute__((alias("glshim_snd_ctl_elem_list"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_alloc_space) && !defined(skip_index_snd_ctl_elem_list_alloc_space) int glshim_snd_ctl_elem_list_alloc_space(snd_ctl_elem_list_t * obj, unsigned int entries) { @@ -7683,7 +7683,7 @@ int glshim_snd_ctl_elem_list_alloc_space(snd_ctl_elem_list_t * obj, unsigned int syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_list_alloc_space(snd_ctl_elem_list_t * obj, unsigned int entries) __attribute__((alias("glshim_snd_ctl_elem_list_alloc_space"))); +int snd_ctl_elem_list_alloc_space(snd_ctl_elem_list_t * obj, unsigned int entries) __attribute__((alias("glshim_snd_ctl_elem_list_alloc_space"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_clear) && !defined(skip_index_snd_ctl_elem_list_clear) void glshim_snd_ctl_elem_list_clear(snd_ctl_elem_list_t * obj) { @@ -7692,7 +7692,7 @@ void glshim_snd_ctl_elem_list_clear(snd_ctl_elem_list_t * obj) { packed_data.args.a1 = (snd_ctl_elem_list_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_list_clear(snd_ctl_elem_list_t * obj) __attribute__((alias("glshim_snd_ctl_elem_list_clear"))); +void snd_ctl_elem_list_clear(snd_ctl_elem_list_t * obj) __attribute__((alias("glshim_snd_ctl_elem_list_clear"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_copy) && !defined(skip_index_snd_ctl_elem_list_copy) void glshim_snd_ctl_elem_list_copy(snd_ctl_elem_list_t * dst, const snd_ctl_elem_list_t * src) { @@ -7702,7 +7702,7 @@ void glshim_snd_ctl_elem_list_copy(snd_ctl_elem_list_t * dst, const snd_ctl_elem packed_data.args.a2 = (snd_ctl_elem_list_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_list_copy(snd_ctl_elem_list_t * dst, const snd_ctl_elem_list_t * src) __attribute__((alias("glshim_snd_ctl_elem_list_copy"))); +void snd_ctl_elem_list_copy(snd_ctl_elem_list_t * dst, const snd_ctl_elem_list_t * src) __attribute__((alias("glshim_snd_ctl_elem_list_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_free) && !defined(skip_index_snd_ctl_elem_list_free) void glshim_snd_ctl_elem_list_free(snd_ctl_elem_list_t * obj) { @@ -7711,7 +7711,7 @@ void glshim_snd_ctl_elem_list_free(snd_ctl_elem_list_t * obj) { packed_data.args.a1 = (snd_ctl_elem_list_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_list_free(snd_ctl_elem_list_t * obj) __attribute__((alias("glshim_snd_ctl_elem_list_free"))); +void snd_ctl_elem_list_free(snd_ctl_elem_list_t * obj) __attribute__((alias("glshim_snd_ctl_elem_list_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_free_space) && !defined(skip_index_snd_ctl_elem_list_free_space) void glshim_snd_ctl_elem_list_free_space(snd_ctl_elem_list_t * obj) { @@ -7720,7 +7720,7 @@ void glshim_snd_ctl_elem_list_free_space(snd_ctl_elem_list_t * obj) { packed_data.args.a1 = (snd_ctl_elem_list_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_list_free_space(snd_ctl_elem_list_t * obj) __attribute__((alias("glshim_snd_ctl_elem_list_free_space"))); +void snd_ctl_elem_list_free_space(snd_ctl_elem_list_t * obj) __attribute__((alias("glshim_snd_ctl_elem_list_free_space"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_get_count) && !defined(skip_index_snd_ctl_elem_list_get_count) unsigned int glshim_snd_ctl_elem_list_get_count(const snd_ctl_elem_list_t * obj) { @@ -7731,7 +7731,7 @@ unsigned int glshim_snd_ctl_elem_list_get_count(const snd_ctl_elem_list_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_list_get_count(const snd_ctl_elem_list_t * obj) __attribute__((alias("glshim_snd_ctl_elem_list_get_count"))); +unsigned int snd_ctl_elem_list_get_count(const snd_ctl_elem_list_t * obj) __attribute__((alias("glshim_snd_ctl_elem_list_get_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_get_device) && !defined(skip_index_snd_ctl_elem_list_get_device) unsigned int glshim_snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t * obj, unsigned int idx) { @@ -7743,7 +7743,7 @@ unsigned int glshim_snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t * obj syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_device"))); +unsigned int snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_get_id) && !defined(skip_index_snd_ctl_elem_list_get_id) void glshim_snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t * obj, unsigned int idx, snd_ctl_elem_id_t * ptr) { @@ -7754,7 +7754,7 @@ void glshim_snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t * obj, unsigned i packed_data.args.a3 = (snd_ctl_elem_id_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t * obj, unsigned int idx, snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_list_get_id"))); +void snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t * obj, unsigned int idx, snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_list_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_get_index) && !defined(skip_index_snd_ctl_elem_list_get_index) unsigned int glshim_snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t * obj, unsigned int idx) { @@ -7766,7 +7766,7 @@ unsigned int glshim_snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t * obj, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_index"))); +unsigned int snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_get_interface) && !defined(skip_index_snd_ctl_elem_list_get_interface) snd_ctl_elem_iface_t glshim_snd_ctl_elem_list_get_interface(const snd_ctl_elem_list_t * obj, unsigned int idx) { @@ -7778,7 +7778,7 @@ snd_ctl_elem_iface_t glshim_snd_ctl_elem_list_get_interface(const snd_ctl_elem_l syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_elem_iface_t snd_ctl_elem_list_get_interface(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_interface"))); +snd_ctl_elem_iface_t snd_ctl_elem_list_get_interface(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_interface"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_get_name) && !defined(skip_index_snd_ctl_elem_list_get_name) const char * glshim_snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t * obj, unsigned int idx) { @@ -7790,7 +7790,7 @@ const char * glshim_snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t * obj, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_name"))); +const char * snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_get_numid) && !defined(skip_index_snd_ctl_elem_list_get_numid) unsigned int glshim_snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t * obj, unsigned int idx) { @@ -7802,7 +7802,7 @@ unsigned int glshim_snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t * obj, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_numid"))); +unsigned int snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_numid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_get_subdevice) && !defined(skip_index_snd_ctl_elem_list_get_subdevice) unsigned int glshim_snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t * obj, unsigned int idx) { @@ -7814,7 +7814,7 @@ unsigned int glshim_snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_subdevice"))); +unsigned int snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_list_get_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_get_used) && !defined(skip_index_snd_ctl_elem_list_get_used) unsigned int glshim_snd_ctl_elem_list_get_used(const snd_ctl_elem_list_t * obj) { @@ -7825,7 +7825,7 @@ unsigned int glshim_snd_ctl_elem_list_get_used(const snd_ctl_elem_list_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_list_get_used(const snd_ctl_elem_list_t * obj) __attribute__((alias("glshim_snd_ctl_elem_list_get_used"))); +unsigned int snd_ctl_elem_list_get_used(const snd_ctl_elem_list_t * obj) __attribute__((alias("glshim_snd_ctl_elem_list_get_used"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_malloc) && !defined(skip_index_snd_ctl_elem_list_malloc) int glshim_snd_ctl_elem_list_malloc(snd_ctl_elem_list_t ** ptr) { @@ -7836,7 +7836,7 @@ int glshim_snd_ctl_elem_list_malloc(snd_ctl_elem_list_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_list_malloc(snd_ctl_elem_list_t ** ptr) __attribute__((alias("glshim_snd_ctl_elem_list_malloc"))); +int snd_ctl_elem_list_malloc(snd_ctl_elem_list_t ** ptr) __attribute__((alias("glshim_snd_ctl_elem_list_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_set_offset) && !defined(skip_index_snd_ctl_elem_list_set_offset) void glshim_snd_ctl_elem_list_set_offset(snd_ctl_elem_list_t * obj, unsigned int val) { @@ -7846,7 +7846,7 @@ void glshim_snd_ctl_elem_list_set_offset(snd_ctl_elem_list_t * obj, unsigned int packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_list_set_offset(snd_ctl_elem_list_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_list_set_offset"))); +void snd_ctl_elem_list_set_offset(snd_ctl_elem_list_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_list_set_offset"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_list_sizeof) && !defined(skip_index_snd_ctl_elem_list_sizeof) size_t glshim_snd_ctl_elem_list_sizeof() { @@ -7856,7 +7856,7 @@ size_t glshim_snd_ctl_elem_list_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_ctl_elem_list_sizeof() __attribute__((alias("glshim_snd_ctl_elem_list_sizeof"))); +size_t snd_ctl_elem_list_sizeof() __attribute__((alias("glshim_snd_ctl_elem_list_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_lock) && !defined(skip_index_snd_ctl_elem_lock) int glshim_snd_ctl_elem_lock(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) { @@ -7868,7 +7868,7 @@ int glshim_snd_ctl_elem_lock(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_lock(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) __attribute__((alias("glshim_snd_ctl_elem_lock"))); +int snd_ctl_elem_lock(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) __attribute__((alias("glshim_snd_ctl_elem_lock"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_read) && !defined(skip_index_snd_ctl_elem_read) int glshim_snd_ctl_elem_read(snd_ctl_t * ctl, snd_ctl_elem_value_t * value) { @@ -7880,7 +7880,7 @@ int glshim_snd_ctl_elem_read(snd_ctl_t * ctl, snd_ctl_elem_value_t * value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_read(snd_ctl_t * ctl, snd_ctl_elem_value_t * value) __attribute__((alias("glshim_snd_ctl_elem_read"))); +int snd_ctl_elem_read(snd_ctl_t * ctl, snd_ctl_elem_value_t * value) __attribute__((alias("glshim_snd_ctl_elem_read"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_remove) && !defined(skip_index_snd_ctl_elem_remove) int glshim_snd_ctl_elem_remove(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) { @@ -7892,7 +7892,7 @@ int glshim_snd_ctl_elem_remove(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_remove(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) __attribute__((alias("glshim_snd_ctl_elem_remove"))); +int snd_ctl_elem_remove(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) __attribute__((alias("glshim_snd_ctl_elem_remove"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_set_bytes) && !defined(skip_index_snd_ctl_elem_set_bytes) void glshim_snd_ctl_elem_set_bytes(snd_ctl_elem_value_t * obj, void * data, size_t size) { @@ -7903,7 +7903,7 @@ void glshim_snd_ctl_elem_set_bytes(snd_ctl_elem_value_t * obj, void * data, size packed_data.args.a3 = (size_t)size; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_set_bytes(snd_ctl_elem_value_t * obj, void * data, size_t size) __attribute__((alias("glshim_snd_ctl_elem_set_bytes"))); +void snd_ctl_elem_set_bytes(snd_ctl_elem_value_t * obj, void * data, size_t size) __attribute__((alias("glshim_snd_ctl_elem_set_bytes"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_tlv_command) && !defined(skip_index_snd_ctl_elem_tlv_command) int glshim_snd_ctl_elem_tlv_command(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, const unsigned int * tlv) { @@ -7916,7 +7916,7 @@ int glshim_snd_ctl_elem_tlv_command(snd_ctl_t * ctl, const snd_ctl_elem_id_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_tlv_command(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, const unsigned int * tlv) __attribute__((alias("glshim_snd_ctl_elem_tlv_command"))); +int snd_ctl_elem_tlv_command(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, const unsigned int * tlv) __attribute__((alias("glshim_snd_ctl_elem_tlv_command"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_tlv_read) && !defined(skip_index_snd_ctl_elem_tlv_read) int glshim_snd_ctl_elem_tlv_read(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int * tlv, unsigned int tlv_size) { @@ -7930,7 +7930,7 @@ int glshim_snd_ctl_elem_tlv_read(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_tlv_read(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int * tlv, unsigned int tlv_size) __attribute__((alias("glshim_snd_ctl_elem_tlv_read"))); +int snd_ctl_elem_tlv_read(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, unsigned int * tlv, unsigned int tlv_size) __attribute__((alias("glshim_snd_ctl_elem_tlv_read"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_tlv_write) && !defined(skip_index_snd_ctl_elem_tlv_write) int glshim_snd_ctl_elem_tlv_write(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, const unsigned int * tlv) { @@ -7943,7 +7943,7 @@ int glshim_snd_ctl_elem_tlv_write(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_tlv_write(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, const unsigned int * tlv) __attribute__((alias("glshim_snd_ctl_elem_tlv_write"))); +int snd_ctl_elem_tlv_write(snd_ctl_t * ctl, const snd_ctl_elem_id_t * id, const unsigned int * tlv) __attribute__((alias("glshim_snd_ctl_elem_tlv_write"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_type_name) && !defined(skip_index_snd_ctl_elem_type_name) const char * glshim_snd_ctl_elem_type_name(snd_ctl_elem_type_t type) { @@ -7954,7 +7954,7 @@ const char * glshim_snd_ctl_elem_type_name(snd_ctl_elem_type_t type) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_elem_type_name(snd_ctl_elem_type_t type) __attribute__((alias("glshim_snd_ctl_elem_type_name"))); +const char * snd_ctl_elem_type_name(snd_ctl_elem_type_t type) __attribute__((alias("glshim_snd_ctl_elem_type_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_unlock) && !defined(skip_index_snd_ctl_elem_unlock) int glshim_snd_ctl_elem_unlock(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) { @@ -7966,7 +7966,7 @@ int glshim_snd_ctl_elem_unlock(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_unlock(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) __attribute__((alias("glshim_snd_ctl_elem_unlock"))); +int snd_ctl_elem_unlock(snd_ctl_t * ctl, snd_ctl_elem_id_t * id) __attribute__((alias("glshim_snd_ctl_elem_unlock"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_clear) && !defined(skip_index_snd_ctl_elem_value_clear) void glshim_snd_ctl_elem_value_clear(snd_ctl_elem_value_t * obj) { @@ -7975,7 +7975,7 @@ void glshim_snd_ctl_elem_value_clear(snd_ctl_elem_value_t * obj) { packed_data.args.a1 = (snd_ctl_elem_value_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_clear(snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_clear"))); +void snd_ctl_elem_value_clear(snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_clear"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_copy) && !defined(skip_index_snd_ctl_elem_value_copy) void glshim_snd_ctl_elem_value_copy(snd_ctl_elem_value_t * dst, const snd_ctl_elem_value_t * src) { @@ -7985,7 +7985,7 @@ void glshim_snd_ctl_elem_value_copy(snd_ctl_elem_value_t * dst, const snd_ctl_el packed_data.args.a2 = (snd_ctl_elem_value_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_copy(snd_ctl_elem_value_t * dst, const snd_ctl_elem_value_t * src) __attribute__((alias("glshim_snd_ctl_elem_value_copy"))); +void snd_ctl_elem_value_copy(snd_ctl_elem_value_t * dst, const snd_ctl_elem_value_t * src) __attribute__((alias("glshim_snd_ctl_elem_value_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_free) && !defined(skip_index_snd_ctl_elem_value_free) void glshim_snd_ctl_elem_value_free(snd_ctl_elem_value_t * obj) { @@ -7994,7 +7994,7 @@ void glshim_snd_ctl_elem_value_free(snd_ctl_elem_value_t * obj) { packed_data.args.a1 = (snd_ctl_elem_value_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_free(snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_free"))); +void snd_ctl_elem_value_free(snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_boolean) && !defined(skip_index_snd_ctl_elem_value_get_boolean) int glshim_snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t * obj, unsigned int idx) { @@ -8006,7 +8006,7 @@ int glshim_snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t * obj, unsi syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_value_get_boolean"))); +int snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_value_get_boolean"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_byte) && !defined(skip_index_snd_ctl_elem_value_get_byte) unsigned char glshim_snd_ctl_elem_value_get_byte(const snd_ctl_elem_value_t * obj, unsigned int idx) { @@ -8018,7 +8018,7 @@ unsigned char glshim_snd_ctl_elem_value_get_byte(const snd_ctl_elem_value_t * ob syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned char snd_ctl_elem_value_get_byte(const snd_ctl_elem_value_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_value_get_byte"))); +unsigned char snd_ctl_elem_value_get_byte(const snd_ctl_elem_value_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_value_get_byte"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_bytes) && !defined(skip_index_snd_ctl_elem_value_get_bytes) const void * glshim_snd_ctl_elem_value_get_bytes(const snd_ctl_elem_value_t * obj) { @@ -8029,7 +8029,7 @@ const void * glshim_snd_ctl_elem_value_get_bytes(const snd_ctl_elem_value_t * ob syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const void * snd_ctl_elem_value_get_bytes(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_bytes"))); +const void * snd_ctl_elem_value_get_bytes(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_bytes"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_device) && !defined(skip_index_snd_ctl_elem_value_get_device) unsigned int glshim_snd_ctl_elem_value_get_device(const snd_ctl_elem_value_t * obj) { @@ -8040,7 +8040,7 @@ unsigned int glshim_snd_ctl_elem_value_get_device(const snd_ctl_elem_value_t * o syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_value_get_device(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_device"))); +unsigned int snd_ctl_elem_value_get_device(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_enumerated) && !defined(skip_index_snd_ctl_elem_value_get_enumerated) unsigned int glshim_snd_ctl_elem_value_get_enumerated(const snd_ctl_elem_value_t * obj, unsigned int idx) { @@ -8052,7 +8052,7 @@ unsigned int glshim_snd_ctl_elem_value_get_enumerated(const snd_ctl_elem_value_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_value_get_enumerated(const snd_ctl_elem_value_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_value_get_enumerated"))); +unsigned int snd_ctl_elem_value_get_enumerated(const snd_ctl_elem_value_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_value_get_enumerated"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_id) && !defined(skip_index_snd_ctl_elem_value_get_id) void glshim_snd_ctl_elem_value_get_id(const snd_ctl_elem_value_t * obj, snd_ctl_elem_id_t * ptr) { @@ -8062,7 +8062,7 @@ void glshim_snd_ctl_elem_value_get_id(const snd_ctl_elem_value_t * obj, snd_ctl_ packed_data.args.a2 = (snd_ctl_elem_id_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_get_id(const snd_ctl_elem_value_t * obj, snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_value_get_id"))); +void snd_ctl_elem_value_get_id(const snd_ctl_elem_value_t * obj, snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_value_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_iec958) && !defined(skip_index_snd_ctl_elem_value_get_iec958) void glshim_snd_ctl_elem_value_get_iec958(const snd_ctl_elem_value_t * obj, snd_aes_iec958_t * ptr) { @@ -8072,7 +8072,7 @@ void glshim_snd_ctl_elem_value_get_iec958(const snd_ctl_elem_value_t * obj, snd_ packed_data.args.a2 = (snd_aes_iec958_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_get_iec958(const snd_ctl_elem_value_t * obj, snd_aes_iec958_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_value_get_iec958"))); +void snd_ctl_elem_value_get_iec958(const snd_ctl_elem_value_t * obj, snd_aes_iec958_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_value_get_iec958"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_index) && !defined(skip_index_snd_ctl_elem_value_get_index) unsigned int glshim_snd_ctl_elem_value_get_index(const snd_ctl_elem_value_t * obj) { @@ -8083,7 +8083,7 @@ unsigned int glshim_snd_ctl_elem_value_get_index(const snd_ctl_elem_value_t * ob syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_value_get_index(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_index"))); +unsigned int snd_ctl_elem_value_get_index(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_integer) && !defined(skip_index_snd_ctl_elem_value_get_integer) long glshim_snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t * obj, unsigned int idx) { @@ -8095,7 +8095,7 @@ long glshim_snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t * obj, uns syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_value_get_integer"))); +long snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_value_get_integer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_integer64) && !defined(skip_index_snd_ctl_elem_value_get_integer64) long long glshim_snd_ctl_elem_value_get_integer64(const snd_ctl_elem_value_t * obj, unsigned int idx) { @@ -8107,7 +8107,7 @@ long long glshim_snd_ctl_elem_value_get_integer64(const snd_ctl_elem_value_t * o syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long long snd_ctl_elem_value_get_integer64(const snd_ctl_elem_value_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_value_get_integer64"))); +long long snd_ctl_elem_value_get_integer64(const snd_ctl_elem_value_t * obj, unsigned int idx) __attribute__((alias("glshim_snd_ctl_elem_value_get_integer64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_interface) && !defined(skip_index_snd_ctl_elem_value_get_interface) snd_ctl_elem_iface_t glshim_snd_ctl_elem_value_get_interface(const snd_ctl_elem_value_t * obj) { @@ -8118,7 +8118,7 @@ snd_ctl_elem_iface_t glshim_snd_ctl_elem_value_get_interface(const snd_ctl_elem_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_elem_iface_t snd_ctl_elem_value_get_interface(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_interface"))); +snd_ctl_elem_iface_t snd_ctl_elem_value_get_interface(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_interface"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_name) && !defined(skip_index_snd_ctl_elem_value_get_name) const char * glshim_snd_ctl_elem_value_get_name(const snd_ctl_elem_value_t * obj) { @@ -8129,7 +8129,7 @@ const char * glshim_snd_ctl_elem_value_get_name(const snd_ctl_elem_value_t * obj syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_elem_value_get_name(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_name"))); +const char * snd_ctl_elem_value_get_name(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_numid) && !defined(skip_index_snd_ctl_elem_value_get_numid) unsigned int glshim_snd_ctl_elem_value_get_numid(const snd_ctl_elem_value_t * obj) { @@ -8140,7 +8140,7 @@ unsigned int glshim_snd_ctl_elem_value_get_numid(const snd_ctl_elem_value_t * ob syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_value_get_numid(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_numid"))); +unsigned int snd_ctl_elem_value_get_numid(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_numid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_get_subdevice) && !defined(skip_index_snd_ctl_elem_value_get_subdevice) unsigned int glshim_snd_ctl_elem_value_get_subdevice(const snd_ctl_elem_value_t * obj) { @@ -8151,7 +8151,7 @@ unsigned int glshim_snd_ctl_elem_value_get_subdevice(const snd_ctl_elem_value_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_elem_value_get_subdevice(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_subdevice"))); +unsigned int snd_ctl_elem_value_get_subdevice(const snd_ctl_elem_value_t * obj) __attribute__((alias("glshim_snd_ctl_elem_value_get_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_malloc) && !defined(skip_index_snd_ctl_elem_value_malloc) int glshim_snd_ctl_elem_value_malloc(snd_ctl_elem_value_t ** ptr) { @@ -8162,7 +8162,7 @@ int glshim_snd_ctl_elem_value_malloc(snd_ctl_elem_value_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_value_malloc(snd_ctl_elem_value_t ** ptr) __attribute__((alias("glshim_snd_ctl_elem_value_malloc"))); +int snd_ctl_elem_value_malloc(snd_ctl_elem_value_t ** ptr) __attribute__((alias("glshim_snd_ctl_elem_value_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_boolean) && !defined(skip_index_snd_ctl_elem_value_set_boolean) void glshim_snd_ctl_elem_value_set_boolean(snd_ctl_elem_value_t * obj, unsigned int idx, long val) { @@ -8173,7 +8173,7 @@ void glshim_snd_ctl_elem_value_set_boolean(snd_ctl_elem_value_t * obj, unsigned packed_data.args.a3 = (long)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_boolean(snd_ctl_elem_value_t * obj, unsigned int idx, long val) __attribute__((alias("glshim_snd_ctl_elem_value_set_boolean"))); +void snd_ctl_elem_value_set_boolean(snd_ctl_elem_value_t * obj, unsigned int idx, long val) __attribute__((alias("glshim_snd_ctl_elem_value_set_boolean"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_byte) && !defined(skip_index_snd_ctl_elem_value_set_byte) void glshim_snd_ctl_elem_value_set_byte(snd_ctl_elem_value_t * obj, unsigned int idx, unsigned char val) { @@ -8184,7 +8184,7 @@ void glshim_snd_ctl_elem_value_set_byte(snd_ctl_elem_value_t * obj, unsigned int packed_data.args.a3 = (unsigned char)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_byte(snd_ctl_elem_value_t * obj, unsigned int idx, unsigned char val) __attribute__((alias("glshim_snd_ctl_elem_value_set_byte"))); +void snd_ctl_elem_value_set_byte(snd_ctl_elem_value_t * obj, unsigned int idx, unsigned char val) __attribute__((alias("glshim_snd_ctl_elem_value_set_byte"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_device) && !defined(skip_index_snd_ctl_elem_value_set_device) void glshim_snd_ctl_elem_value_set_device(snd_ctl_elem_value_t * obj, unsigned int val) { @@ -8194,7 +8194,7 @@ void glshim_snd_ctl_elem_value_set_device(snd_ctl_elem_value_t * obj, unsigned i packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_device(snd_ctl_elem_value_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_value_set_device"))); +void snd_ctl_elem_value_set_device(snd_ctl_elem_value_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_value_set_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_enumerated) && !defined(skip_index_snd_ctl_elem_value_set_enumerated) void glshim_snd_ctl_elem_value_set_enumerated(snd_ctl_elem_value_t * obj, unsigned int idx, unsigned int val) { @@ -8205,7 +8205,7 @@ void glshim_snd_ctl_elem_value_set_enumerated(snd_ctl_elem_value_t * obj, unsign packed_data.args.a3 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_enumerated(snd_ctl_elem_value_t * obj, unsigned int idx, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_value_set_enumerated"))); +void snd_ctl_elem_value_set_enumerated(snd_ctl_elem_value_t * obj, unsigned int idx, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_value_set_enumerated"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_id) && !defined(skip_index_snd_ctl_elem_value_set_id) void glshim_snd_ctl_elem_value_set_id(snd_ctl_elem_value_t * obj, const snd_ctl_elem_id_t * ptr) { @@ -8215,7 +8215,7 @@ void glshim_snd_ctl_elem_value_set_id(snd_ctl_elem_value_t * obj, const snd_ctl_ packed_data.args.a2 = (snd_ctl_elem_id_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_id(snd_ctl_elem_value_t * obj, const snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_value_set_id"))); +void snd_ctl_elem_value_set_id(snd_ctl_elem_value_t * obj, const snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_value_set_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_iec958) && !defined(skip_index_snd_ctl_elem_value_set_iec958) void glshim_snd_ctl_elem_value_set_iec958(snd_ctl_elem_value_t * obj, const snd_aes_iec958_t * ptr) { @@ -8225,7 +8225,7 @@ void glshim_snd_ctl_elem_value_set_iec958(snd_ctl_elem_value_t * obj, const snd_ packed_data.args.a2 = (snd_aes_iec958_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_iec958(snd_ctl_elem_value_t * obj, const snd_aes_iec958_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_value_set_iec958"))); +void snd_ctl_elem_value_set_iec958(snd_ctl_elem_value_t * obj, const snd_aes_iec958_t * ptr) __attribute__((alias("glshim_snd_ctl_elem_value_set_iec958"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_index) && !defined(skip_index_snd_ctl_elem_value_set_index) void glshim_snd_ctl_elem_value_set_index(snd_ctl_elem_value_t * obj, unsigned int val) { @@ -8235,7 +8235,7 @@ void glshim_snd_ctl_elem_value_set_index(snd_ctl_elem_value_t * obj, unsigned in packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_index(snd_ctl_elem_value_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_value_set_index"))); +void snd_ctl_elem_value_set_index(snd_ctl_elem_value_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_value_set_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_integer) && !defined(skip_index_snd_ctl_elem_value_set_integer) void glshim_snd_ctl_elem_value_set_integer(snd_ctl_elem_value_t * obj, unsigned int idx, long val) { @@ -8246,7 +8246,7 @@ void glshim_snd_ctl_elem_value_set_integer(snd_ctl_elem_value_t * obj, unsigned packed_data.args.a3 = (long)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_integer(snd_ctl_elem_value_t * obj, unsigned int idx, long val) __attribute__((alias("glshim_snd_ctl_elem_value_set_integer"))); +void snd_ctl_elem_value_set_integer(snd_ctl_elem_value_t * obj, unsigned int idx, long val) __attribute__((alias("glshim_snd_ctl_elem_value_set_integer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_integer64) && !defined(skip_index_snd_ctl_elem_value_set_integer64) void glshim_snd_ctl_elem_value_set_integer64(snd_ctl_elem_value_t * obj, unsigned int idx, long long val) { @@ -8257,7 +8257,7 @@ void glshim_snd_ctl_elem_value_set_integer64(snd_ctl_elem_value_t * obj, unsigne packed_data.args.a3 = (long long)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_integer64(snd_ctl_elem_value_t * obj, unsigned int idx, long long val) __attribute__((alias("glshim_snd_ctl_elem_value_set_integer64"))); +void snd_ctl_elem_value_set_integer64(snd_ctl_elem_value_t * obj, unsigned int idx, long long val) __attribute__((alias("glshim_snd_ctl_elem_value_set_integer64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_interface) && !defined(skip_index_snd_ctl_elem_value_set_interface) void glshim_snd_ctl_elem_value_set_interface(snd_ctl_elem_value_t * obj, snd_ctl_elem_iface_t val) { @@ -8267,7 +8267,7 @@ void glshim_snd_ctl_elem_value_set_interface(snd_ctl_elem_value_t * obj, snd_ctl packed_data.args.a2 = (snd_ctl_elem_iface_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_interface(snd_ctl_elem_value_t * obj, snd_ctl_elem_iface_t val) __attribute__((alias("glshim_snd_ctl_elem_value_set_interface"))); +void snd_ctl_elem_value_set_interface(snd_ctl_elem_value_t * obj, snd_ctl_elem_iface_t val) __attribute__((alias("glshim_snd_ctl_elem_value_set_interface"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_name) && !defined(skip_index_snd_ctl_elem_value_set_name) void glshim_snd_ctl_elem_value_set_name(snd_ctl_elem_value_t * obj, const char * val) { @@ -8277,7 +8277,7 @@ void glshim_snd_ctl_elem_value_set_name(snd_ctl_elem_value_t * obj, const char * packed_data.args.a2 = (char *)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_name(snd_ctl_elem_value_t * obj, const char * val) __attribute__((alias("glshim_snd_ctl_elem_value_set_name"))); +void snd_ctl_elem_value_set_name(snd_ctl_elem_value_t * obj, const char * val) __attribute__((alias("glshim_snd_ctl_elem_value_set_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_numid) && !defined(skip_index_snd_ctl_elem_value_set_numid) void glshim_snd_ctl_elem_value_set_numid(snd_ctl_elem_value_t * obj, unsigned int val) { @@ -8287,7 +8287,7 @@ void glshim_snd_ctl_elem_value_set_numid(snd_ctl_elem_value_t * obj, unsigned in packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_numid(snd_ctl_elem_value_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_value_set_numid"))); +void snd_ctl_elem_value_set_numid(snd_ctl_elem_value_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_value_set_numid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_set_subdevice) && !defined(skip_index_snd_ctl_elem_value_set_subdevice) void glshim_snd_ctl_elem_value_set_subdevice(snd_ctl_elem_value_t * obj, unsigned int val) { @@ -8297,7 +8297,7 @@ void glshim_snd_ctl_elem_value_set_subdevice(snd_ctl_elem_value_t * obj, unsigne packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_elem_value_set_subdevice(snd_ctl_elem_value_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_value_set_subdevice"))); +void snd_ctl_elem_value_set_subdevice(snd_ctl_elem_value_t * obj, unsigned int val) __attribute__((alias("glshim_snd_ctl_elem_value_set_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_value_sizeof) && !defined(skip_index_snd_ctl_elem_value_sizeof) size_t glshim_snd_ctl_elem_value_sizeof() { @@ -8307,7 +8307,7 @@ size_t glshim_snd_ctl_elem_value_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_ctl_elem_value_sizeof() __attribute__((alias("glshim_snd_ctl_elem_value_sizeof"))); +size_t snd_ctl_elem_value_sizeof() __attribute__((alias("glshim_snd_ctl_elem_value_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_elem_write) && !defined(skip_index_snd_ctl_elem_write) int glshim_snd_ctl_elem_write(snd_ctl_t * ctl, snd_ctl_elem_value_t * value) { @@ -8319,7 +8319,7 @@ int glshim_snd_ctl_elem_write(snd_ctl_t * ctl, snd_ctl_elem_value_t * value) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_elem_write(snd_ctl_t * ctl, snd_ctl_elem_value_t * value) __attribute__((alias("glshim_snd_ctl_elem_write"))); +int snd_ctl_elem_write(snd_ctl_t * ctl, snd_ctl_elem_value_t * value) __attribute__((alias("glshim_snd_ctl_elem_write"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_clear) && !defined(skip_index_snd_ctl_event_clear) void glshim_snd_ctl_event_clear(snd_ctl_event_t * obj) { @@ -8328,7 +8328,7 @@ void glshim_snd_ctl_event_clear(snd_ctl_event_t * obj) { packed_data.args.a1 = (snd_ctl_event_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_event_clear(snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_clear"))); +void snd_ctl_event_clear(snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_clear"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_copy) && !defined(skip_index_snd_ctl_event_copy) void glshim_snd_ctl_event_copy(snd_ctl_event_t * dst, const snd_ctl_event_t * src) { @@ -8338,7 +8338,7 @@ void glshim_snd_ctl_event_copy(snd_ctl_event_t * dst, const snd_ctl_event_t * sr packed_data.args.a2 = (snd_ctl_event_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_event_copy(snd_ctl_event_t * dst, const snd_ctl_event_t * src) __attribute__((alias("glshim_snd_ctl_event_copy"))); +void snd_ctl_event_copy(snd_ctl_event_t * dst, const snd_ctl_event_t * src) __attribute__((alias("glshim_snd_ctl_event_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_elem_get_device) && !defined(skip_index_snd_ctl_event_elem_get_device) unsigned int glshim_snd_ctl_event_elem_get_device(const snd_ctl_event_t * obj) { @@ -8349,7 +8349,7 @@ unsigned int glshim_snd_ctl_event_elem_get_device(const snd_ctl_event_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_event_elem_get_device(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_device"))); +unsigned int snd_ctl_event_elem_get_device(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_elem_get_id) && !defined(skip_index_snd_ctl_event_elem_get_id) void glshim_snd_ctl_event_elem_get_id(const snd_ctl_event_t * obj, snd_ctl_elem_id_t * ptr) { @@ -8359,7 +8359,7 @@ void glshim_snd_ctl_event_elem_get_id(const snd_ctl_event_t * obj, snd_ctl_elem_ packed_data.args.a2 = (snd_ctl_elem_id_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_event_elem_get_id(const snd_ctl_event_t * obj, snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_event_elem_get_id"))); +void snd_ctl_event_elem_get_id(const snd_ctl_event_t * obj, snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_ctl_event_elem_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_elem_get_index) && !defined(skip_index_snd_ctl_event_elem_get_index) unsigned int glshim_snd_ctl_event_elem_get_index(const snd_ctl_event_t * obj) { @@ -8370,7 +8370,7 @@ unsigned int glshim_snd_ctl_event_elem_get_index(const snd_ctl_event_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_event_elem_get_index(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_index"))); +unsigned int snd_ctl_event_elem_get_index(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_elem_get_interface) && !defined(skip_index_snd_ctl_event_elem_get_interface) snd_ctl_elem_iface_t glshim_snd_ctl_event_elem_get_interface(const snd_ctl_event_t * obj) { @@ -8381,7 +8381,7 @@ snd_ctl_elem_iface_t glshim_snd_ctl_event_elem_get_interface(const snd_ctl_event syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_elem_iface_t snd_ctl_event_elem_get_interface(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_interface"))); +snd_ctl_elem_iface_t snd_ctl_event_elem_get_interface(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_interface"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_elem_get_mask) && !defined(skip_index_snd_ctl_event_elem_get_mask) unsigned int glshim_snd_ctl_event_elem_get_mask(const snd_ctl_event_t * obj) { @@ -8392,7 +8392,7 @@ unsigned int glshim_snd_ctl_event_elem_get_mask(const snd_ctl_event_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_event_elem_get_mask(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_mask"))); +unsigned int snd_ctl_event_elem_get_mask(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_mask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_elem_get_name) && !defined(skip_index_snd_ctl_event_elem_get_name) const char * glshim_snd_ctl_event_elem_get_name(const snd_ctl_event_t * obj) { @@ -8403,7 +8403,7 @@ const char * glshim_snd_ctl_event_elem_get_name(const snd_ctl_event_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_event_elem_get_name(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_name"))); +const char * snd_ctl_event_elem_get_name(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_elem_get_numid) && !defined(skip_index_snd_ctl_event_elem_get_numid) unsigned int glshim_snd_ctl_event_elem_get_numid(const snd_ctl_event_t * obj) { @@ -8414,7 +8414,7 @@ unsigned int glshim_snd_ctl_event_elem_get_numid(const snd_ctl_event_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_event_elem_get_numid(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_numid"))); +unsigned int snd_ctl_event_elem_get_numid(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_numid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_elem_get_subdevice) && !defined(skip_index_snd_ctl_event_elem_get_subdevice) unsigned int glshim_snd_ctl_event_elem_get_subdevice(const snd_ctl_event_t * obj) { @@ -8425,7 +8425,7 @@ unsigned int glshim_snd_ctl_event_elem_get_subdevice(const snd_ctl_event_t * obj syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_ctl_event_elem_get_subdevice(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_subdevice"))); +unsigned int snd_ctl_event_elem_get_subdevice(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_elem_get_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_free) && !defined(skip_index_snd_ctl_event_free) void glshim_snd_ctl_event_free(snd_ctl_event_t * obj) { @@ -8434,7 +8434,7 @@ void glshim_snd_ctl_event_free(snd_ctl_event_t * obj) { packed_data.args.a1 = (snd_ctl_event_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_ctl_event_free(snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_free"))); +void snd_ctl_event_free(snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_get_type) && !defined(skip_index_snd_ctl_event_get_type) snd_ctl_event_type_t glshim_snd_ctl_event_get_type(const snd_ctl_event_t * obj) { @@ -8445,7 +8445,7 @@ snd_ctl_event_type_t glshim_snd_ctl_event_get_type(const snd_ctl_event_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_event_type_t snd_ctl_event_get_type(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_get_type"))); +snd_ctl_event_type_t snd_ctl_event_get_type(const snd_ctl_event_t * obj) __attribute__((alias("glshim_snd_ctl_event_get_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_malloc) && !defined(skip_index_snd_ctl_event_malloc) int glshim_snd_ctl_event_malloc(snd_ctl_event_t ** ptr) { @@ -8456,7 +8456,7 @@ int glshim_snd_ctl_event_malloc(snd_ctl_event_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_event_malloc(snd_ctl_event_t ** ptr) __attribute__((alias("glshim_snd_ctl_event_malloc"))); +int snd_ctl_event_malloc(snd_ctl_event_t ** ptr) __attribute__((alias("glshim_snd_ctl_event_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_sizeof) && !defined(skip_index_snd_ctl_event_sizeof) size_t glshim_snd_ctl_event_sizeof() { @@ -8466,7 +8466,7 @@ size_t glshim_snd_ctl_event_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_ctl_event_sizeof() __attribute__((alias("glshim_snd_ctl_event_sizeof"))); +size_t snd_ctl_event_sizeof() __attribute__((alias("glshim_snd_ctl_event_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_event_type_name) && !defined(skip_index_snd_ctl_event_type_name) const char * glshim_snd_ctl_event_type_name(snd_ctl_event_type_t type) { @@ -8477,7 +8477,7 @@ const char * glshim_snd_ctl_event_type_name(snd_ctl_event_type_t type) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_event_type_name(snd_ctl_event_type_t type) __attribute__((alias("glshim_snd_ctl_event_type_name"))); +const char * snd_ctl_event_type_name(snd_ctl_event_type_t type) __attribute__((alias("glshim_snd_ctl_event_type_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_get_power_state) && !defined(skip_index_snd_ctl_get_power_state) int glshim_snd_ctl_get_power_state(snd_ctl_t * ctl, unsigned int * state) { @@ -8489,7 +8489,7 @@ int glshim_snd_ctl_get_power_state(snd_ctl_t * ctl, unsigned int * state) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_get_power_state(snd_ctl_t * ctl, unsigned int * state) __attribute__((alias("glshim_snd_ctl_get_power_state"))); +int snd_ctl_get_power_state(snd_ctl_t * ctl, unsigned int * state) __attribute__((alias("glshim_snd_ctl_get_power_state"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_hwdep_info) && !defined(skip_index_snd_ctl_hwdep_info) int glshim_snd_ctl_hwdep_info(snd_ctl_t * ctl, snd_hwdep_info_t * info) { @@ -8501,7 +8501,7 @@ int glshim_snd_ctl_hwdep_info(snd_ctl_t * ctl, snd_hwdep_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_hwdep_info(snd_ctl_t * ctl, snd_hwdep_info_t * info) __attribute__((alias("glshim_snd_ctl_hwdep_info"))); +int snd_ctl_hwdep_info(snd_ctl_t * ctl, snd_hwdep_info_t * info) __attribute__((alias("glshim_snd_ctl_hwdep_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_hwdep_next_device) && !defined(skip_index_snd_ctl_hwdep_next_device) int glshim_snd_ctl_hwdep_next_device(snd_ctl_t * ctl, int * device) { @@ -8513,7 +8513,7 @@ int glshim_snd_ctl_hwdep_next_device(snd_ctl_t * ctl, int * device) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_hwdep_next_device(snd_ctl_t * ctl, int * device) __attribute__((alias("glshim_snd_ctl_hwdep_next_device"))); +int snd_ctl_hwdep_next_device(snd_ctl_t * ctl, int * device) __attribute__((alias("glshim_snd_ctl_hwdep_next_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_name) && !defined(skip_index_snd_ctl_name) const char * glshim_snd_ctl_name(snd_ctl_t * ctl) { @@ -8524,7 +8524,7 @@ const char * glshim_snd_ctl_name(snd_ctl_t * ctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_ctl_name(snd_ctl_t * ctl) __attribute__((alias("glshim_snd_ctl_name"))); +const char * snd_ctl_name(snd_ctl_t * ctl) __attribute__((alias("glshim_snd_ctl_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_nonblock) && !defined(skip_index_snd_ctl_nonblock) int glshim_snd_ctl_nonblock(snd_ctl_t * ctl, int nonblock) { @@ -8536,7 +8536,7 @@ int glshim_snd_ctl_nonblock(snd_ctl_t * ctl, int nonblock) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_nonblock(snd_ctl_t * ctl, int nonblock) __attribute__((alias("glshim_snd_ctl_nonblock"))); +int snd_ctl_nonblock(snd_ctl_t * ctl, int nonblock) __attribute__((alias("glshim_snd_ctl_nonblock"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_open) && !defined(skip_index_snd_ctl_open) int glshim_snd_ctl_open(snd_ctl_t ** ctl, const char * name, int mode) { @@ -8549,7 +8549,7 @@ int glshim_snd_ctl_open(snd_ctl_t ** ctl, const char * name, int mode) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_open(snd_ctl_t ** ctl, const char * name, int mode) __attribute__((alias("glshim_snd_ctl_open"))); +int snd_ctl_open(snd_ctl_t ** ctl, const char * name, int mode) __attribute__((alias("glshim_snd_ctl_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_open_lconf) && !defined(skip_index_snd_ctl_open_lconf) int glshim_snd_ctl_open_lconf(snd_ctl_t ** ctl, const char * name, int mode, snd_config_t * lconf) { @@ -8563,7 +8563,7 @@ int glshim_snd_ctl_open_lconf(snd_ctl_t ** ctl, const char * name, int mode, snd syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_open_lconf(snd_ctl_t ** ctl, const char * name, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_ctl_open_lconf"))); +int snd_ctl_open_lconf(snd_ctl_t ** ctl, const char * name, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_ctl_open_lconf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_pcm_info) && !defined(skip_index_snd_ctl_pcm_info) int glshim_snd_ctl_pcm_info(snd_ctl_t * ctl, snd_pcm_info_t * info) { @@ -8575,7 +8575,7 @@ int glshim_snd_ctl_pcm_info(snd_ctl_t * ctl, snd_pcm_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_pcm_info(snd_ctl_t * ctl, snd_pcm_info_t * info) __attribute__((alias("glshim_snd_ctl_pcm_info"))); +int snd_ctl_pcm_info(snd_ctl_t * ctl, snd_pcm_info_t * info) __attribute__((alias("glshim_snd_ctl_pcm_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_pcm_next_device) && !defined(skip_index_snd_ctl_pcm_next_device) int glshim_snd_ctl_pcm_next_device(snd_ctl_t * ctl, int * device) { @@ -8587,7 +8587,7 @@ int glshim_snd_ctl_pcm_next_device(snd_ctl_t * ctl, int * device) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_pcm_next_device(snd_ctl_t * ctl, int * device) __attribute__((alias("glshim_snd_ctl_pcm_next_device"))); +int snd_ctl_pcm_next_device(snd_ctl_t * ctl, int * device) __attribute__((alias("glshim_snd_ctl_pcm_next_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_pcm_prefer_subdevice) && !defined(skip_index_snd_ctl_pcm_prefer_subdevice) int glshim_snd_ctl_pcm_prefer_subdevice(snd_ctl_t * ctl, int subdev) { @@ -8599,7 +8599,7 @@ int glshim_snd_ctl_pcm_prefer_subdevice(snd_ctl_t * ctl, int subdev) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_pcm_prefer_subdevice(snd_ctl_t * ctl, int subdev) __attribute__((alias("glshim_snd_ctl_pcm_prefer_subdevice"))); +int snd_ctl_pcm_prefer_subdevice(snd_ctl_t * ctl, int subdev) __attribute__((alias("glshim_snd_ctl_pcm_prefer_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_poll_descriptors) && !defined(skip_index_snd_ctl_poll_descriptors) int glshim_snd_ctl_poll_descriptors(snd_ctl_t * ctl, struct pollfd * pfds, unsigned int space) { @@ -8612,7 +8612,7 @@ int glshim_snd_ctl_poll_descriptors(snd_ctl_t * ctl, struct pollfd * pfds, unsig syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_poll_descriptors(snd_ctl_t * ctl, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_ctl_poll_descriptors"))); +int snd_ctl_poll_descriptors(snd_ctl_t * ctl, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_ctl_poll_descriptors"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_poll_descriptors_count) && !defined(skip_index_snd_ctl_poll_descriptors_count) int glshim_snd_ctl_poll_descriptors_count(snd_ctl_t * ctl) { @@ -8623,7 +8623,7 @@ int glshim_snd_ctl_poll_descriptors_count(snd_ctl_t * ctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_poll_descriptors_count(snd_ctl_t * ctl) __attribute__((alias("glshim_snd_ctl_poll_descriptors_count"))); +int snd_ctl_poll_descriptors_count(snd_ctl_t * ctl) __attribute__((alias("glshim_snd_ctl_poll_descriptors_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_poll_descriptors_revents) && !defined(skip_index_snd_ctl_poll_descriptors_revents) int glshim_snd_ctl_poll_descriptors_revents(snd_ctl_t * ctl, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) { @@ -8637,7 +8637,7 @@ int glshim_snd_ctl_poll_descriptors_revents(snd_ctl_t * ctl, struct pollfd * pfd syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_poll_descriptors_revents(snd_ctl_t * ctl, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_ctl_poll_descriptors_revents"))); +int snd_ctl_poll_descriptors_revents(snd_ctl_t * ctl, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_ctl_poll_descriptors_revents"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_rawmidi_info) && !defined(skip_index_snd_ctl_rawmidi_info) int glshim_snd_ctl_rawmidi_info(snd_ctl_t * ctl, snd_rawmidi_info_t * info) { @@ -8649,7 +8649,7 @@ int glshim_snd_ctl_rawmidi_info(snd_ctl_t * ctl, snd_rawmidi_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_rawmidi_info(snd_ctl_t * ctl, snd_rawmidi_info_t * info) __attribute__((alias("glshim_snd_ctl_rawmidi_info"))); +int snd_ctl_rawmidi_info(snd_ctl_t * ctl, snd_rawmidi_info_t * info) __attribute__((alias("glshim_snd_ctl_rawmidi_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_rawmidi_next_device) && !defined(skip_index_snd_ctl_rawmidi_next_device) int glshim_snd_ctl_rawmidi_next_device(snd_ctl_t * ctl, int * device) { @@ -8661,7 +8661,7 @@ int glshim_snd_ctl_rawmidi_next_device(snd_ctl_t * ctl, int * device) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_rawmidi_next_device(snd_ctl_t * ctl, int * device) __attribute__((alias("glshim_snd_ctl_rawmidi_next_device"))); +int snd_ctl_rawmidi_next_device(snd_ctl_t * ctl, int * device) __attribute__((alias("glshim_snd_ctl_rawmidi_next_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_rawmidi_prefer_subdevice) && !defined(skip_index_snd_ctl_rawmidi_prefer_subdevice) int glshim_snd_ctl_rawmidi_prefer_subdevice(snd_ctl_t * ctl, int subdev) { @@ -8673,7 +8673,7 @@ int glshim_snd_ctl_rawmidi_prefer_subdevice(snd_ctl_t * ctl, int subdev) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_rawmidi_prefer_subdevice(snd_ctl_t * ctl, int subdev) __attribute__((alias("glshim_snd_ctl_rawmidi_prefer_subdevice"))); +int snd_ctl_rawmidi_prefer_subdevice(snd_ctl_t * ctl, int subdev) __attribute__((alias("glshim_snd_ctl_rawmidi_prefer_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_read) && !defined(skip_index_snd_ctl_read) int glshim_snd_ctl_read(snd_ctl_t * ctl, snd_ctl_event_t * event) { @@ -8685,7 +8685,7 @@ int glshim_snd_ctl_read(snd_ctl_t * ctl, snd_ctl_event_t * event) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_read(snd_ctl_t * ctl, snd_ctl_event_t * event) __attribute__((alias("glshim_snd_ctl_read"))); +int snd_ctl_read(snd_ctl_t * ctl, snd_ctl_event_t * event) __attribute__((alias("glshim_snd_ctl_read"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_set_power_state) && !defined(skip_index_snd_ctl_set_power_state) int glshim_snd_ctl_set_power_state(snd_ctl_t * ctl, unsigned int state) { @@ -8697,7 +8697,7 @@ int glshim_snd_ctl_set_power_state(snd_ctl_t * ctl, unsigned int state) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_set_power_state(snd_ctl_t * ctl, unsigned int state) __attribute__((alias("glshim_snd_ctl_set_power_state"))); +int snd_ctl_set_power_state(snd_ctl_t * ctl, unsigned int state) __attribute__((alias("glshim_snd_ctl_set_power_state"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_subscribe_events) && !defined(skip_index_snd_ctl_subscribe_events) int glshim_snd_ctl_subscribe_events(snd_ctl_t * ctl, int subscribe) { @@ -8709,7 +8709,7 @@ int glshim_snd_ctl_subscribe_events(snd_ctl_t * ctl, int subscribe) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_subscribe_events(snd_ctl_t * ctl, int subscribe) __attribute__((alias("glshim_snd_ctl_subscribe_events"))); +int snd_ctl_subscribe_events(snd_ctl_t * ctl, int subscribe) __attribute__((alias("glshim_snd_ctl_subscribe_events"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_type) && !defined(skip_index_snd_ctl_type) snd_ctl_type_t glshim_snd_ctl_type(snd_ctl_t * ctl) { @@ -8720,7 +8720,7 @@ snd_ctl_type_t glshim_snd_ctl_type(snd_ctl_t * ctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_type_t snd_ctl_type(snd_ctl_t * ctl) __attribute__((alias("glshim_snd_ctl_type"))); +snd_ctl_type_t snd_ctl_type(snd_ctl_t * ctl) __attribute__((alias("glshim_snd_ctl_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_ctl_wait) && !defined(skip_index_snd_ctl_wait) int glshim_snd_ctl_wait(snd_ctl_t * ctl, int timeout) { @@ -8732,7 +8732,7 @@ int glshim_snd_ctl_wait(snd_ctl_t * ctl, int timeout) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_ctl_wait(snd_ctl_t * ctl, int timeout) __attribute__((alias("glshim_snd_ctl_wait"))); +int snd_ctl_wait(snd_ctl_t * ctl, int timeout) __attribute__((alias("glshim_snd_ctl_wait"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_dlclose) && !defined(skip_index_snd_dlclose) int glshim_snd_dlclose(void * handle) { @@ -8743,7 +8743,7 @@ int glshim_snd_dlclose(void * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_dlclose(void * handle) __attribute__((alias("glshim_snd_dlclose"))); +int snd_dlclose(void * handle) __attribute__((alias("glshim_snd_dlclose"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_dlopen) && !defined(skip_index_snd_dlopen) void * glshim_snd_dlopen(const char * file, int mode) { @@ -8755,7 +8755,7 @@ void * glshim_snd_dlopen(const char * file, int mode) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_dlopen(const char * file, int mode) __attribute__((alias("glshim_snd_dlopen"))); +void * snd_dlopen(const char * file, int mode) __attribute__((alias("glshim_snd_dlopen"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_dlsym) && !defined(skip_index_snd_dlsym) void * glshim_snd_dlsym(void * handle, const char * name, const char * version) { @@ -8768,7 +8768,7 @@ void * glshim_snd_dlsym(void * handle, const char * name, const char * version) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_dlsym(void * handle, const char * name, const char * version) __attribute__((alias("glshim_snd_dlsym"))); +void * snd_dlsym(void * handle, const char * name, const char * version) __attribute__((alias("glshim_snd_dlsym"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_close) && !defined(skip_index_snd_hctl_close) int glshim_snd_hctl_close(snd_hctl_t * hctl) { @@ -8779,7 +8779,7 @@ int glshim_snd_hctl_close(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_close(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_close"))); +int snd_hctl_close(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_compare_fast) && !defined(skip_index_snd_hctl_compare_fast) int glshim_snd_hctl_compare_fast(const snd_hctl_elem_t * c1, const snd_hctl_elem_t * c2) { @@ -8791,7 +8791,7 @@ int glshim_snd_hctl_compare_fast(const snd_hctl_elem_t * c1, const snd_hctl_elem syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_compare_fast(const snd_hctl_elem_t * c1, const snd_hctl_elem_t * c2) __attribute__((alias("glshim_snd_hctl_compare_fast"))); +int snd_hctl_compare_fast(const snd_hctl_elem_t * c1, const snd_hctl_elem_t * c2) __attribute__((alias("glshim_snd_hctl_compare_fast"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_ctl) && !defined(skip_index_snd_hctl_ctl) snd_ctl_t * glshim_snd_hctl_ctl(snd_hctl_t * hctl) { @@ -8802,7 +8802,7 @@ snd_ctl_t * glshim_snd_hctl_ctl(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_t * snd_hctl_ctl(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_ctl"))); +snd_ctl_t * snd_hctl_ctl(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_ctl"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_get_callback_private) && !defined(skip_index_snd_hctl_elem_get_callback_private) void * glshim_snd_hctl_elem_get_callback_private(const snd_hctl_elem_t * obj) { @@ -8813,7 +8813,7 @@ void * glshim_snd_hctl_elem_get_callback_private(const snd_hctl_elem_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_hctl_elem_get_callback_private(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_callback_private"))); +void * snd_hctl_elem_get_callback_private(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_get_device) && !defined(skip_index_snd_hctl_elem_get_device) unsigned int glshim_snd_hctl_elem_get_device(const snd_hctl_elem_t * obj) { @@ -8824,7 +8824,7 @@ unsigned int glshim_snd_hctl_elem_get_device(const snd_hctl_elem_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_hctl_elem_get_device(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_device"))); +unsigned int snd_hctl_elem_get_device(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_get_hctl) && !defined(skip_index_snd_hctl_elem_get_hctl) snd_hctl_t * glshim_snd_hctl_elem_get_hctl(snd_hctl_elem_t * elem) { @@ -8835,7 +8835,7 @@ snd_hctl_t * glshim_snd_hctl_elem_get_hctl(snd_hctl_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_hctl_t * snd_hctl_elem_get_hctl(snd_hctl_elem_t * elem) __attribute__((alias("glshim_snd_hctl_elem_get_hctl"))); +snd_hctl_t * snd_hctl_elem_get_hctl(snd_hctl_elem_t * elem) __attribute__((alias("glshim_snd_hctl_elem_get_hctl"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_get_id) && !defined(skip_index_snd_hctl_elem_get_id) void glshim_snd_hctl_elem_get_id(const snd_hctl_elem_t * obj, snd_ctl_elem_id_t * ptr) { @@ -8845,7 +8845,7 @@ void glshim_snd_hctl_elem_get_id(const snd_hctl_elem_t * obj, snd_ctl_elem_id_t packed_data.args.a2 = (snd_ctl_elem_id_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hctl_elem_get_id(const snd_hctl_elem_t * obj, snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_hctl_elem_get_id"))); +void snd_hctl_elem_get_id(const snd_hctl_elem_t * obj, snd_ctl_elem_id_t * ptr) __attribute__((alias("glshim_snd_hctl_elem_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_get_index) && !defined(skip_index_snd_hctl_elem_get_index) unsigned int glshim_snd_hctl_elem_get_index(const snd_hctl_elem_t * obj) { @@ -8856,7 +8856,7 @@ unsigned int glshim_snd_hctl_elem_get_index(const snd_hctl_elem_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_hctl_elem_get_index(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_index"))); +unsigned int snd_hctl_elem_get_index(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_get_interface) && !defined(skip_index_snd_hctl_elem_get_interface) snd_ctl_elem_iface_t glshim_snd_hctl_elem_get_interface(const snd_hctl_elem_t * obj) { @@ -8867,7 +8867,7 @@ snd_ctl_elem_iface_t glshim_snd_hctl_elem_get_interface(const snd_hctl_elem_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_ctl_elem_iface_t snd_hctl_elem_get_interface(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_interface"))); +snd_ctl_elem_iface_t snd_hctl_elem_get_interface(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_interface"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_get_name) && !defined(skip_index_snd_hctl_elem_get_name) const char * glshim_snd_hctl_elem_get_name(const snd_hctl_elem_t * obj) { @@ -8878,7 +8878,7 @@ const char * glshim_snd_hctl_elem_get_name(const snd_hctl_elem_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_hctl_elem_get_name(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_name"))); +const char * snd_hctl_elem_get_name(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_get_numid) && !defined(skip_index_snd_hctl_elem_get_numid) unsigned int glshim_snd_hctl_elem_get_numid(const snd_hctl_elem_t * obj) { @@ -8889,7 +8889,7 @@ unsigned int glshim_snd_hctl_elem_get_numid(const snd_hctl_elem_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_hctl_elem_get_numid(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_numid"))); +unsigned int snd_hctl_elem_get_numid(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_numid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_get_subdevice) && !defined(skip_index_snd_hctl_elem_get_subdevice) unsigned int glshim_snd_hctl_elem_get_subdevice(const snd_hctl_elem_t * obj) { @@ -8900,7 +8900,7 @@ unsigned int glshim_snd_hctl_elem_get_subdevice(const snd_hctl_elem_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_hctl_elem_get_subdevice(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_subdevice"))); +unsigned int snd_hctl_elem_get_subdevice(const snd_hctl_elem_t * obj) __attribute__((alias("glshim_snd_hctl_elem_get_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_info) && !defined(skip_index_snd_hctl_elem_info) int glshim_snd_hctl_elem_info(snd_hctl_elem_t * elem, snd_ctl_elem_info_t * info) { @@ -8912,7 +8912,7 @@ int glshim_snd_hctl_elem_info(snd_hctl_elem_t * elem, snd_ctl_elem_info_t * info syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_elem_info(snd_hctl_elem_t * elem, snd_ctl_elem_info_t * info) __attribute__((alias("glshim_snd_hctl_elem_info"))); +int snd_hctl_elem_info(snd_hctl_elem_t * elem, snd_ctl_elem_info_t * info) __attribute__((alias("glshim_snd_hctl_elem_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_next) && !defined(skip_index_snd_hctl_elem_next) snd_hctl_elem_t * glshim_snd_hctl_elem_next(snd_hctl_elem_t * elem) { @@ -8923,7 +8923,7 @@ snd_hctl_elem_t * glshim_snd_hctl_elem_next(snd_hctl_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_hctl_elem_t * snd_hctl_elem_next(snd_hctl_elem_t * elem) __attribute__((alias("glshim_snd_hctl_elem_next"))); +snd_hctl_elem_t * snd_hctl_elem_next(snd_hctl_elem_t * elem) __attribute__((alias("glshim_snd_hctl_elem_next"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_prev) && !defined(skip_index_snd_hctl_elem_prev) snd_hctl_elem_t * glshim_snd_hctl_elem_prev(snd_hctl_elem_t * elem) { @@ -8934,7 +8934,7 @@ snd_hctl_elem_t * glshim_snd_hctl_elem_prev(snd_hctl_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_hctl_elem_t * snd_hctl_elem_prev(snd_hctl_elem_t * elem) __attribute__((alias("glshim_snd_hctl_elem_prev"))); +snd_hctl_elem_t * snd_hctl_elem_prev(snd_hctl_elem_t * elem) __attribute__((alias("glshim_snd_hctl_elem_prev"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_read) && !defined(skip_index_snd_hctl_elem_read) int glshim_snd_hctl_elem_read(snd_hctl_elem_t * elem, snd_ctl_elem_value_t * value) { @@ -8946,7 +8946,7 @@ int glshim_snd_hctl_elem_read(snd_hctl_elem_t * elem, snd_ctl_elem_value_t * val syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_elem_read(snd_hctl_elem_t * elem, snd_ctl_elem_value_t * value) __attribute__((alias("glshim_snd_hctl_elem_read"))); +int snd_hctl_elem_read(snd_hctl_elem_t * elem, snd_ctl_elem_value_t * value) __attribute__((alias("glshim_snd_hctl_elem_read"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_set_callback) && !defined(skip_index_snd_hctl_elem_set_callback) void glshim_snd_hctl_elem_set_callback(snd_hctl_elem_t * obj, snd_hctl_elem_callback_t val) { @@ -8956,7 +8956,7 @@ void glshim_snd_hctl_elem_set_callback(snd_hctl_elem_t * obj, snd_hctl_elem_call packed_data.args.a2 = (snd_hctl_elem_callback_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hctl_elem_set_callback(snd_hctl_elem_t * obj, snd_hctl_elem_callback_t val) __attribute__((alias("glshim_snd_hctl_elem_set_callback"))); +void snd_hctl_elem_set_callback(snd_hctl_elem_t * obj, snd_hctl_elem_callback_t val) __attribute__((alias("glshim_snd_hctl_elem_set_callback"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_set_callback_private) && !defined(skip_index_snd_hctl_elem_set_callback_private) void glshim_snd_hctl_elem_set_callback_private(snd_hctl_elem_t * obj, void * val) { @@ -8966,7 +8966,7 @@ void glshim_snd_hctl_elem_set_callback_private(snd_hctl_elem_t * obj, void * val packed_data.args.a2 = (void *)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hctl_elem_set_callback_private(snd_hctl_elem_t * obj, void * val) __attribute__((alias("glshim_snd_hctl_elem_set_callback_private"))); +void snd_hctl_elem_set_callback_private(snd_hctl_elem_t * obj, void * val) __attribute__((alias("glshim_snd_hctl_elem_set_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_tlv_command) && !defined(skip_index_snd_hctl_elem_tlv_command) int glshim_snd_hctl_elem_tlv_command(snd_hctl_elem_t * elem, const unsigned int * tlv) { @@ -8978,7 +8978,7 @@ int glshim_snd_hctl_elem_tlv_command(snd_hctl_elem_t * elem, const unsigned int syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_elem_tlv_command(snd_hctl_elem_t * elem, const unsigned int * tlv) __attribute__((alias("glshim_snd_hctl_elem_tlv_command"))); +int snd_hctl_elem_tlv_command(snd_hctl_elem_t * elem, const unsigned int * tlv) __attribute__((alias("glshim_snd_hctl_elem_tlv_command"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_tlv_read) && !defined(skip_index_snd_hctl_elem_tlv_read) int glshim_snd_hctl_elem_tlv_read(snd_hctl_elem_t * elem, unsigned int * tlv, unsigned int tlv_size) { @@ -8991,7 +8991,7 @@ int glshim_snd_hctl_elem_tlv_read(snd_hctl_elem_t * elem, unsigned int * tlv, un syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_elem_tlv_read(snd_hctl_elem_t * elem, unsigned int * tlv, unsigned int tlv_size) __attribute__((alias("glshim_snd_hctl_elem_tlv_read"))); +int snd_hctl_elem_tlv_read(snd_hctl_elem_t * elem, unsigned int * tlv, unsigned int tlv_size) __attribute__((alias("glshim_snd_hctl_elem_tlv_read"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_tlv_write) && !defined(skip_index_snd_hctl_elem_tlv_write) int glshim_snd_hctl_elem_tlv_write(snd_hctl_elem_t * elem, const unsigned int * tlv) { @@ -9003,7 +9003,7 @@ int glshim_snd_hctl_elem_tlv_write(snd_hctl_elem_t * elem, const unsigned int * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_elem_tlv_write(snd_hctl_elem_t * elem, const unsigned int * tlv) __attribute__((alias("glshim_snd_hctl_elem_tlv_write"))); +int snd_hctl_elem_tlv_write(snd_hctl_elem_t * elem, const unsigned int * tlv) __attribute__((alias("glshim_snd_hctl_elem_tlv_write"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_elem_write) && !defined(skip_index_snd_hctl_elem_write) int glshim_snd_hctl_elem_write(snd_hctl_elem_t * elem, snd_ctl_elem_value_t * value) { @@ -9015,7 +9015,7 @@ int glshim_snd_hctl_elem_write(snd_hctl_elem_t * elem, snd_ctl_elem_value_t * va syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_elem_write(snd_hctl_elem_t * elem, snd_ctl_elem_value_t * value) __attribute__((alias("glshim_snd_hctl_elem_write"))); +int snd_hctl_elem_write(snd_hctl_elem_t * elem, snd_ctl_elem_value_t * value) __attribute__((alias("glshim_snd_hctl_elem_write"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_find_elem) && !defined(skip_index_snd_hctl_find_elem) snd_hctl_elem_t * glshim_snd_hctl_find_elem(snd_hctl_t * hctl, const snd_ctl_elem_id_t * id) { @@ -9027,7 +9027,7 @@ snd_hctl_elem_t * glshim_snd_hctl_find_elem(snd_hctl_t * hctl, const snd_ctl_ele syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_hctl_elem_t * snd_hctl_find_elem(snd_hctl_t * hctl, const snd_ctl_elem_id_t * id) __attribute__((alias("glshim_snd_hctl_find_elem"))); +snd_hctl_elem_t * snd_hctl_find_elem(snd_hctl_t * hctl, const snd_ctl_elem_id_t * id) __attribute__((alias("glshim_snd_hctl_find_elem"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_first_elem) && !defined(skip_index_snd_hctl_first_elem) snd_hctl_elem_t * glshim_snd_hctl_first_elem(snd_hctl_t * hctl) { @@ -9038,7 +9038,7 @@ snd_hctl_elem_t * glshim_snd_hctl_first_elem(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_hctl_elem_t * snd_hctl_first_elem(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_first_elem"))); +snd_hctl_elem_t * snd_hctl_first_elem(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_first_elem"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_free) && !defined(skip_index_snd_hctl_free) int glshim_snd_hctl_free(snd_hctl_t * hctl) { @@ -9049,7 +9049,7 @@ int glshim_snd_hctl_free(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_free(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_free"))); +int snd_hctl_free(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_get_callback_private) && !defined(skip_index_snd_hctl_get_callback_private) void * glshim_snd_hctl_get_callback_private(snd_hctl_t * hctl) { @@ -9060,7 +9060,7 @@ void * glshim_snd_hctl_get_callback_private(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_hctl_get_callback_private(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_get_callback_private"))); +void * snd_hctl_get_callback_private(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_get_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_get_count) && !defined(skip_index_snd_hctl_get_count) unsigned int glshim_snd_hctl_get_count(snd_hctl_t * hctl) { @@ -9071,7 +9071,7 @@ unsigned int glshim_snd_hctl_get_count(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_hctl_get_count(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_get_count"))); +unsigned int snd_hctl_get_count(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_get_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_handle_events) && !defined(skip_index_snd_hctl_handle_events) int glshim_snd_hctl_handle_events(snd_hctl_t * hctl) { @@ -9082,7 +9082,7 @@ int glshim_snd_hctl_handle_events(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_handle_events(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_handle_events"))); +int snd_hctl_handle_events(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_handle_events"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_last_elem) && !defined(skip_index_snd_hctl_last_elem) snd_hctl_elem_t * glshim_snd_hctl_last_elem(snd_hctl_t * hctl) { @@ -9093,7 +9093,7 @@ snd_hctl_elem_t * glshim_snd_hctl_last_elem(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_hctl_elem_t * snd_hctl_last_elem(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_last_elem"))); +snd_hctl_elem_t * snd_hctl_last_elem(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_last_elem"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_load) && !defined(skip_index_snd_hctl_load) int glshim_snd_hctl_load(snd_hctl_t * hctl) { @@ -9104,7 +9104,7 @@ int glshim_snd_hctl_load(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_load(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_load"))); +int snd_hctl_load(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_load"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_name) && !defined(skip_index_snd_hctl_name) const char * glshim_snd_hctl_name(snd_hctl_t * hctl) { @@ -9115,7 +9115,7 @@ const char * glshim_snd_hctl_name(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_hctl_name(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_name"))); +const char * snd_hctl_name(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_nonblock) && !defined(skip_index_snd_hctl_nonblock) int glshim_snd_hctl_nonblock(snd_hctl_t * hctl, int nonblock) { @@ -9127,7 +9127,7 @@ int glshim_snd_hctl_nonblock(snd_hctl_t * hctl, int nonblock) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_nonblock(snd_hctl_t * hctl, int nonblock) __attribute__((alias("glshim_snd_hctl_nonblock"))); +int snd_hctl_nonblock(snd_hctl_t * hctl, int nonblock) __attribute__((alias("glshim_snd_hctl_nonblock"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_open) && !defined(skip_index_snd_hctl_open) int glshim_snd_hctl_open(snd_hctl_t ** hctl, const char * name, int mode) { @@ -9140,7 +9140,7 @@ int glshim_snd_hctl_open(snd_hctl_t ** hctl, const char * name, int mode) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_open(snd_hctl_t ** hctl, const char * name, int mode) __attribute__((alias("glshim_snd_hctl_open"))); +int snd_hctl_open(snd_hctl_t ** hctl, const char * name, int mode) __attribute__((alias("glshim_snd_hctl_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_open_ctl) && !defined(skip_index_snd_hctl_open_ctl) int glshim_snd_hctl_open_ctl(snd_hctl_t ** hctlp, snd_ctl_t * ctl) { @@ -9152,7 +9152,7 @@ int glshim_snd_hctl_open_ctl(snd_hctl_t ** hctlp, snd_ctl_t * ctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_open_ctl(snd_hctl_t ** hctlp, snd_ctl_t * ctl) __attribute__((alias("glshim_snd_hctl_open_ctl"))); +int snd_hctl_open_ctl(snd_hctl_t ** hctlp, snd_ctl_t * ctl) __attribute__((alias("glshim_snd_hctl_open_ctl"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_poll_descriptors) && !defined(skip_index_snd_hctl_poll_descriptors) int glshim_snd_hctl_poll_descriptors(snd_hctl_t * hctl, struct pollfd * pfds, unsigned int space) { @@ -9165,7 +9165,7 @@ int glshim_snd_hctl_poll_descriptors(snd_hctl_t * hctl, struct pollfd * pfds, un syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_poll_descriptors(snd_hctl_t * hctl, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_hctl_poll_descriptors"))); +int snd_hctl_poll_descriptors(snd_hctl_t * hctl, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_hctl_poll_descriptors"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_poll_descriptors_count) && !defined(skip_index_snd_hctl_poll_descriptors_count) int glshim_snd_hctl_poll_descriptors_count(snd_hctl_t * hctl) { @@ -9176,7 +9176,7 @@ int glshim_snd_hctl_poll_descriptors_count(snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_poll_descriptors_count(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_poll_descriptors_count"))); +int snd_hctl_poll_descriptors_count(snd_hctl_t * hctl) __attribute__((alias("glshim_snd_hctl_poll_descriptors_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_poll_descriptors_revents) && !defined(skip_index_snd_hctl_poll_descriptors_revents) int glshim_snd_hctl_poll_descriptors_revents(snd_hctl_t * ctl, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) { @@ -9190,7 +9190,7 @@ int glshim_snd_hctl_poll_descriptors_revents(snd_hctl_t * ctl, struct pollfd * p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_poll_descriptors_revents(snd_hctl_t * ctl, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_hctl_poll_descriptors_revents"))); +int snd_hctl_poll_descriptors_revents(snd_hctl_t * ctl, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_hctl_poll_descriptors_revents"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_set_callback) && !defined(skip_index_snd_hctl_set_callback) void glshim_snd_hctl_set_callback(snd_hctl_t * hctl, snd_hctl_callback_t callback) { @@ -9200,7 +9200,7 @@ void glshim_snd_hctl_set_callback(snd_hctl_t * hctl, snd_hctl_callback_t callbac packed_data.args.a2 = (snd_hctl_callback_t)callback; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hctl_set_callback(snd_hctl_t * hctl, snd_hctl_callback_t callback) __attribute__((alias("glshim_snd_hctl_set_callback"))); +void snd_hctl_set_callback(snd_hctl_t * hctl, snd_hctl_callback_t callback) __attribute__((alias("glshim_snd_hctl_set_callback"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_set_callback_private) && !defined(skip_index_snd_hctl_set_callback_private) void glshim_snd_hctl_set_callback_private(snd_hctl_t * hctl, void * data) { @@ -9210,7 +9210,7 @@ void glshim_snd_hctl_set_callback_private(snd_hctl_t * hctl, void * data) { packed_data.args.a2 = (void *)data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hctl_set_callback_private(snd_hctl_t * hctl, void * data) __attribute__((alias("glshim_snd_hctl_set_callback_private"))); +void snd_hctl_set_callback_private(snd_hctl_t * hctl, void * data) __attribute__((alias("glshim_snd_hctl_set_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_set_compare) && !defined(skip_index_snd_hctl_set_compare) int glshim_snd_hctl_set_compare(snd_hctl_t * hctl, snd_hctl_compare_t hsort) { @@ -9222,7 +9222,7 @@ int glshim_snd_hctl_set_compare(snd_hctl_t * hctl, snd_hctl_compare_t hsort) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_set_compare(snd_hctl_t * hctl, snd_hctl_compare_t hsort) __attribute__((alias("glshim_snd_hctl_set_compare"))); +int snd_hctl_set_compare(snd_hctl_t * hctl, snd_hctl_compare_t hsort) __attribute__((alias("glshim_snd_hctl_set_compare"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hctl_wait) && !defined(skip_index_snd_hctl_wait) int glshim_snd_hctl_wait(snd_hctl_t * hctl, int timeout) { @@ -9234,7 +9234,7 @@ int glshim_snd_hctl_wait(snd_hctl_t * hctl, int timeout) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hctl_wait(snd_hctl_t * hctl, int timeout) __attribute__((alias("glshim_snd_hctl_wait"))); +int snd_hctl_wait(snd_hctl_t * hctl, int timeout) __attribute__((alias("glshim_snd_hctl_wait"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_close) && !defined(skip_index_snd_hwdep_close) int glshim_snd_hwdep_close(snd_hwdep_t * hwdep) { @@ -9245,7 +9245,7 @@ int glshim_snd_hwdep_close(snd_hwdep_t * hwdep) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_close(snd_hwdep_t * hwdep) __attribute__((alias("glshim_snd_hwdep_close"))); +int snd_hwdep_close(snd_hwdep_t * hwdep) __attribute__((alias("glshim_snd_hwdep_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_copy) && !defined(skip_index_snd_hwdep_dsp_image_copy) void glshim_snd_hwdep_dsp_image_copy(snd_hwdep_dsp_image_t * dst, const snd_hwdep_dsp_image_t * src) { @@ -9255,7 +9255,7 @@ void glshim_snd_hwdep_dsp_image_copy(snd_hwdep_dsp_image_t * dst, const snd_hwde packed_data.args.a2 = (snd_hwdep_dsp_image_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hwdep_dsp_image_copy(snd_hwdep_dsp_image_t * dst, const snd_hwdep_dsp_image_t * src) __attribute__((alias("glshim_snd_hwdep_dsp_image_copy"))); +void snd_hwdep_dsp_image_copy(snd_hwdep_dsp_image_t * dst, const snd_hwdep_dsp_image_t * src) __attribute__((alias("glshim_snd_hwdep_dsp_image_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_free) && !defined(skip_index_snd_hwdep_dsp_image_free) void glshim_snd_hwdep_dsp_image_free(snd_hwdep_dsp_image_t * obj) { @@ -9264,7 +9264,7 @@ void glshim_snd_hwdep_dsp_image_free(snd_hwdep_dsp_image_t * obj) { packed_data.args.a1 = (snd_hwdep_dsp_image_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hwdep_dsp_image_free(snd_hwdep_dsp_image_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_image_free"))); +void snd_hwdep_dsp_image_free(snd_hwdep_dsp_image_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_image_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_get_image) && !defined(skip_index_snd_hwdep_dsp_image_get_image) const void * glshim_snd_hwdep_dsp_image_get_image(const snd_hwdep_dsp_image_t * obj) { @@ -9275,7 +9275,7 @@ const void * glshim_snd_hwdep_dsp_image_get_image(const snd_hwdep_dsp_image_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const void * snd_hwdep_dsp_image_get_image(const snd_hwdep_dsp_image_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_image_get_image"))); +const void * snd_hwdep_dsp_image_get_image(const snd_hwdep_dsp_image_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_image_get_image"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_get_index) && !defined(skip_index_snd_hwdep_dsp_image_get_index) unsigned int glshim_snd_hwdep_dsp_image_get_index(const snd_hwdep_dsp_image_t * obj) { @@ -9286,7 +9286,7 @@ unsigned int glshim_snd_hwdep_dsp_image_get_index(const snd_hwdep_dsp_image_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_hwdep_dsp_image_get_index(const snd_hwdep_dsp_image_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_image_get_index"))); +unsigned int snd_hwdep_dsp_image_get_index(const snd_hwdep_dsp_image_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_image_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_get_length) && !defined(skip_index_snd_hwdep_dsp_image_get_length) size_t glshim_snd_hwdep_dsp_image_get_length(const snd_hwdep_dsp_image_t * obj) { @@ -9297,7 +9297,7 @@ size_t glshim_snd_hwdep_dsp_image_get_length(const snd_hwdep_dsp_image_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_hwdep_dsp_image_get_length(const snd_hwdep_dsp_image_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_image_get_length"))); +size_t snd_hwdep_dsp_image_get_length(const snd_hwdep_dsp_image_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_image_get_length"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_get_name) && !defined(skip_index_snd_hwdep_dsp_image_get_name) const char * glshim_snd_hwdep_dsp_image_get_name(const snd_hwdep_dsp_image_t * obj) { @@ -9308,7 +9308,7 @@ const char * glshim_snd_hwdep_dsp_image_get_name(const snd_hwdep_dsp_image_t * o syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_hwdep_dsp_image_get_name(const snd_hwdep_dsp_image_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_image_get_name"))); +const char * snd_hwdep_dsp_image_get_name(const snd_hwdep_dsp_image_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_image_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_malloc) && !defined(skip_index_snd_hwdep_dsp_image_malloc) int glshim_snd_hwdep_dsp_image_malloc(snd_hwdep_dsp_image_t ** ptr) { @@ -9319,7 +9319,7 @@ int glshim_snd_hwdep_dsp_image_malloc(snd_hwdep_dsp_image_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_dsp_image_malloc(snd_hwdep_dsp_image_t ** ptr) __attribute__((alias("glshim_snd_hwdep_dsp_image_malloc"))); +int snd_hwdep_dsp_image_malloc(snd_hwdep_dsp_image_t ** ptr) __attribute__((alias("glshim_snd_hwdep_dsp_image_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_set_image) && !defined(skip_index_snd_hwdep_dsp_image_set_image) void glshim_snd_hwdep_dsp_image_set_image(snd_hwdep_dsp_image_t * obj, void * buffer) { @@ -9329,7 +9329,7 @@ void glshim_snd_hwdep_dsp_image_set_image(snd_hwdep_dsp_image_t * obj, void * bu packed_data.args.a2 = (void *)buffer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hwdep_dsp_image_set_image(snd_hwdep_dsp_image_t * obj, void * buffer) __attribute__((alias("glshim_snd_hwdep_dsp_image_set_image"))); +void snd_hwdep_dsp_image_set_image(snd_hwdep_dsp_image_t * obj, void * buffer) __attribute__((alias("glshim_snd_hwdep_dsp_image_set_image"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_set_index) && !defined(skip_index_snd_hwdep_dsp_image_set_index) void glshim_snd_hwdep_dsp_image_set_index(snd_hwdep_dsp_image_t * obj, unsigned int _index) { @@ -9339,7 +9339,7 @@ void glshim_snd_hwdep_dsp_image_set_index(snd_hwdep_dsp_image_t * obj, unsigned packed_data.args.a2 = (unsigned int)_index; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hwdep_dsp_image_set_index(snd_hwdep_dsp_image_t * obj, unsigned int _index) __attribute__((alias("glshim_snd_hwdep_dsp_image_set_index"))); +void snd_hwdep_dsp_image_set_index(snd_hwdep_dsp_image_t * obj, unsigned int _index) __attribute__((alias("glshim_snd_hwdep_dsp_image_set_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_set_length) && !defined(skip_index_snd_hwdep_dsp_image_set_length) void glshim_snd_hwdep_dsp_image_set_length(snd_hwdep_dsp_image_t * obj, size_t length) { @@ -9349,7 +9349,7 @@ void glshim_snd_hwdep_dsp_image_set_length(snd_hwdep_dsp_image_t * obj, size_t l packed_data.args.a2 = (size_t)length; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hwdep_dsp_image_set_length(snd_hwdep_dsp_image_t * obj, size_t length) __attribute__((alias("glshim_snd_hwdep_dsp_image_set_length"))); +void snd_hwdep_dsp_image_set_length(snd_hwdep_dsp_image_t * obj, size_t length) __attribute__((alias("glshim_snd_hwdep_dsp_image_set_length"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_set_name) && !defined(skip_index_snd_hwdep_dsp_image_set_name) void glshim_snd_hwdep_dsp_image_set_name(snd_hwdep_dsp_image_t * obj, const char * name) { @@ -9359,7 +9359,7 @@ void glshim_snd_hwdep_dsp_image_set_name(snd_hwdep_dsp_image_t * obj, const char packed_data.args.a2 = (char *)name; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hwdep_dsp_image_set_name(snd_hwdep_dsp_image_t * obj, const char * name) __attribute__((alias("glshim_snd_hwdep_dsp_image_set_name"))); +void snd_hwdep_dsp_image_set_name(snd_hwdep_dsp_image_t * obj, const char * name) __attribute__((alias("glshim_snd_hwdep_dsp_image_set_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_image_sizeof) && !defined(skip_index_snd_hwdep_dsp_image_sizeof) size_t glshim_snd_hwdep_dsp_image_sizeof() { @@ -9369,7 +9369,7 @@ size_t glshim_snd_hwdep_dsp_image_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_hwdep_dsp_image_sizeof() __attribute__((alias("glshim_snd_hwdep_dsp_image_sizeof"))); +size_t snd_hwdep_dsp_image_sizeof() __attribute__((alias("glshim_snd_hwdep_dsp_image_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_load) && !defined(skip_index_snd_hwdep_dsp_load) int glshim_snd_hwdep_dsp_load(snd_hwdep_t * hwdep, snd_hwdep_dsp_image_t * block) { @@ -9381,7 +9381,7 @@ int glshim_snd_hwdep_dsp_load(snd_hwdep_t * hwdep, snd_hwdep_dsp_image_t * block syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_dsp_load(snd_hwdep_t * hwdep, snd_hwdep_dsp_image_t * block) __attribute__((alias("glshim_snd_hwdep_dsp_load"))); +int snd_hwdep_dsp_load(snd_hwdep_t * hwdep, snd_hwdep_dsp_image_t * block) __attribute__((alias("glshim_snd_hwdep_dsp_load"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_status) && !defined(skip_index_snd_hwdep_dsp_status) int glshim_snd_hwdep_dsp_status(snd_hwdep_t * hwdep, snd_hwdep_dsp_status_t * status) { @@ -9393,7 +9393,7 @@ int glshim_snd_hwdep_dsp_status(snd_hwdep_t * hwdep, snd_hwdep_dsp_status_t * st syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_dsp_status(snd_hwdep_t * hwdep, snd_hwdep_dsp_status_t * status) __attribute__((alias("glshim_snd_hwdep_dsp_status"))); +int snd_hwdep_dsp_status(snd_hwdep_t * hwdep, snd_hwdep_dsp_status_t * status) __attribute__((alias("glshim_snd_hwdep_dsp_status"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_status_copy) && !defined(skip_index_snd_hwdep_dsp_status_copy) void glshim_snd_hwdep_dsp_status_copy(snd_hwdep_dsp_status_t * dst, const snd_hwdep_dsp_status_t * src) { @@ -9403,7 +9403,7 @@ void glshim_snd_hwdep_dsp_status_copy(snd_hwdep_dsp_status_t * dst, const snd_hw packed_data.args.a2 = (snd_hwdep_dsp_status_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hwdep_dsp_status_copy(snd_hwdep_dsp_status_t * dst, const snd_hwdep_dsp_status_t * src) __attribute__((alias("glshim_snd_hwdep_dsp_status_copy"))); +void snd_hwdep_dsp_status_copy(snd_hwdep_dsp_status_t * dst, const snd_hwdep_dsp_status_t * src) __attribute__((alias("glshim_snd_hwdep_dsp_status_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_status_free) && !defined(skip_index_snd_hwdep_dsp_status_free) void glshim_snd_hwdep_dsp_status_free(snd_hwdep_dsp_status_t * obj) { @@ -9412,7 +9412,7 @@ void glshim_snd_hwdep_dsp_status_free(snd_hwdep_dsp_status_t * obj) { packed_data.args.a1 = (snd_hwdep_dsp_status_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_hwdep_dsp_status_free(snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_free"))); +void snd_hwdep_dsp_status_free(snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_status_get_chip_ready) && !defined(skip_index_snd_hwdep_dsp_status_get_chip_ready) unsigned int glshim_snd_hwdep_dsp_status_get_chip_ready(const snd_hwdep_dsp_status_t * obj) { @@ -9423,7 +9423,7 @@ unsigned int glshim_snd_hwdep_dsp_status_get_chip_ready(const snd_hwdep_dsp_stat syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_hwdep_dsp_status_get_chip_ready(const snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_get_chip_ready"))); +unsigned int snd_hwdep_dsp_status_get_chip_ready(const snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_get_chip_ready"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_status_get_dsp_loaded) && !defined(skip_index_snd_hwdep_dsp_status_get_dsp_loaded) unsigned int glshim_snd_hwdep_dsp_status_get_dsp_loaded(const snd_hwdep_dsp_status_t * obj) { @@ -9434,7 +9434,7 @@ unsigned int glshim_snd_hwdep_dsp_status_get_dsp_loaded(const snd_hwdep_dsp_stat syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_hwdep_dsp_status_get_dsp_loaded(const snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_get_dsp_loaded"))); +unsigned int snd_hwdep_dsp_status_get_dsp_loaded(const snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_get_dsp_loaded"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_status_get_id) && !defined(skip_index_snd_hwdep_dsp_status_get_id) const char * glshim_snd_hwdep_dsp_status_get_id(const snd_hwdep_dsp_status_t * obj) { @@ -9445,7 +9445,7 @@ const char * glshim_snd_hwdep_dsp_status_get_id(const snd_hwdep_dsp_status_t * o syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_hwdep_dsp_status_get_id(const snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_get_id"))); +const char * snd_hwdep_dsp_status_get_id(const snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_status_get_num_dsps) && !defined(skip_index_snd_hwdep_dsp_status_get_num_dsps) unsigned int glshim_snd_hwdep_dsp_status_get_num_dsps(const snd_hwdep_dsp_status_t * obj) { @@ -9456,7 +9456,7 @@ unsigned int glshim_snd_hwdep_dsp_status_get_num_dsps(const snd_hwdep_dsp_status syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_hwdep_dsp_status_get_num_dsps(const snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_get_num_dsps"))); +unsigned int snd_hwdep_dsp_status_get_num_dsps(const snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_get_num_dsps"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_status_get_version) && !defined(skip_index_snd_hwdep_dsp_status_get_version) unsigned int glshim_snd_hwdep_dsp_status_get_version(const snd_hwdep_dsp_status_t * obj) { @@ -9467,7 +9467,7 @@ unsigned int glshim_snd_hwdep_dsp_status_get_version(const snd_hwdep_dsp_status_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_hwdep_dsp_status_get_version(const snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_get_version"))); +unsigned int snd_hwdep_dsp_status_get_version(const snd_hwdep_dsp_status_t * obj) __attribute__((alias("glshim_snd_hwdep_dsp_status_get_version"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_status_malloc) && !defined(skip_index_snd_hwdep_dsp_status_malloc) int glshim_snd_hwdep_dsp_status_malloc(snd_hwdep_dsp_status_t ** ptr) { @@ -9478,7 +9478,7 @@ int glshim_snd_hwdep_dsp_status_malloc(snd_hwdep_dsp_status_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_dsp_status_malloc(snd_hwdep_dsp_status_t ** ptr) __attribute__((alias("glshim_snd_hwdep_dsp_status_malloc"))); +int snd_hwdep_dsp_status_malloc(snd_hwdep_dsp_status_t ** ptr) __attribute__((alias("glshim_snd_hwdep_dsp_status_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_dsp_status_sizeof) && !defined(skip_index_snd_hwdep_dsp_status_sizeof) size_t glshim_snd_hwdep_dsp_status_sizeof() { @@ -9488,7 +9488,7 @@ size_t glshim_snd_hwdep_dsp_status_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_hwdep_dsp_status_sizeof() __attribute__((alias("glshim_snd_hwdep_dsp_status_sizeof"))); +size_t snd_hwdep_dsp_status_sizeof() __attribute__((alias("glshim_snd_hwdep_dsp_status_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_info) && !defined(skip_index_snd_hwdep_info) int glshim_snd_hwdep_info(snd_hwdep_t * hwdep, snd_hwdep_info_t * info) { @@ -9500,7 +9500,7 @@ int glshim_snd_hwdep_info(snd_hwdep_t * hwdep, snd_hwdep_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_info(snd_hwdep_t * hwdep, snd_hwdep_info_t * info) __attribute__((alias("glshim_snd_hwdep_info"))); +int snd_hwdep_info(snd_hwdep_t * hwdep, snd_hwdep_info_t * info) __attribute__((alias("glshim_snd_hwdep_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_info_sizeof) && !defined(skip_index_snd_hwdep_info_sizeof) size_t glshim_snd_hwdep_info_sizeof() { @@ -9510,7 +9510,7 @@ size_t glshim_snd_hwdep_info_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_hwdep_info_sizeof() __attribute__((alias("glshim_snd_hwdep_info_sizeof"))); +size_t snd_hwdep_info_sizeof() __attribute__((alias("glshim_snd_hwdep_info_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_ioctl) && !defined(skip_index_snd_hwdep_ioctl) int glshim_snd_hwdep_ioctl(snd_hwdep_t * hwdep, unsigned int request, void * arg) { @@ -9523,7 +9523,7 @@ int glshim_snd_hwdep_ioctl(snd_hwdep_t * hwdep, unsigned int request, void * arg syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_ioctl(snd_hwdep_t * hwdep, unsigned int request, void * arg) __attribute__((alias("glshim_snd_hwdep_ioctl"))); +int snd_hwdep_ioctl(snd_hwdep_t * hwdep, unsigned int request, void * arg) __attribute__((alias("glshim_snd_hwdep_ioctl"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_nonblock) && !defined(skip_index_snd_hwdep_nonblock) int glshim_snd_hwdep_nonblock(snd_hwdep_t * hwdep, int nonblock) { @@ -9535,7 +9535,7 @@ int glshim_snd_hwdep_nonblock(snd_hwdep_t * hwdep, int nonblock) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_nonblock(snd_hwdep_t * hwdep, int nonblock) __attribute__((alias("glshim_snd_hwdep_nonblock"))); +int snd_hwdep_nonblock(snd_hwdep_t * hwdep, int nonblock) __attribute__((alias("glshim_snd_hwdep_nonblock"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_open) && !defined(skip_index_snd_hwdep_open) int glshim_snd_hwdep_open(snd_hwdep_t ** hwdep, const char * name, int mode) { @@ -9548,7 +9548,7 @@ int glshim_snd_hwdep_open(snd_hwdep_t ** hwdep, const char * name, int mode) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_open(snd_hwdep_t ** hwdep, const char * name, int mode) __attribute__((alias("glshim_snd_hwdep_open"))); +int snd_hwdep_open(snd_hwdep_t ** hwdep, const char * name, int mode) __attribute__((alias("glshim_snd_hwdep_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_poll_descriptors) && !defined(skip_index_snd_hwdep_poll_descriptors) int glshim_snd_hwdep_poll_descriptors(snd_hwdep_t * hwdep, struct pollfd * pfds, unsigned int space) { @@ -9561,7 +9561,7 @@ int glshim_snd_hwdep_poll_descriptors(snd_hwdep_t * hwdep, struct pollfd * pfds, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_poll_descriptors(snd_hwdep_t * hwdep, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_hwdep_poll_descriptors"))); +int snd_hwdep_poll_descriptors(snd_hwdep_t * hwdep, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_hwdep_poll_descriptors"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_poll_descriptors_revents) && !defined(skip_index_snd_hwdep_poll_descriptors_revents) int glshim_snd_hwdep_poll_descriptors_revents(snd_hwdep_t * hwdep, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) { @@ -9575,7 +9575,7 @@ int glshim_snd_hwdep_poll_descriptors_revents(snd_hwdep_t * hwdep, struct pollfd syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_hwdep_poll_descriptors_revents(snd_hwdep_t * hwdep, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_hwdep_poll_descriptors_revents"))); +int snd_hwdep_poll_descriptors_revents(snd_hwdep_t * hwdep, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_hwdep_poll_descriptors_revents"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_read) && !defined(skip_index_snd_hwdep_read) ssize_t glshim_snd_hwdep_read(snd_hwdep_t * hwdep, void * buffer, size_t size) { @@ -9588,7 +9588,7 @@ ssize_t glshim_snd_hwdep_read(snd_hwdep_t * hwdep, void * buffer, size_t size) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -ssize_t snd_hwdep_read(snd_hwdep_t * hwdep, void * buffer, size_t size) __attribute__((alias("glshim_snd_hwdep_read"))); +ssize_t snd_hwdep_read(snd_hwdep_t * hwdep, void * buffer, size_t size) __attribute__((alias("glshim_snd_hwdep_read"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_hwdep_write) && !defined(skip_index_snd_hwdep_write) ssize_t glshim_snd_hwdep_write(snd_hwdep_t * hwdep, const void * buffer, size_t size) { @@ -9601,7 +9601,7 @@ ssize_t glshim_snd_hwdep_write(snd_hwdep_t * hwdep, const void * buffer, size_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -ssize_t snd_hwdep_write(snd_hwdep_t * hwdep, const void * buffer, size_t size) __attribute__((alias("glshim_snd_hwdep_write"))); +ssize_t snd_hwdep_write(snd_hwdep_t * hwdep, const void * buffer, size_t size) __attribute__((alias("glshim_snd_hwdep_write"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_input_buffer_open) && !defined(skip_index_snd_input_buffer_open) int glshim_snd_input_buffer_open(snd_input_t ** inputp, const char * buffer, ssize_t size) { @@ -9614,7 +9614,7 @@ int glshim_snd_input_buffer_open(snd_input_t ** inputp, const char * buffer, ssi syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_input_buffer_open(snd_input_t ** inputp, const char * buffer, ssize_t size) __attribute__((alias("glshim_snd_input_buffer_open"))); +int snd_input_buffer_open(snd_input_t ** inputp, const char * buffer, ssize_t size) __attribute__((alias("glshim_snd_input_buffer_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_input_close) && !defined(skip_index_snd_input_close) int glshim_snd_input_close(snd_input_t * input) { @@ -9625,7 +9625,7 @@ int glshim_snd_input_close(snd_input_t * input) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_input_close(snd_input_t * input) __attribute__((alias("glshim_snd_input_close"))); +int snd_input_close(snd_input_t * input) __attribute__((alias("glshim_snd_input_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_input_getc) && !defined(skip_index_snd_input_getc) int glshim_snd_input_getc(snd_input_t * input) { @@ -9636,7 +9636,7 @@ int glshim_snd_input_getc(snd_input_t * input) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_input_getc(snd_input_t * input) __attribute__((alias("glshim_snd_input_getc"))); +int snd_input_getc(snd_input_t * input) __attribute__((alias("glshim_snd_input_getc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_input_gets) && !defined(skip_index_snd_input_gets) char * glshim_snd_input_gets(snd_input_t * input, char * str, size_t size) { @@ -9649,7 +9649,7 @@ char * glshim_snd_input_gets(snd_input_t * input, char * str, size_t size) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -char * snd_input_gets(snd_input_t * input, char * str, size_t size) __attribute__((alias("glshim_snd_input_gets"))); +char * snd_input_gets(snd_input_t * input, char * str, size_t size) __attribute__((alias("glshim_snd_input_gets"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_input_stdio_attach) && !defined(skip_index_snd_input_stdio_attach) int glshim_snd_input_stdio_attach(snd_input_t ** inputp, FILE * fp, int _close) { @@ -9662,7 +9662,7 @@ int glshim_snd_input_stdio_attach(snd_input_t ** inputp, FILE * fp, int _close) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_input_stdio_attach(snd_input_t ** inputp, FILE * fp, int _close) __attribute__((alias("glshim_snd_input_stdio_attach"))); +int snd_input_stdio_attach(snd_input_t ** inputp, FILE * fp, int _close) __attribute__((alias("glshim_snd_input_stdio_attach"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_input_stdio_open) && !defined(skip_index_snd_input_stdio_open) int glshim_snd_input_stdio_open(snd_input_t ** inputp, const char * file, const char * mode) { @@ -9675,7 +9675,7 @@ int glshim_snd_input_stdio_open(snd_input_t ** inputp, const char * file, const syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_input_stdio_open(snd_input_t ** inputp, const char * file, const char * mode) __attribute__((alias("glshim_snd_input_stdio_open"))); +int snd_input_stdio_open(snd_input_t ** inputp, const char * file, const char * mode) __attribute__((alias("glshim_snd_input_stdio_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_input_ungetc) && !defined(skip_index_snd_input_ungetc) int glshim_snd_input_ungetc(snd_input_t * input, int c) { @@ -9687,7 +9687,7 @@ int glshim_snd_input_ungetc(snd_input_t * input, int c) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_input_ungetc(snd_input_t * input, int c) __attribute__((alias("glshim_snd_input_ungetc"))); +int snd_input_ungetc(snd_input_t * input, int c) __attribute__((alias("glshim_snd_input_ungetc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_lib_error_set_handler) && !defined(skip_index_snd_lib_error_set_handler) int glshim_snd_lib_error_set_handler(snd_lib_error_handler_t handler) { @@ -9698,7 +9698,7 @@ int glshim_snd_lib_error_set_handler(snd_lib_error_handler_t handler) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_lib_error_set_handler(snd_lib_error_handler_t handler) __attribute__((alias("glshim_snd_lib_error_set_handler"))); +int snd_lib_error_set_handler(snd_lib_error_handler_t handler) __attribute__((alias("glshim_snd_lib_error_set_handler"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_midi_event_decode) && !defined(skip_index_snd_midi_event_decode) long glshim_snd_midi_event_decode(snd_midi_event_t * dev, unsigned char * buf, long count, const snd_seq_event_t * ev) { @@ -9712,7 +9712,7 @@ long glshim_snd_midi_event_decode(snd_midi_event_t * dev, unsigned char * buf, l syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_midi_event_decode(snd_midi_event_t * dev, unsigned char * buf, long count, const snd_seq_event_t * ev) __attribute__((alias("glshim_snd_midi_event_decode"))); +long snd_midi_event_decode(snd_midi_event_t * dev, unsigned char * buf, long count, const snd_seq_event_t * ev) __attribute__((alias("glshim_snd_midi_event_decode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_midi_event_encode) && !defined(skip_index_snd_midi_event_encode) long glshim_snd_midi_event_encode(snd_midi_event_t * dev, const unsigned char * buf, long count, snd_seq_event_t * ev) { @@ -9726,7 +9726,7 @@ long glshim_snd_midi_event_encode(snd_midi_event_t * dev, const unsigned char * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_midi_event_encode(snd_midi_event_t * dev, const unsigned char * buf, long count, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_midi_event_encode"))); +long snd_midi_event_encode(snd_midi_event_t * dev, const unsigned char * buf, long count, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_midi_event_encode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_midi_event_encode_byte) && !defined(skip_index_snd_midi_event_encode_byte) int glshim_snd_midi_event_encode_byte(snd_midi_event_t * dev, int c, snd_seq_event_t * ev) { @@ -9739,7 +9739,7 @@ int glshim_snd_midi_event_encode_byte(snd_midi_event_t * dev, int c, snd_seq_eve syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_midi_event_encode_byte(snd_midi_event_t * dev, int c, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_midi_event_encode_byte"))); +int snd_midi_event_encode_byte(snd_midi_event_t * dev, int c, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_midi_event_encode_byte"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_midi_event_free) && !defined(skip_index_snd_midi_event_free) void glshim_snd_midi_event_free(snd_midi_event_t * dev) { @@ -9748,7 +9748,7 @@ void glshim_snd_midi_event_free(snd_midi_event_t * dev) { packed_data.args.a1 = (snd_midi_event_t *)dev; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_midi_event_free(snd_midi_event_t * dev) __attribute__((alias("glshim_snd_midi_event_free"))); +void snd_midi_event_free(snd_midi_event_t * dev) __attribute__((alias("glshim_snd_midi_event_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_midi_event_init) && !defined(skip_index_snd_midi_event_init) void glshim_snd_midi_event_init(snd_midi_event_t * dev) { @@ -9757,7 +9757,7 @@ void glshim_snd_midi_event_init(snd_midi_event_t * dev) { packed_data.args.a1 = (snd_midi_event_t *)dev; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_midi_event_init(snd_midi_event_t * dev) __attribute__((alias("glshim_snd_midi_event_init"))); +void snd_midi_event_init(snd_midi_event_t * dev) __attribute__((alias("glshim_snd_midi_event_init"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_midi_event_new) && !defined(skip_index_snd_midi_event_new) int glshim_snd_midi_event_new(size_t bufsize, snd_midi_event_t ** rdev) { @@ -9769,7 +9769,7 @@ int glshim_snd_midi_event_new(size_t bufsize, snd_midi_event_t ** rdev) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_midi_event_new(size_t bufsize, snd_midi_event_t ** rdev) __attribute__((alias("glshim_snd_midi_event_new"))); +int snd_midi_event_new(size_t bufsize, snd_midi_event_t ** rdev) __attribute__((alias("glshim_snd_midi_event_new"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_midi_event_no_status) && !defined(skip_index_snd_midi_event_no_status) void glshim_snd_midi_event_no_status(snd_midi_event_t * dev, int on) { @@ -9779,7 +9779,7 @@ void glshim_snd_midi_event_no_status(snd_midi_event_t * dev, int on) { packed_data.args.a2 = (int)on; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_midi_event_no_status(snd_midi_event_t * dev, int on) __attribute__((alias("glshim_snd_midi_event_no_status"))); +void snd_midi_event_no_status(snd_midi_event_t * dev, int on) __attribute__((alias("glshim_snd_midi_event_no_status"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_midi_event_reset_decode) && !defined(skip_index_snd_midi_event_reset_decode) void glshim_snd_midi_event_reset_decode(snd_midi_event_t * dev) { @@ -9788,7 +9788,7 @@ void glshim_snd_midi_event_reset_decode(snd_midi_event_t * dev) { packed_data.args.a1 = (snd_midi_event_t *)dev; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_midi_event_reset_decode(snd_midi_event_t * dev) __attribute__((alias("glshim_snd_midi_event_reset_decode"))); +void snd_midi_event_reset_decode(snd_midi_event_t * dev) __attribute__((alias("glshim_snd_midi_event_reset_decode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_midi_event_reset_encode) && !defined(skip_index_snd_midi_event_reset_encode) void glshim_snd_midi_event_reset_encode(snd_midi_event_t * dev) { @@ -9797,7 +9797,7 @@ void glshim_snd_midi_event_reset_encode(snd_midi_event_t * dev) { packed_data.args.a1 = (snd_midi_event_t *)dev; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_midi_event_reset_encode(snd_midi_event_t * dev) __attribute__((alias("glshim_snd_midi_event_reset_encode"))); +void snd_midi_event_reset_encode(snd_midi_event_t * dev) __attribute__((alias("glshim_snd_midi_event_reset_encode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_midi_event_resize_buffer) && !defined(skip_index_snd_midi_event_resize_buffer) int glshim_snd_midi_event_resize_buffer(snd_midi_event_t * dev, size_t bufsize) { @@ -9809,7 +9809,7 @@ int glshim_snd_midi_event_resize_buffer(snd_midi_event_t * dev, size_t bufsize) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_midi_event_resize_buffer(snd_midi_event_t * dev, size_t bufsize) __attribute__((alias("glshim_snd_midi_event_resize_buffer"))); +int snd_midi_event_resize_buffer(snd_midi_event_t * dev, size_t bufsize) __attribute__((alias("glshim_snd_midi_event_resize_buffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_attach) && !defined(skip_index_snd_mixer_attach) int glshim_snd_mixer_attach(snd_mixer_t * mixer, const char * name) { @@ -9821,7 +9821,7 @@ int glshim_snd_mixer_attach(snd_mixer_t * mixer, const char * name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_attach(snd_mixer_t * mixer, const char * name) __attribute__((alias("glshim_snd_mixer_attach"))); +int snd_mixer_attach(snd_mixer_t * mixer, const char * name) __attribute__((alias("glshim_snd_mixer_attach"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_attach_hctl) && !defined(skip_index_snd_mixer_attach_hctl) int glshim_snd_mixer_attach_hctl(snd_mixer_t * mixer, snd_hctl_t * hctl) { @@ -9833,7 +9833,7 @@ int glshim_snd_mixer_attach_hctl(snd_mixer_t * mixer, snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_attach_hctl(snd_mixer_t * mixer, snd_hctl_t * hctl) __attribute__((alias("glshim_snd_mixer_attach_hctl"))); +int snd_mixer_attach_hctl(snd_mixer_t * mixer, snd_hctl_t * hctl) __attribute__((alias("glshim_snd_mixer_attach_hctl"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_copy) && !defined(skip_index_snd_mixer_class_copy) void glshim_snd_mixer_class_copy(snd_mixer_class_t * dst, const snd_mixer_class_t * src) { @@ -9843,7 +9843,7 @@ void glshim_snd_mixer_class_copy(snd_mixer_class_t * dst, const snd_mixer_class_ packed_data.args.a2 = (snd_mixer_class_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_class_copy(snd_mixer_class_t * dst, const snd_mixer_class_t * src) __attribute__((alias("glshim_snd_mixer_class_copy"))); +void snd_mixer_class_copy(snd_mixer_class_t * dst, const snd_mixer_class_t * src) __attribute__((alias("glshim_snd_mixer_class_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_free) && !defined(skip_index_snd_mixer_class_free) void glshim_snd_mixer_class_free(snd_mixer_class_t * obj) { @@ -9852,7 +9852,7 @@ void glshim_snd_mixer_class_free(snd_mixer_class_t * obj) { packed_data.args.a1 = (snd_mixer_class_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_class_free(snd_mixer_class_t * obj) __attribute__((alias("glshim_snd_mixer_class_free"))); +void snd_mixer_class_free(snd_mixer_class_t * obj) __attribute__((alias("glshim_snd_mixer_class_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_get_compare) && !defined(skip_index_snd_mixer_class_get_compare) snd_mixer_compare_t glshim_snd_mixer_class_get_compare(const snd_mixer_class_t * class_) { @@ -9863,7 +9863,7 @@ snd_mixer_compare_t glshim_snd_mixer_class_get_compare(const snd_mixer_class_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_mixer_compare_t snd_mixer_class_get_compare(const snd_mixer_class_t * class_) __attribute__((alias("glshim_snd_mixer_class_get_compare"))); +snd_mixer_compare_t snd_mixer_class_get_compare(const snd_mixer_class_t * class_) __attribute__((alias("glshim_snd_mixer_class_get_compare"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_get_event) && !defined(skip_index_snd_mixer_class_get_event) snd_mixer_event_t glshim_snd_mixer_class_get_event(const snd_mixer_class_t * class_) { @@ -9874,7 +9874,7 @@ snd_mixer_event_t glshim_snd_mixer_class_get_event(const snd_mixer_class_t * cla syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_mixer_event_t snd_mixer_class_get_event(const snd_mixer_class_t * class_) __attribute__((alias("glshim_snd_mixer_class_get_event"))); +snd_mixer_event_t snd_mixer_class_get_event(const snd_mixer_class_t * class_) __attribute__((alias("glshim_snd_mixer_class_get_event"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_get_mixer) && !defined(skip_index_snd_mixer_class_get_mixer) snd_mixer_t * glshim_snd_mixer_class_get_mixer(const snd_mixer_class_t * class_) { @@ -9885,7 +9885,7 @@ snd_mixer_t * glshim_snd_mixer_class_get_mixer(const snd_mixer_class_t * class_) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_mixer_t * snd_mixer_class_get_mixer(const snd_mixer_class_t * class_) __attribute__((alias("glshim_snd_mixer_class_get_mixer"))); +snd_mixer_t * snd_mixer_class_get_mixer(const snd_mixer_class_t * class_) __attribute__((alias("glshim_snd_mixer_class_get_mixer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_get_private) && !defined(skip_index_snd_mixer_class_get_private) void * glshim_snd_mixer_class_get_private(const snd_mixer_class_t * class_) { @@ -9896,7 +9896,7 @@ void * glshim_snd_mixer_class_get_private(const snd_mixer_class_t * class_) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_mixer_class_get_private(const snd_mixer_class_t * class_) __attribute__((alias("glshim_snd_mixer_class_get_private"))); +void * snd_mixer_class_get_private(const snd_mixer_class_t * class_) __attribute__((alias("glshim_snd_mixer_class_get_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_malloc) && !defined(skip_index_snd_mixer_class_malloc) int glshim_snd_mixer_class_malloc(snd_mixer_class_t ** ptr) { @@ -9907,7 +9907,7 @@ int glshim_snd_mixer_class_malloc(snd_mixer_class_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_class_malloc(snd_mixer_class_t ** ptr) __attribute__((alias("glshim_snd_mixer_class_malloc"))); +int snd_mixer_class_malloc(snd_mixer_class_t ** ptr) __attribute__((alias("glshim_snd_mixer_class_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_register) && !defined(skip_index_snd_mixer_class_register) int glshim_snd_mixer_class_register(snd_mixer_class_t * class_, snd_mixer_t * mixer) { @@ -9919,7 +9919,7 @@ int glshim_snd_mixer_class_register(snd_mixer_class_t * class_, snd_mixer_t * mi syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_class_register(snd_mixer_class_t * class_, snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_class_register"))); +int snd_mixer_class_register(snd_mixer_class_t * class_, snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_class_register"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_set_compare) && !defined(skip_index_snd_mixer_class_set_compare) int glshim_snd_mixer_class_set_compare(snd_mixer_class_t * class_, snd_mixer_compare_t compare) { @@ -9931,7 +9931,7 @@ int glshim_snd_mixer_class_set_compare(snd_mixer_class_t * class_, snd_mixer_com syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_class_set_compare(snd_mixer_class_t * class_, snd_mixer_compare_t compare) __attribute__((alias("glshim_snd_mixer_class_set_compare"))); +int snd_mixer_class_set_compare(snd_mixer_class_t * class_, snd_mixer_compare_t compare) __attribute__((alias("glshim_snd_mixer_class_set_compare"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_set_event) && !defined(skip_index_snd_mixer_class_set_event) int glshim_snd_mixer_class_set_event(snd_mixer_class_t * class_, snd_mixer_event_t event) { @@ -9943,7 +9943,7 @@ int glshim_snd_mixer_class_set_event(snd_mixer_class_t * class_, snd_mixer_event syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_class_set_event(snd_mixer_class_t * class_, snd_mixer_event_t event) __attribute__((alias("glshim_snd_mixer_class_set_event"))); +int snd_mixer_class_set_event(snd_mixer_class_t * class_, snd_mixer_event_t event) __attribute__((alias("glshim_snd_mixer_class_set_event"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_set_private) && !defined(skip_index_snd_mixer_class_set_private) int glshim_snd_mixer_class_set_private(snd_mixer_class_t * class_, void * private_data) { @@ -9955,7 +9955,7 @@ int glshim_snd_mixer_class_set_private(snd_mixer_class_t * class_, void * privat syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_class_set_private(snd_mixer_class_t * class_, void * private_data) __attribute__((alias("glshim_snd_mixer_class_set_private"))); +int snd_mixer_class_set_private(snd_mixer_class_t * class_, void * private_data) __attribute__((alias("glshim_snd_mixer_class_set_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_sizeof) && !defined(skip_index_snd_mixer_class_sizeof) size_t glshim_snd_mixer_class_sizeof() { @@ -9965,7 +9965,7 @@ size_t glshim_snd_mixer_class_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_mixer_class_sizeof() __attribute__((alias("glshim_snd_mixer_class_sizeof"))); +size_t snd_mixer_class_sizeof() __attribute__((alias("glshim_snd_mixer_class_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_class_unregister) && !defined(skip_index_snd_mixer_class_unregister) int glshim_snd_mixer_class_unregister(snd_mixer_class_t * clss) { @@ -9976,7 +9976,7 @@ int glshim_snd_mixer_class_unregister(snd_mixer_class_t * clss) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_class_unregister(snd_mixer_class_t * clss) __attribute__((alias("glshim_snd_mixer_class_unregister"))); +int snd_mixer_class_unregister(snd_mixer_class_t * clss) __attribute__((alias("glshim_snd_mixer_class_unregister"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_close) && !defined(skip_index_snd_mixer_close) int glshim_snd_mixer_close(snd_mixer_t * mixer) { @@ -9987,7 +9987,7 @@ int glshim_snd_mixer_close(snd_mixer_t * mixer) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_close(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_close"))); +int snd_mixer_close(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_detach) && !defined(skip_index_snd_mixer_detach) int glshim_snd_mixer_detach(snd_mixer_t * mixer, const char * name) { @@ -9999,7 +9999,7 @@ int glshim_snd_mixer_detach(snd_mixer_t * mixer, const char * name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_detach(snd_mixer_t * mixer, const char * name) __attribute__((alias("glshim_snd_mixer_detach"))); +int snd_mixer_detach(snd_mixer_t * mixer, const char * name) __attribute__((alias("glshim_snd_mixer_detach"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_detach_hctl) && !defined(skip_index_snd_mixer_detach_hctl) int glshim_snd_mixer_detach_hctl(snd_mixer_t * mixer, snd_hctl_t * hctl) { @@ -10011,7 +10011,7 @@ int glshim_snd_mixer_detach_hctl(snd_mixer_t * mixer, snd_hctl_t * hctl) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_detach_hctl(snd_mixer_t * mixer, snd_hctl_t * hctl) __attribute__((alias("glshim_snd_mixer_detach_hctl"))); +int snd_mixer_detach_hctl(snd_mixer_t * mixer, snd_hctl_t * hctl) __attribute__((alias("glshim_snd_mixer_detach_hctl"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_add) && !defined(skip_index_snd_mixer_elem_add) int glshim_snd_mixer_elem_add(snd_mixer_elem_t * elem, snd_mixer_class_t * class_) { @@ -10023,7 +10023,7 @@ int glshim_snd_mixer_elem_add(snd_mixer_elem_t * elem, snd_mixer_class_t * class syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_elem_add(snd_mixer_elem_t * elem, snd_mixer_class_t * class_) __attribute__((alias("glshim_snd_mixer_elem_add"))); +int snd_mixer_elem_add(snd_mixer_elem_t * elem, snd_mixer_class_t * class_) __attribute__((alias("glshim_snd_mixer_elem_add"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_attach) && !defined(skip_index_snd_mixer_elem_attach) int glshim_snd_mixer_elem_attach(snd_mixer_elem_t * melem, snd_hctl_elem_t * helem) { @@ -10035,7 +10035,7 @@ int glshim_snd_mixer_elem_attach(snd_mixer_elem_t * melem, snd_hctl_elem_t * hel syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_elem_attach(snd_mixer_elem_t * melem, snd_hctl_elem_t * helem) __attribute__((alias("glshim_snd_mixer_elem_attach"))); +int snd_mixer_elem_attach(snd_mixer_elem_t * melem, snd_hctl_elem_t * helem) __attribute__((alias("glshim_snd_mixer_elem_attach"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_detach) && !defined(skip_index_snd_mixer_elem_detach) int glshim_snd_mixer_elem_detach(snd_mixer_elem_t * melem, snd_hctl_elem_t * helem) { @@ -10047,7 +10047,7 @@ int glshim_snd_mixer_elem_detach(snd_mixer_elem_t * melem, snd_hctl_elem_t * hel syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_elem_detach(snd_mixer_elem_t * melem, snd_hctl_elem_t * helem) __attribute__((alias("glshim_snd_mixer_elem_detach"))); +int snd_mixer_elem_detach(snd_mixer_elem_t * melem, snd_hctl_elem_t * helem) __attribute__((alias("glshim_snd_mixer_elem_detach"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_empty) && !defined(skip_index_snd_mixer_elem_empty) int glshim_snd_mixer_elem_empty(snd_mixer_elem_t * melem) { @@ -10058,7 +10058,7 @@ int glshim_snd_mixer_elem_empty(snd_mixer_elem_t * melem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_elem_empty(snd_mixer_elem_t * melem) __attribute__((alias("glshim_snd_mixer_elem_empty"))); +int snd_mixer_elem_empty(snd_mixer_elem_t * melem) __attribute__((alias("glshim_snd_mixer_elem_empty"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_free) && !defined(skip_index_snd_mixer_elem_free) void glshim_snd_mixer_elem_free(snd_mixer_elem_t * elem) { @@ -10067,7 +10067,7 @@ void glshim_snd_mixer_elem_free(snd_mixer_elem_t * elem) { packed_data.args.a1 = (snd_mixer_elem_t *)elem; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_elem_free(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_free"))); +void snd_mixer_elem_free(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_get_callback_private) && !defined(skip_index_snd_mixer_elem_get_callback_private) void * glshim_snd_mixer_elem_get_callback_private(const snd_mixer_elem_t * obj) { @@ -10078,7 +10078,7 @@ void * glshim_snd_mixer_elem_get_callback_private(const snd_mixer_elem_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_mixer_elem_get_callback_private(const snd_mixer_elem_t * obj) __attribute__((alias("glshim_snd_mixer_elem_get_callback_private"))); +void * snd_mixer_elem_get_callback_private(const snd_mixer_elem_t * obj) __attribute__((alias("glshim_snd_mixer_elem_get_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_get_private) && !defined(skip_index_snd_mixer_elem_get_private) void * glshim_snd_mixer_elem_get_private(const snd_mixer_elem_t * melem) { @@ -10089,7 +10089,7 @@ void * glshim_snd_mixer_elem_get_private(const snd_mixer_elem_t * melem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_mixer_elem_get_private(const snd_mixer_elem_t * melem) __attribute__((alias("glshim_snd_mixer_elem_get_private"))); +void * snd_mixer_elem_get_private(const snd_mixer_elem_t * melem) __attribute__((alias("glshim_snd_mixer_elem_get_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_get_type) && !defined(skip_index_snd_mixer_elem_get_type) snd_mixer_elem_type_t glshim_snd_mixer_elem_get_type(const snd_mixer_elem_t * obj) { @@ -10100,7 +10100,7 @@ snd_mixer_elem_type_t glshim_snd_mixer_elem_get_type(const snd_mixer_elem_t * ob syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_mixer_elem_type_t snd_mixer_elem_get_type(const snd_mixer_elem_t * obj) __attribute__((alias("glshim_snd_mixer_elem_get_type"))); +snd_mixer_elem_type_t snd_mixer_elem_get_type(const snd_mixer_elem_t * obj) __attribute__((alias("glshim_snd_mixer_elem_get_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_info) && !defined(skip_index_snd_mixer_elem_info) int glshim_snd_mixer_elem_info(snd_mixer_elem_t * elem) { @@ -10111,7 +10111,7 @@ int glshim_snd_mixer_elem_info(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_elem_info(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_info"))); +int snd_mixer_elem_info(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_next) && !defined(skip_index_snd_mixer_elem_next) snd_mixer_elem_t * glshim_snd_mixer_elem_next(snd_mixer_elem_t * elem) { @@ -10122,7 +10122,7 @@ snd_mixer_elem_t * glshim_snd_mixer_elem_next(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_mixer_elem_t * snd_mixer_elem_next(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_next"))); +snd_mixer_elem_t * snd_mixer_elem_next(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_next"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_prev) && !defined(skip_index_snd_mixer_elem_prev) snd_mixer_elem_t * glshim_snd_mixer_elem_prev(snd_mixer_elem_t * elem) { @@ -10133,7 +10133,7 @@ snd_mixer_elem_t * glshim_snd_mixer_elem_prev(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_mixer_elem_t * snd_mixer_elem_prev(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_prev"))); +snd_mixer_elem_t * snd_mixer_elem_prev(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_prev"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_remove) && !defined(skip_index_snd_mixer_elem_remove) int glshim_snd_mixer_elem_remove(snd_mixer_elem_t * elem) { @@ -10144,7 +10144,7 @@ int glshim_snd_mixer_elem_remove(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_elem_remove(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_remove"))); +int snd_mixer_elem_remove(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_remove"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_set_callback) && !defined(skip_index_snd_mixer_elem_set_callback) void glshim_snd_mixer_elem_set_callback(snd_mixer_elem_t * obj, snd_mixer_elem_callback_t val) { @@ -10154,7 +10154,7 @@ void glshim_snd_mixer_elem_set_callback(snd_mixer_elem_t * obj, snd_mixer_elem_c packed_data.args.a2 = (snd_mixer_elem_callback_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_elem_set_callback(snd_mixer_elem_t * obj, snd_mixer_elem_callback_t val) __attribute__((alias("glshim_snd_mixer_elem_set_callback"))); +void snd_mixer_elem_set_callback(snd_mixer_elem_t * obj, snd_mixer_elem_callback_t val) __attribute__((alias("glshim_snd_mixer_elem_set_callback"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_set_callback_private) && !defined(skip_index_snd_mixer_elem_set_callback_private) void glshim_snd_mixer_elem_set_callback_private(snd_mixer_elem_t * obj, void * val) { @@ -10164,7 +10164,7 @@ void glshim_snd_mixer_elem_set_callback_private(snd_mixer_elem_t * obj, void * v packed_data.args.a2 = (void *)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_elem_set_callback_private(snd_mixer_elem_t * obj, void * val) __attribute__((alias("glshim_snd_mixer_elem_set_callback_private"))); +void snd_mixer_elem_set_callback_private(snd_mixer_elem_t * obj, void * val) __attribute__((alias("glshim_snd_mixer_elem_set_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_elem_value) && !defined(skip_index_snd_mixer_elem_value) int glshim_snd_mixer_elem_value(snd_mixer_elem_t * elem) { @@ -10175,7 +10175,7 @@ int glshim_snd_mixer_elem_value(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_elem_value(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_value"))); +int snd_mixer_elem_value(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_elem_value"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_find_selem) && !defined(skip_index_snd_mixer_find_selem) snd_mixer_elem_t * glshim_snd_mixer_find_selem(snd_mixer_t * mixer, const snd_mixer_selem_id_t * id) { @@ -10187,7 +10187,7 @@ snd_mixer_elem_t * glshim_snd_mixer_find_selem(snd_mixer_t * mixer, const snd_mi syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_mixer_elem_t * snd_mixer_find_selem(snd_mixer_t * mixer, const snd_mixer_selem_id_t * id) __attribute__((alias("glshim_snd_mixer_find_selem"))); +snd_mixer_elem_t * snd_mixer_find_selem(snd_mixer_t * mixer, const snd_mixer_selem_id_t * id) __attribute__((alias("glshim_snd_mixer_find_selem"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_first_elem) && !defined(skip_index_snd_mixer_first_elem) snd_mixer_elem_t * glshim_snd_mixer_first_elem(snd_mixer_t * mixer) { @@ -10198,7 +10198,7 @@ snd_mixer_elem_t * glshim_snd_mixer_first_elem(snd_mixer_t * mixer) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_mixer_elem_t * snd_mixer_first_elem(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_first_elem"))); +snd_mixer_elem_t * snd_mixer_first_elem(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_first_elem"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_free) && !defined(skip_index_snd_mixer_free) void glshim_snd_mixer_free(snd_mixer_t * mixer) { @@ -10207,7 +10207,7 @@ void glshim_snd_mixer_free(snd_mixer_t * mixer) { packed_data.args.a1 = (snd_mixer_t *)mixer; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_free(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_free"))); +void snd_mixer_free(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_get_callback_private) && !defined(skip_index_snd_mixer_get_callback_private) void * glshim_snd_mixer_get_callback_private(const snd_mixer_t * obj) { @@ -10218,7 +10218,7 @@ void * glshim_snd_mixer_get_callback_private(const snd_mixer_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_mixer_get_callback_private(const snd_mixer_t * obj) __attribute__((alias("glshim_snd_mixer_get_callback_private"))); +void * snd_mixer_get_callback_private(const snd_mixer_t * obj) __attribute__((alias("glshim_snd_mixer_get_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_get_count) && !defined(skip_index_snd_mixer_get_count) unsigned int glshim_snd_mixer_get_count(const snd_mixer_t * obj) { @@ -10229,7 +10229,7 @@ unsigned int glshim_snd_mixer_get_count(const snd_mixer_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_mixer_get_count(const snd_mixer_t * obj) __attribute__((alias("glshim_snd_mixer_get_count"))); +unsigned int snd_mixer_get_count(const snd_mixer_t * obj) __attribute__((alias("glshim_snd_mixer_get_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_get_hctl) && !defined(skip_index_snd_mixer_get_hctl) int glshim_snd_mixer_get_hctl(snd_mixer_t * mixer, const char * name, snd_hctl_t ** hctl) { @@ -10242,7 +10242,7 @@ int glshim_snd_mixer_get_hctl(snd_mixer_t * mixer, const char * name, snd_hctl_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_get_hctl(snd_mixer_t * mixer, const char * name, snd_hctl_t ** hctl) __attribute__((alias("glshim_snd_mixer_get_hctl"))); +int snd_mixer_get_hctl(snd_mixer_t * mixer, const char * name, snd_hctl_t ** hctl) __attribute__((alias("glshim_snd_mixer_get_hctl"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_handle_events) && !defined(skip_index_snd_mixer_handle_events) int glshim_snd_mixer_handle_events(snd_mixer_t * mixer) { @@ -10253,7 +10253,7 @@ int glshim_snd_mixer_handle_events(snd_mixer_t * mixer) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_handle_events(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_handle_events"))); +int snd_mixer_handle_events(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_handle_events"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_last_elem) && !defined(skip_index_snd_mixer_last_elem) snd_mixer_elem_t * glshim_snd_mixer_last_elem(snd_mixer_t * mixer) { @@ -10264,7 +10264,7 @@ snd_mixer_elem_t * glshim_snd_mixer_last_elem(snd_mixer_t * mixer) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_mixer_elem_t * snd_mixer_last_elem(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_last_elem"))); +snd_mixer_elem_t * snd_mixer_last_elem(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_last_elem"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_load) && !defined(skip_index_snd_mixer_load) int glshim_snd_mixer_load(snd_mixer_t * mixer) { @@ -10275,7 +10275,7 @@ int glshim_snd_mixer_load(snd_mixer_t * mixer) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_load(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_load"))); +int snd_mixer_load(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_load"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_open) && !defined(skip_index_snd_mixer_open) int glshim_snd_mixer_open(snd_mixer_t ** mixer, int mode) { @@ -10287,7 +10287,7 @@ int glshim_snd_mixer_open(snd_mixer_t ** mixer, int mode) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_open(snd_mixer_t ** mixer, int mode) __attribute__((alias("glshim_snd_mixer_open"))); +int snd_mixer_open(snd_mixer_t ** mixer, int mode) __attribute__((alias("glshim_snd_mixer_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_poll_descriptors) && !defined(skip_index_snd_mixer_poll_descriptors) int glshim_snd_mixer_poll_descriptors(snd_mixer_t * mixer, struct pollfd * pfds, unsigned int space) { @@ -10300,7 +10300,7 @@ int glshim_snd_mixer_poll_descriptors(snd_mixer_t * mixer, struct pollfd * pfds, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_poll_descriptors(snd_mixer_t * mixer, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_mixer_poll_descriptors"))); +int snd_mixer_poll_descriptors(snd_mixer_t * mixer, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_mixer_poll_descriptors"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_poll_descriptors_count) && !defined(skip_index_snd_mixer_poll_descriptors_count) int glshim_snd_mixer_poll_descriptors_count(snd_mixer_t * mixer) { @@ -10311,7 +10311,7 @@ int glshim_snd_mixer_poll_descriptors_count(snd_mixer_t * mixer) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_poll_descriptors_count(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_poll_descriptors_count"))); +int snd_mixer_poll_descriptors_count(snd_mixer_t * mixer) __attribute__((alias("glshim_snd_mixer_poll_descriptors_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_poll_descriptors_revents) && !defined(skip_index_snd_mixer_poll_descriptors_revents) int glshim_snd_mixer_poll_descriptors_revents(snd_mixer_t * mixer, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) { @@ -10325,7 +10325,7 @@ int glshim_snd_mixer_poll_descriptors_revents(snd_mixer_t * mixer, struct pollfd syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_poll_descriptors_revents(snd_mixer_t * mixer, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_mixer_poll_descriptors_revents"))); +int snd_mixer_poll_descriptors_revents(snd_mixer_t * mixer, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_mixer_poll_descriptors_revents"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_channel_name) && !defined(skip_index_snd_mixer_selem_channel_name) const char * glshim_snd_mixer_selem_channel_name(snd_mixer_selem_channel_id_t channel) { @@ -10336,7 +10336,7 @@ const char * glshim_snd_mixer_selem_channel_name(snd_mixer_selem_channel_id_t ch syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_mixer_selem_channel_name(snd_mixer_selem_channel_id_t channel) __attribute__((alias("glshim_snd_mixer_selem_channel_name"))); +const char * snd_mixer_selem_channel_name(snd_mixer_selem_channel_id_t channel) __attribute__((alias("glshim_snd_mixer_selem_channel_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_capture_dB) && !defined(skip_index_snd_mixer_selem_get_capture_dB) int glshim_snd_mixer_selem_get_capture_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) { @@ -10349,7 +10349,7 @@ int glshim_snd_mixer_selem_get_capture_dB(snd_mixer_elem_t * elem, snd_mixer_sel syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_capture_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) __attribute__((alias("glshim_snd_mixer_selem_get_capture_dB"))); +int snd_mixer_selem_get_capture_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) __attribute__((alias("glshim_snd_mixer_selem_get_capture_dB"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_capture_dB_range) && !defined(skip_index_snd_mixer_selem_get_capture_dB_range) int glshim_snd_mixer_selem_get_capture_dB_range(snd_mixer_elem_t * elem, long * min, long * max) { @@ -10362,7 +10362,7 @@ int glshim_snd_mixer_selem_get_capture_dB_range(snd_mixer_elem_t * elem, long * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_capture_dB_range(snd_mixer_elem_t * elem, long * min, long * max) __attribute__((alias("glshim_snd_mixer_selem_get_capture_dB_range"))); +int snd_mixer_selem_get_capture_dB_range(snd_mixer_elem_t * elem, long * min, long * max) __attribute__((alias("glshim_snd_mixer_selem_get_capture_dB_range"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_capture_group) && !defined(skip_index_snd_mixer_selem_get_capture_group) int glshim_snd_mixer_selem_get_capture_group(snd_mixer_elem_t * elem) { @@ -10373,7 +10373,7 @@ int glshim_snd_mixer_selem_get_capture_group(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_capture_group(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_get_capture_group"))); +int snd_mixer_selem_get_capture_group(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_get_capture_group"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_capture_switch) && !defined(skip_index_snd_mixer_selem_get_capture_switch) int glshim_snd_mixer_selem_get_capture_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int * value) { @@ -10386,7 +10386,7 @@ int glshim_snd_mixer_selem_get_capture_switch(snd_mixer_elem_t * elem, snd_mixer syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_capture_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int * value) __attribute__((alias("glshim_snd_mixer_selem_get_capture_switch"))); +int snd_mixer_selem_get_capture_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int * value) __attribute__((alias("glshim_snd_mixer_selem_get_capture_switch"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_capture_volume) && !defined(skip_index_snd_mixer_selem_get_capture_volume) int glshim_snd_mixer_selem_get_capture_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) { @@ -10399,7 +10399,7 @@ int glshim_snd_mixer_selem_get_capture_volume(snd_mixer_elem_t * elem, snd_mixer syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_capture_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) __attribute__((alias("glshim_snd_mixer_selem_get_capture_volume"))); +int snd_mixer_selem_get_capture_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) __attribute__((alias("glshim_snd_mixer_selem_get_capture_volume"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_capture_volume_range) && !defined(skip_index_snd_mixer_selem_get_capture_volume_range) int glshim_snd_mixer_selem_get_capture_volume_range(snd_mixer_elem_t * elem, long * min, long * max) { @@ -10412,7 +10412,7 @@ int glshim_snd_mixer_selem_get_capture_volume_range(snd_mixer_elem_t * elem, lon syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_capture_volume_range(snd_mixer_elem_t * elem, long * min, long * max) __attribute__((alias("glshim_snd_mixer_selem_get_capture_volume_range"))); +int snd_mixer_selem_get_capture_volume_range(snd_mixer_elem_t * elem, long * min, long * max) __attribute__((alias("glshim_snd_mixer_selem_get_capture_volume_range"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_enum_item) && !defined(skip_index_snd_mixer_selem_get_enum_item) int glshim_snd_mixer_selem_get_enum_item(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, unsigned int * idxp) { @@ -10425,7 +10425,7 @@ int glshim_snd_mixer_selem_get_enum_item(snd_mixer_elem_t * elem, snd_mixer_sele syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_enum_item(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, unsigned int * idxp) __attribute__((alias("glshim_snd_mixer_selem_get_enum_item"))); +int snd_mixer_selem_get_enum_item(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, unsigned int * idxp) __attribute__((alias("glshim_snd_mixer_selem_get_enum_item"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_enum_item_name) && !defined(skip_index_snd_mixer_selem_get_enum_item_name) int glshim_snd_mixer_selem_get_enum_item_name(snd_mixer_elem_t * elem, unsigned int idx, size_t maxlen, char * str) { @@ -10439,7 +10439,7 @@ int glshim_snd_mixer_selem_get_enum_item_name(snd_mixer_elem_t * elem, unsigned syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_enum_item_name(snd_mixer_elem_t * elem, unsigned int idx, size_t maxlen, char * str) __attribute__((alias("glshim_snd_mixer_selem_get_enum_item_name"))); +int snd_mixer_selem_get_enum_item_name(snd_mixer_elem_t * elem, unsigned int idx, size_t maxlen, char * str) __attribute__((alias("glshim_snd_mixer_selem_get_enum_item_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_enum_items) && !defined(skip_index_snd_mixer_selem_get_enum_items) int glshim_snd_mixer_selem_get_enum_items(snd_mixer_elem_t * elem) { @@ -10450,7 +10450,7 @@ int glshim_snd_mixer_selem_get_enum_items(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_enum_items(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_get_enum_items"))); +int snd_mixer_selem_get_enum_items(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_get_enum_items"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_id) && !defined(skip_index_snd_mixer_selem_get_id) void glshim_snd_mixer_selem_get_id(snd_mixer_elem_t * element, snd_mixer_selem_id_t * id) { @@ -10460,7 +10460,7 @@ void glshim_snd_mixer_selem_get_id(snd_mixer_elem_t * element, snd_mixer_selem_i packed_data.args.a2 = (snd_mixer_selem_id_t *)id; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_selem_get_id(snd_mixer_elem_t * element, snd_mixer_selem_id_t * id) __attribute__((alias("glshim_snd_mixer_selem_get_id"))); +void snd_mixer_selem_get_id(snd_mixer_elem_t * element, snd_mixer_selem_id_t * id) __attribute__((alias("glshim_snd_mixer_selem_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_index) && !defined(skip_index_snd_mixer_selem_get_index) unsigned int glshim_snd_mixer_selem_get_index(snd_mixer_elem_t * elem) { @@ -10471,7 +10471,7 @@ unsigned int glshim_snd_mixer_selem_get_index(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_mixer_selem_get_index(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_get_index"))); +unsigned int snd_mixer_selem_get_index(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_name) && !defined(skip_index_snd_mixer_selem_get_name) const char * glshim_snd_mixer_selem_get_name(snd_mixer_elem_t * elem) { @@ -10482,7 +10482,7 @@ const char * glshim_snd_mixer_selem_get_name(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_mixer_selem_get_name(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_get_name"))); +const char * snd_mixer_selem_get_name(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_playback_dB) && !defined(skip_index_snd_mixer_selem_get_playback_dB) int glshim_snd_mixer_selem_get_playback_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) { @@ -10495,7 +10495,7 @@ int glshim_snd_mixer_selem_get_playback_dB(snd_mixer_elem_t * elem, snd_mixer_se syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_playback_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) __attribute__((alias("glshim_snd_mixer_selem_get_playback_dB"))); +int snd_mixer_selem_get_playback_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) __attribute__((alias("glshim_snd_mixer_selem_get_playback_dB"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_playback_dB_range) && !defined(skip_index_snd_mixer_selem_get_playback_dB_range) int glshim_snd_mixer_selem_get_playback_dB_range(snd_mixer_elem_t * elem, long * min, long * max) { @@ -10508,7 +10508,7 @@ int glshim_snd_mixer_selem_get_playback_dB_range(snd_mixer_elem_t * elem, long * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_playback_dB_range(snd_mixer_elem_t * elem, long * min, long * max) __attribute__((alias("glshim_snd_mixer_selem_get_playback_dB_range"))); +int snd_mixer_selem_get_playback_dB_range(snd_mixer_elem_t * elem, long * min, long * max) __attribute__((alias("glshim_snd_mixer_selem_get_playback_dB_range"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_playback_switch) && !defined(skip_index_snd_mixer_selem_get_playback_switch) int glshim_snd_mixer_selem_get_playback_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int * value) { @@ -10521,7 +10521,7 @@ int glshim_snd_mixer_selem_get_playback_switch(snd_mixer_elem_t * elem, snd_mixe syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_playback_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int * value) __attribute__((alias("glshim_snd_mixer_selem_get_playback_switch"))); +int snd_mixer_selem_get_playback_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int * value) __attribute__((alias("glshim_snd_mixer_selem_get_playback_switch"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_playback_volume) && !defined(skip_index_snd_mixer_selem_get_playback_volume) int glshim_snd_mixer_selem_get_playback_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) { @@ -10534,7 +10534,7 @@ int glshim_snd_mixer_selem_get_playback_volume(snd_mixer_elem_t * elem, snd_mixe syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_playback_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) __attribute__((alias("glshim_snd_mixer_selem_get_playback_volume"))); +int snd_mixer_selem_get_playback_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long * value) __attribute__((alias("glshim_snd_mixer_selem_get_playback_volume"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_get_playback_volume_range) && !defined(skip_index_snd_mixer_selem_get_playback_volume_range) int glshim_snd_mixer_selem_get_playback_volume_range(snd_mixer_elem_t * elem, long * min, long * max) { @@ -10547,7 +10547,7 @@ int glshim_snd_mixer_selem_get_playback_volume_range(snd_mixer_elem_t * elem, lo syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_get_playback_volume_range(snd_mixer_elem_t * elem, long * min, long * max) __attribute__((alias("glshim_snd_mixer_selem_get_playback_volume_range"))); +int snd_mixer_selem_get_playback_volume_range(snd_mixer_elem_t * elem, long * min, long * max) __attribute__((alias("glshim_snd_mixer_selem_get_playback_volume_range"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_capture_channel) && !defined(skip_index_snd_mixer_selem_has_capture_channel) int glshim_snd_mixer_selem_has_capture_channel(snd_mixer_elem_t * obj, snd_mixer_selem_channel_id_t channel) { @@ -10559,7 +10559,7 @@ int glshim_snd_mixer_selem_has_capture_channel(snd_mixer_elem_t * obj, snd_mixer syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_capture_channel(snd_mixer_elem_t * obj, snd_mixer_selem_channel_id_t channel) __attribute__((alias("glshim_snd_mixer_selem_has_capture_channel"))); +int snd_mixer_selem_has_capture_channel(snd_mixer_elem_t * obj, snd_mixer_selem_channel_id_t channel) __attribute__((alias("glshim_snd_mixer_selem_has_capture_channel"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_capture_switch) && !defined(skip_index_snd_mixer_selem_has_capture_switch) int glshim_snd_mixer_selem_has_capture_switch(snd_mixer_elem_t * elem) { @@ -10570,7 +10570,7 @@ int glshim_snd_mixer_selem_has_capture_switch(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_capture_switch(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_capture_switch"))); +int snd_mixer_selem_has_capture_switch(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_capture_switch"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_capture_switch_exclusive) && !defined(skip_index_snd_mixer_selem_has_capture_switch_exclusive) int glshim_snd_mixer_selem_has_capture_switch_exclusive(snd_mixer_elem_t * elem) { @@ -10581,7 +10581,7 @@ int glshim_snd_mixer_selem_has_capture_switch_exclusive(snd_mixer_elem_t * elem) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_capture_switch_exclusive(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_capture_switch_exclusive"))); +int snd_mixer_selem_has_capture_switch_exclusive(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_capture_switch_exclusive"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_capture_switch_joined) && !defined(skip_index_snd_mixer_selem_has_capture_switch_joined) int glshim_snd_mixer_selem_has_capture_switch_joined(snd_mixer_elem_t * elem) { @@ -10592,7 +10592,7 @@ int glshim_snd_mixer_selem_has_capture_switch_joined(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_capture_switch_joined(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_capture_switch_joined"))); +int snd_mixer_selem_has_capture_switch_joined(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_capture_switch_joined"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_capture_volume) && !defined(skip_index_snd_mixer_selem_has_capture_volume) int glshim_snd_mixer_selem_has_capture_volume(snd_mixer_elem_t * elem) { @@ -10603,7 +10603,7 @@ int glshim_snd_mixer_selem_has_capture_volume(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_capture_volume(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_capture_volume"))); +int snd_mixer_selem_has_capture_volume(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_capture_volume"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_capture_volume_joined) && !defined(skip_index_snd_mixer_selem_has_capture_volume_joined) int glshim_snd_mixer_selem_has_capture_volume_joined(snd_mixer_elem_t * elem) { @@ -10614,7 +10614,7 @@ int glshim_snd_mixer_selem_has_capture_volume_joined(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_capture_volume_joined(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_capture_volume_joined"))); +int snd_mixer_selem_has_capture_volume_joined(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_capture_volume_joined"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_common_switch) && !defined(skip_index_snd_mixer_selem_has_common_switch) int glshim_snd_mixer_selem_has_common_switch(snd_mixer_elem_t * elem) { @@ -10625,7 +10625,7 @@ int glshim_snd_mixer_selem_has_common_switch(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_common_switch(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_common_switch"))); +int snd_mixer_selem_has_common_switch(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_common_switch"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_common_volume) && !defined(skip_index_snd_mixer_selem_has_common_volume) int glshim_snd_mixer_selem_has_common_volume(snd_mixer_elem_t * elem) { @@ -10636,7 +10636,7 @@ int glshim_snd_mixer_selem_has_common_volume(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_common_volume(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_common_volume"))); +int snd_mixer_selem_has_common_volume(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_common_volume"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_playback_channel) && !defined(skip_index_snd_mixer_selem_has_playback_channel) int glshim_snd_mixer_selem_has_playback_channel(snd_mixer_elem_t * obj, snd_mixer_selem_channel_id_t channel) { @@ -10648,7 +10648,7 @@ int glshim_snd_mixer_selem_has_playback_channel(snd_mixer_elem_t * obj, snd_mixe syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_playback_channel(snd_mixer_elem_t * obj, snd_mixer_selem_channel_id_t channel) __attribute__((alias("glshim_snd_mixer_selem_has_playback_channel"))); +int snd_mixer_selem_has_playback_channel(snd_mixer_elem_t * obj, snd_mixer_selem_channel_id_t channel) __attribute__((alias("glshim_snd_mixer_selem_has_playback_channel"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_playback_switch) && !defined(skip_index_snd_mixer_selem_has_playback_switch) int glshim_snd_mixer_selem_has_playback_switch(snd_mixer_elem_t * elem) { @@ -10659,7 +10659,7 @@ int glshim_snd_mixer_selem_has_playback_switch(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_playback_switch(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_playback_switch"))); +int snd_mixer_selem_has_playback_switch(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_playback_switch"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_playback_switch_joined) && !defined(skip_index_snd_mixer_selem_has_playback_switch_joined) int glshim_snd_mixer_selem_has_playback_switch_joined(snd_mixer_elem_t * elem) { @@ -10670,7 +10670,7 @@ int glshim_snd_mixer_selem_has_playback_switch_joined(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_playback_switch_joined(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_playback_switch_joined"))); +int snd_mixer_selem_has_playback_switch_joined(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_playback_switch_joined"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_playback_volume) && !defined(skip_index_snd_mixer_selem_has_playback_volume) int glshim_snd_mixer_selem_has_playback_volume(snd_mixer_elem_t * elem) { @@ -10681,7 +10681,7 @@ int glshim_snd_mixer_selem_has_playback_volume(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_playback_volume(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_playback_volume"))); +int snd_mixer_selem_has_playback_volume(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_playback_volume"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_has_playback_volume_joined) && !defined(skip_index_snd_mixer_selem_has_playback_volume_joined) int glshim_snd_mixer_selem_has_playback_volume_joined(snd_mixer_elem_t * elem) { @@ -10692,7 +10692,7 @@ int glshim_snd_mixer_selem_has_playback_volume_joined(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_has_playback_volume_joined(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_playback_volume_joined"))); +int snd_mixer_selem_has_playback_volume_joined(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_has_playback_volume_joined"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_id_copy) && !defined(skip_index_snd_mixer_selem_id_copy) void glshim_snd_mixer_selem_id_copy(snd_mixer_selem_id_t * dst, const snd_mixer_selem_id_t * src) { @@ -10702,7 +10702,7 @@ void glshim_snd_mixer_selem_id_copy(snd_mixer_selem_id_t * dst, const snd_mixer_ packed_data.args.a2 = (snd_mixer_selem_id_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_selem_id_copy(snd_mixer_selem_id_t * dst, const snd_mixer_selem_id_t * src) __attribute__((alias("glshim_snd_mixer_selem_id_copy"))); +void snd_mixer_selem_id_copy(snd_mixer_selem_id_t * dst, const snd_mixer_selem_id_t * src) __attribute__((alias("glshim_snd_mixer_selem_id_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_id_free) && !defined(skip_index_snd_mixer_selem_id_free) void glshim_snd_mixer_selem_id_free(snd_mixer_selem_id_t * obj) { @@ -10711,7 +10711,7 @@ void glshim_snd_mixer_selem_id_free(snd_mixer_selem_id_t * obj) { packed_data.args.a1 = (snd_mixer_selem_id_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_selem_id_free(snd_mixer_selem_id_t * obj) __attribute__((alias("glshim_snd_mixer_selem_id_free"))); +void snd_mixer_selem_id_free(snd_mixer_selem_id_t * obj) __attribute__((alias("glshim_snd_mixer_selem_id_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_id_get_index) && !defined(skip_index_snd_mixer_selem_id_get_index) unsigned int glshim_snd_mixer_selem_id_get_index(const snd_mixer_selem_id_t * obj) { @@ -10722,7 +10722,7 @@ unsigned int glshim_snd_mixer_selem_id_get_index(const snd_mixer_selem_id_t * ob syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_mixer_selem_id_get_index(const snd_mixer_selem_id_t * obj) __attribute__((alias("glshim_snd_mixer_selem_id_get_index"))); +unsigned int snd_mixer_selem_id_get_index(const snd_mixer_selem_id_t * obj) __attribute__((alias("glshim_snd_mixer_selem_id_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_id_get_name) && !defined(skip_index_snd_mixer_selem_id_get_name) const char * glshim_snd_mixer_selem_id_get_name(const snd_mixer_selem_id_t * obj) { @@ -10733,7 +10733,7 @@ const char * glshim_snd_mixer_selem_id_get_name(const snd_mixer_selem_id_t * obj syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_mixer_selem_id_get_name(const snd_mixer_selem_id_t * obj) __attribute__((alias("glshim_snd_mixer_selem_id_get_name"))); +const char * snd_mixer_selem_id_get_name(const snd_mixer_selem_id_t * obj) __attribute__((alias("glshim_snd_mixer_selem_id_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_id_malloc) && !defined(skip_index_snd_mixer_selem_id_malloc) int glshim_snd_mixer_selem_id_malloc(snd_mixer_selem_id_t ** ptr) { @@ -10744,7 +10744,7 @@ int glshim_snd_mixer_selem_id_malloc(snd_mixer_selem_id_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_id_malloc(snd_mixer_selem_id_t ** ptr) __attribute__((alias("glshim_snd_mixer_selem_id_malloc"))); +int snd_mixer_selem_id_malloc(snd_mixer_selem_id_t ** ptr) __attribute__((alias("glshim_snd_mixer_selem_id_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_id_set_index) && !defined(skip_index_snd_mixer_selem_id_set_index) void glshim_snd_mixer_selem_id_set_index(snd_mixer_selem_id_t * obj, unsigned int val) { @@ -10754,7 +10754,7 @@ void glshim_snd_mixer_selem_id_set_index(snd_mixer_selem_id_t * obj, unsigned in packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_selem_id_set_index(snd_mixer_selem_id_t * obj, unsigned int val) __attribute__((alias("glshim_snd_mixer_selem_id_set_index"))); +void snd_mixer_selem_id_set_index(snd_mixer_selem_id_t * obj, unsigned int val) __attribute__((alias("glshim_snd_mixer_selem_id_set_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_id_set_name) && !defined(skip_index_snd_mixer_selem_id_set_name) void glshim_snd_mixer_selem_id_set_name(snd_mixer_selem_id_t * obj, const char * val) { @@ -10764,7 +10764,7 @@ void glshim_snd_mixer_selem_id_set_name(snd_mixer_selem_id_t * obj, const char * packed_data.args.a2 = (char *)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_selem_id_set_name(snd_mixer_selem_id_t * obj, const char * val) __attribute__((alias("glshim_snd_mixer_selem_id_set_name"))); +void snd_mixer_selem_id_set_name(snd_mixer_selem_id_t * obj, const char * val) __attribute__((alias("glshim_snd_mixer_selem_id_set_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_id_sizeof) && !defined(skip_index_snd_mixer_selem_id_sizeof) size_t glshim_snd_mixer_selem_id_sizeof() { @@ -10774,7 +10774,7 @@ size_t glshim_snd_mixer_selem_id_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_mixer_selem_id_sizeof() __attribute__((alias("glshim_snd_mixer_selem_id_sizeof"))); +size_t snd_mixer_selem_id_sizeof() __attribute__((alias("glshim_snd_mixer_selem_id_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_is_active) && !defined(skip_index_snd_mixer_selem_is_active) int glshim_snd_mixer_selem_is_active(snd_mixer_elem_t * elem) { @@ -10785,7 +10785,7 @@ int glshim_snd_mixer_selem_is_active(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_is_active(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_active"))); +int snd_mixer_selem_is_active(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_active"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_is_capture_mono) && !defined(skip_index_snd_mixer_selem_is_capture_mono) int glshim_snd_mixer_selem_is_capture_mono(snd_mixer_elem_t * elem) { @@ -10796,7 +10796,7 @@ int glshim_snd_mixer_selem_is_capture_mono(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_is_capture_mono(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_capture_mono"))); +int snd_mixer_selem_is_capture_mono(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_capture_mono"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_is_enum_capture) && !defined(skip_index_snd_mixer_selem_is_enum_capture) int glshim_snd_mixer_selem_is_enum_capture(snd_mixer_elem_t * elem) { @@ -10807,7 +10807,7 @@ int glshim_snd_mixer_selem_is_enum_capture(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_is_enum_capture(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_enum_capture"))); +int snd_mixer_selem_is_enum_capture(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_enum_capture"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_is_enum_playback) && !defined(skip_index_snd_mixer_selem_is_enum_playback) int glshim_snd_mixer_selem_is_enum_playback(snd_mixer_elem_t * elem) { @@ -10818,7 +10818,7 @@ int glshim_snd_mixer_selem_is_enum_playback(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_is_enum_playback(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_enum_playback"))); +int snd_mixer_selem_is_enum_playback(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_enum_playback"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_is_enumerated) && !defined(skip_index_snd_mixer_selem_is_enumerated) int glshim_snd_mixer_selem_is_enumerated(snd_mixer_elem_t * elem) { @@ -10829,7 +10829,7 @@ int glshim_snd_mixer_selem_is_enumerated(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_is_enumerated(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_enumerated"))); +int snd_mixer_selem_is_enumerated(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_enumerated"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_is_playback_mono) && !defined(skip_index_snd_mixer_selem_is_playback_mono) int glshim_snd_mixer_selem_is_playback_mono(snd_mixer_elem_t * elem) { @@ -10840,7 +10840,7 @@ int glshim_snd_mixer_selem_is_playback_mono(snd_mixer_elem_t * elem) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_is_playback_mono(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_playback_mono"))); +int snd_mixer_selem_is_playback_mono(snd_mixer_elem_t * elem) __attribute__((alias("glshim_snd_mixer_selem_is_playback_mono"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_register) && !defined(skip_index_snd_mixer_selem_register) int glshim_snd_mixer_selem_register(snd_mixer_t * mixer, struct snd_mixer_selem_regopt * options, snd_mixer_class_t ** classp) { @@ -10853,7 +10853,7 @@ int glshim_snd_mixer_selem_register(snd_mixer_t * mixer, struct snd_mixer_selem_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_register(snd_mixer_t * mixer, struct snd_mixer_selem_regopt * options, snd_mixer_class_t ** classp) __attribute__((alias("glshim_snd_mixer_selem_register"))); +int snd_mixer_selem_register(snd_mixer_t * mixer, struct snd_mixer_selem_regopt * options, snd_mixer_class_t ** classp) __attribute__((alias("glshim_snd_mixer_selem_register"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_capture_dB) && !defined(skip_index_snd_mixer_selem_set_capture_dB) int glshim_snd_mixer_selem_set_capture_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value, int dir) { @@ -10867,7 +10867,7 @@ int glshim_snd_mixer_selem_set_capture_dB(snd_mixer_elem_t * elem, snd_mixer_sel syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_capture_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value, int dir) __attribute__((alias("glshim_snd_mixer_selem_set_capture_dB"))); +int snd_mixer_selem_set_capture_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value, int dir) __attribute__((alias("glshim_snd_mixer_selem_set_capture_dB"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_capture_dB_all) && !defined(skip_index_snd_mixer_selem_set_capture_dB_all) int glshim_snd_mixer_selem_set_capture_dB_all(snd_mixer_elem_t * elem, long value, int dir) { @@ -10880,7 +10880,7 @@ int glshim_snd_mixer_selem_set_capture_dB_all(snd_mixer_elem_t * elem, long valu syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_capture_dB_all(snd_mixer_elem_t * elem, long value, int dir) __attribute__((alias("glshim_snd_mixer_selem_set_capture_dB_all"))); +int snd_mixer_selem_set_capture_dB_all(snd_mixer_elem_t * elem, long value, int dir) __attribute__((alias("glshim_snd_mixer_selem_set_capture_dB_all"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_capture_switch) && !defined(skip_index_snd_mixer_selem_set_capture_switch) int glshim_snd_mixer_selem_set_capture_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int value) { @@ -10893,7 +10893,7 @@ int glshim_snd_mixer_selem_set_capture_switch(snd_mixer_elem_t * elem, snd_mixer syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_capture_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int value) __attribute__((alias("glshim_snd_mixer_selem_set_capture_switch"))); +int snd_mixer_selem_set_capture_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int value) __attribute__((alias("glshim_snd_mixer_selem_set_capture_switch"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_capture_switch_all) && !defined(skip_index_snd_mixer_selem_set_capture_switch_all) int glshim_snd_mixer_selem_set_capture_switch_all(snd_mixer_elem_t * elem, int value) { @@ -10905,7 +10905,7 @@ int glshim_snd_mixer_selem_set_capture_switch_all(snd_mixer_elem_t * elem, int v syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_capture_switch_all(snd_mixer_elem_t * elem, int value) __attribute__((alias("glshim_snd_mixer_selem_set_capture_switch_all"))); +int snd_mixer_selem_set_capture_switch_all(snd_mixer_elem_t * elem, int value) __attribute__((alias("glshim_snd_mixer_selem_set_capture_switch_all"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_capture_volume) && !defined(skip_index_snd_mixer_selem_set_capture_volume) int glshim_snd_mixer_selem_set_capture_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value) { @@ -10918,7 +10918,7 @@ int glshim_snd_mixer_selem_set_capture_volume(snd_mixer_elem_t * elem, snd_mixer syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_capture_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value) __attribute__((alias("glshim_snd_mixer_selem_set_capture_volume"))); +int snd_mixer_selem_set_capture_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value) __attribute__((alias("glshim_snd_mixer_selem_set_capture_volume"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_capture_volume_all) && !defined(skip_index_snd_mixer_selem_set_capture_volume_all) int glshim_snd_mixer_selem_set_capture_volume_all(snd_mixer_elem_t * elem, long value) { @@ -10930,7 +10930,7 @@ int glshim_snd_mixer_selem_set_capture_volume_all(snd_mixer_elem_t * elem, long syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_capture_volume_all(snd_mixer_elem_t * elem, long value) __attribute__((alias("glshim_snd_mixer_selem_set_capture_volume_all"))); +int snd_mixer_selem_set_capture_volume_all(snd_mixer_elem_t * elem, long value) __attribute__((alias("glshim_snd_mixer_selem_set_capture_volume_all"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_capture_volume_range) && !defined(skip_index_snd_mixer_selem_set_capture_volume_range) int glshim_snd_mixer_selem_set_capture_volume_range(snd_mixer_elem_t * elem, long min, long max) { @@ -10943,7 +10943,7 @@ int glshim_snd_mixer_selem_set_capture_volume_range(snd_mixer_elem_t * elem, lon syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_capture_volume_range(snd_mixer_elem_t * elem, long min, long max) __attribute__((alias("glshim_snd_mixer_selem_set_capture_volume_range"))); +int snd_mixer_selem_set_capture_volume_range(snd_mixer_elem_t * elem, long min, long max) __attribute__((alias("glshim_snd_mixer_selem_set_capture_volume_range"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_enum_item) && !defined(skip_index_snd_mixer_selem_set_enum_item) int glshim_snd_mixer_selem_set_enum_item(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, unsigned int idx) { @@ -10956,7 +10956,7 @@ int glshim_snd_mixer_selem_set_enum_item(snd_mixer_elem_t * elem, snd_mixer_sele syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_enum_item(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, unsigned int idx) __attribute__((alias("glshim_snd_mixer_selem_set_enum_item"))); +int snd_mixer_selem_set_enum_item(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, unsigned int idx) __attribute__((alias("glshim_snd_mixer_selem_set_enum_item"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_playback_dB) && !defined(skip_index_snd_mixer_selem_set_playback_dB) int glshim_snd_mixer_selem_set_playback_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value, int dir) { @@ -10970,7 +10970,7 @@ int glshim_snd_mixer_selem_set_playback_dB(snd_mixer_elem_t * elem, snd_mixer_se syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_playback_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value, int dir) __attribute__((alias("glshim_snd_mixer_selem_set_playback_dB"))); +int snd_mixer_selem_set_playback_dB(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value, int dir) __attribute__((alias("glshim_snd_mixer_selem_set_playback_dB"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_playback_dB_all) && !defined(skip_index_snd_mixer_selem_set_playback_dB_all) int glshim_snd_mixer_selem_set_playback_dB_all(snd_mixer_elem_t * elem, long value, int dir) { @@ -10983,7 +10983,7 @@ int glshim_snd_mixer_selem_set_playback_dB_all(snd_mixer_elem_t * elem, long val syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_playback_dB_all(snd_mixer_elem_t * elem, long value, int dir) __attribute__((alias("glshim_snd_mixer_selem_set_playback_dB_all"))); +int snd_mixer_selem_set_playback_dB_all(snd_mixer_elem_t * elem, long value, int dir) __attribute__((alias("glshim_snd_mixer_selem_set_playback_dB_all"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_playback_switch) && !defined(skip_index_snd_mixer_selem_set_playback_switch) int glshim_snd_mixer_selem_set_playback_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int value) { @@ -10996,7 +10996,7 @@ int glshim_snd_mixer_selem_set_playback_switch(snd_mixer_elem_t * elem, snd_mixe syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_playback_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int value) __attribute__((alias("glshim_snd_mixer_selem_set_playback_switch"))); +int snd_mixer_selem_set_playback_switch(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, int value) __attribute__((alias("glshim_snd_mixer_selem_set_playback_switch"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_playback_switch_all) && !defined(skip_index_snd_mixer_selem_set_playback_switch_all) int glshim_snd_mixer_selem_set_playback_switch_all(snd_mixer_elem_t * elem, int value) { @@ -11008,7 +11008,7 @@ int glshim_snd_mixer_selem_set_playback_switch_all(snd_mixer_elem_t * elem, int syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_playback_switch_all(snd_mixer_elem_t * elem, int value) __attribute__((alias("glshim_snd_mixer_selem_set_playback_switch_all"))); +int snd_mixer_selem_set_playback_switch_all(snd_mixer_elem_t * elem, int value) __attribute__((alias("glshim_snd_mixer_selem_set_playback_switch_all"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_playback_volume) && !defined(skip_index_snd_mixer_selem_set_playback_volume) int glshim_snd_mixer_selem_set_playback_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value) { @@ -11021,7 +11021,7 @@ int glshim_snd_mixer_selem_set_playback_volume(snd_mixer_elem_t * elem, snd_mixe syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_playback_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value) __attribute__((alias("glshim_snd_mixer_selem_set_playback_volume"))); +int snd_mixer_selem_set_playback_volume(snd_mixer_elem_t * elem, snd_mixer_selem_channel_id_t channel, long value) __attribute__((alias("glshim_snd_mixer_selem_set_playback_volume"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_playback_volume_all) && !defined(skip_index_snd_mixer_selem_set_playback_volume_all) int glshim_snd_mixer_selem_set_playback_volume_all(snd_mixer_elem_t * elem, long value) { @@ -11033,7 +11033,7 @@ int glshim_snd_mixer_selem_set_playback_volume_all(snd_mixer_elem_t * elem, long syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_playback_volume_all(snd_mixer_elem_t * elem, long value) __attribute__((alias("glshim_snd_mixer_selem_set_playback_volume_all"))); +int snd_mixer_selem_set_playback_volume_all(snd_mixer_elem_t * elem, long value) __attribute__((alias("glshim_snd_mixer_selem_set_playback_volume_all"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_selem_set_playback_volume_range) && !defined(skip_index_snd_mixer_selem_set_playback_volume_range) int glshim_snd_mixer_selem_set_playback_volume_range(snd_mixer_elem_t * elem, long min, long max) { @@ -11046,7 +11046,7 @@ int glshim_snd_mixer_selem_set_playback_volume_range(snd_mixer_elem_t * elem, lo syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_selem_set_playback_volume_range(snd_mixer_elem_t * elem, long min, long max) __attribute__((alias("glshim_snd_mixer_selem_set_playback_volume_range"))); +int snd_mixer_selem_set_playback_volume_range(snd_mixer_elem_t * elem, long min, long max) __attribute__((alias("glshim_snd_mixer_selem_set_playback_volume_range"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_set_callback) && !defined(skip_index_snd_mixer_set_callback) void glshim_snd_mixer_set_callback(snd_mixer_t * obj, snd_mixer_callback_t val) { @@ -11056,7 +11056,7 @@ void glshim_snd_mixer_set_callback(snd_mixer_t * obj, snd_mixer_callback_t val) packed_data.args.a2 = (snd_mixer_callback_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_set_callback(snd_mixer_t * obj, snd_mixer_callback_t val) __attribute__((alias("glshim_snd_mixer_set_callback"))); +void snd_mixer_set_callback(snd_mixer_t * obj, snd_mixer_callback_t val) __attribute__((alias("glshim_snd_mixer_set_callback"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_set_callback_private) && !defined(skip_index_snd_mixer_set_callback_private) void glshim_snd_mixer_set_callback_private(snd_mixer_t * obj, void * val) { @@ -11066,7 +11066,7 @@ void glshim_snd_mixer_set_callback_private(snd_mixer_t * obj, void * val) { packed_data.args.a2 = (void *)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_mixer_set_callback_private(snd_mixer_t * obj, void * val) __attribute__((alias("glshim_snd_mixer_set_callback_private"))); +void snd_mixer_set_callback_private(snd_mixer_t * obj, void * val) __attribute__((alias("glshim_snd_mixer_set_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_set_compare) && !defined(skip_index_snd_mixer_set_compare) int glshim_snd_mixer_set_compare(snd_mixer_t * mixer, snd_mixer_compare_t msort) { @@ -11078,7 +11078,7 @@ int glshim_snd_mixer_set_compare(snd_mixer_t * mixer, snd_mixer_compare_t msort) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_set_compare(snd_mixer_t * mixer, snd_mixer_compare_t msort) __attribute__((alias("glshim_snd_mixer_set_compare"))); +int snd_mixer_set_compare(snd_mixer_t * mixer, snd_mixer_compare_t msort) __attribute__((alias("glshim_snd_mixer_set_compare"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_mixer_wait) && !defined(skip_index_snd_mixer_wait) int glshim_snd_mixer_wait(snd_mixer_t * mixer, int timeout) { @@ -11090,7 +11090,7 @@ int glshim_snd_mixer_wait(snd_mixer_t * mixer, int timeout) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_mixer_wait(snd_mixer_t * mixer, int timeout) __attribute__((alias("glshim_snd_mixer_wait"))); +int snd_mixer_wait(snd_mixer_t * mixer, int timeout) __attribute__((alias("glshim_snd_mixer_wait"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_names_list) && !defined(skip_index_snd_names_list) int glshim_snd_names_list(const char * iface, snd_devname_t ** list) { @@ -11102,7 +11102,7 @@ int glshim_snd_names_list(const char * iface, snd_devname_t ** list) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_names_list(const char * iface, snd_devname_t ** list) __attribute__((alias("glshim_snd_names_list"))); +int snd_names_list(const char * iface, snd_devname_t ** list) __attribute__((alias("glshim_snd_names_list"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_names_list_free) && !defined(skip_index_snd_names_list_free) void glshim_snd_names_list_free(snd_devname_t * list) { @@ -11111,7 +11111,7 @@ void glshim_snd_names_list_free(snd_devname_t * list) { packed_data.args.a1 = (snd_devname_t *)list; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_names_list_free(snd_devname_t * list) __attribute__((alias("glshim_snd_names_list_free"))); +void snd_names_list_free(snd_devname_t * list) __attribute__((alias("glshim_snd_names_list_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_output_buffer_open) && !defined(skip_index_snd_output_buffer_open) int glshim_snd_output_buffer_open(snd_output_t ** outputp) { @@ -11122,7 +11122,7 @@ int glshim_snd_output_buffer_open(snd_output_t ** outputp) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_output_buffer_open(snd_output_t ** outputp) __attribute__((alias("glshim_snd_output_buffer_open"))); +int snd_output_buffer_open(snd_output_t ** outputp) __attribute__((alias("glshim_snd_output_buffer_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_output_buffer_string) && !defined(skip_index_snd_output_buffer_string) size_t glshim_snd_output_buffer_string(snd_output_t * output, char ** buf) { @@ -11134,7 +11134,7 @@ size_t glshim_snd_output_buffer_string(snd_output_t * output, char ** buf) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_output_buffer_string(snd_output_t * output, char ** buf) __attribute__((alias("glshim_snd_output_buffer_string"))); +size_t snd_output_buffer_string(snd_output_t * output, char ** buf) __attribute__((alias("glshim_snd_output_buffer_string"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_output_close) && !defined(skip_index_snd_output_close) int glshim_snd_output_close(snd_output_t * output) { @@ -11145,7 +11145,7 @@ int glshim_snd_output_close(snd_output_t * output) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_output_close(snd_output_t * output) __attribute__((alias("glshim_snd_output_close"))); +int snd_output_close(snd_output_t * output) __attribute__((alias("glshim_snd_output_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_output_flush) && !defined(skip_index_snd_output_flush) int glshim_snd_output_flush(snd_output_t * output) { @@ -11156,7 +11156,7 @@ int glshim_snd_output_flush(snd_output_t * output) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_output_flush(snd_output_t * output) __attribute__((alias("glshim_snd_output_flush"))); +int snd_output_flush(snd_output_t * output) __attribute__((alias("glshim_snd_output_flush"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_output_putc) && !defined(skip_index_snd_output_putc) int glshim_snd_output_putc(snd_output_t * output, int c) { @@ -11168,7 +11168,7 @@ int glshim_snd_output_putc(snd_output_t * output, int c) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_output_putc(snd_output_t * output, int c) __attribute__((alias("glshim_snd_output_putc"))); +int snd_output_putc(snd_output_t * output, int c) __attribute__((alias("glshim_snd_output_putc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_output_puts) && !defined(skip_index_snd_output_puts) int glshim_snd_output_puts(snd_output_t * output, const char * str) { @@ -11180,7 +11180,7 @@ int glshim_snd_output_puts(snd_output_t * output, const char * str) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_output_puts(snd_output_t * output, const char * str) __attribute__((alias("glshim_snd_output_puts"))); +int snd_output_puts(snd_output_t * output, const char * str) __attribute__((alias("glshim_snd_output_puts"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_output_stdio_attach) && !defined(skip_index_snd_output_stdio_attach) int glshim_snd_output_stdio_attach(snd_output_t ** outputp, FILE * fp, int _close) { @@ -11193,7 +11193,7 @@ int glshim_snd_output_stdio_attach(snd_output_t ** outputp, FILE * fp, int _clos syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_output_stdio_attach(snd_output_t ** outputp, FILE * fp, int _close) __attribute__((alias("glshim_snd_output_stdio_attach"))); +int snd_output_stdio_attach(snd_output_t ** outputp, FILE * fp, int _close) __attribute__((alias("glshim_snd_output_stdio_attach"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_output_stdio_open) && !defined(skip_index_snd_output_stdio_open) int glshim_snd_output_stdio_open(snd_output_t ** outputp, const char * file, const char * mode) { @@ -11206,7 +11206,7 @@ int glshim_snd_output_stdio_open(snd_output_t ** outputp, const char * file, con syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_output_stdio_open(snd_output_t ** outputp, const char * file, const char * mode) __attribute__((alias("glshim_snd_output_stdio_open"))); +int snd_output_stdio_open(snd_output_t ** outputp, const char * file, const char * mode) __attribute__((alias("glshim_snd_output_stdio_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_output_vprintf) && !defined(skip_index_snd_output_vprintf) int glshim_snd_output_vprintf(snd_output_t * output, const char * format, va_list args) { @@ -11219,7 +11219,7 @@ int glshim_snd_output_vprintf(snd_output_t * output, const char * format, va_lis syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_output_vprintf(snd_output_t * output, const char * format, va_list args) __attribute__((alias("glshim_snd_output_vprintf"))); +int snd_output_vprintf(snd_output_t * output, const char * format, va_list args) __attribute__((alias("glshim_snd_output_vprintf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_mask_any) && !defined(skip_index_snd_pcm_access_mask_any) void glshim_snd_pcm_access_mask_any(snd_pcm_access_mask_t * mask) { @@ -11228,7 +11228,7 @@ void glshim_snd_pcm_access_mask_any(snd_pcm_access_mask_t * mask) { packed_data.args.a1 = (snd_pcm_access_mask_t *)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_access_mask_any(snd_pcm_access_mask_t * mask) __attribute__((alias("glshim_snd_pcm_access_mask_any"))); +void snd_pcm_access_mask_any(snd_pcm_access_mask_t * mask) __attribute__((alias("glshim_snd_pcm_access_mask_any"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_mask_copy) && !defined(skip_index_snd_pcm_access_mask_copy) void glshim_snd_pcm_access_mask_copy(snd_pcm_access_mask_t * dst, const snd_pcm_access_mask_t * src) { @@ -11238,7 +11238,7 @@ void glshim_snd_pcm_access_mask_copy(snd_pcm_access_mask_t * dst, const snd_pcm_ packed_data.args.a2 = (snd_pcm_access_mask_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_access_mask_copy(snd_pcm_access_mask_t * dst, const snd_pcm_access_mask_t * src) __attribute__((alias("glshim_snd_pcm_access_mask_copy"))); +void snd_pcm_access_mask_copy(snd_pcm_access_mask_t * dst, const snd_pcm_access_mask_t * src) __attribute__((alias("glshim_snd_pcm_access_mask_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_mask_empty) && !defined(skip_index_snd_pcm_access_mask_empty) int glshim_snd_pcm_access_mask_empty(const snd_pcm_access_mask_t * mask) { @@ -11249,7 +11249,7 @@ int glshim_snd_pcm_access_mask_empty(const snd_pcm_access_mask_t * mask) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_access_mask_empty(const snd_pcm_access_mask_t * mask) __attribute__((alias("glshim_snd_pcm_access_mask_empty"))); +int snd_pcm_access_mask_empty(const snd_pcm_access_mask_t * mask) __attribute__((alias("glshim_snd_pcm_access_mask_empty"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_mask_free) && !defined(skip_index_snd_pcm_access_mask_free) void glshim_snd_pcm_access_mask_free(snd_pcm_access_mask_t * obj) { @@ -11258,7 +11258,7 @@ void glshim_snd_pcm_access_mask_free(snd_pcm_access_mask_t * obj) { packed_data.args.a1 = (snd_pcm_access_mask_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_access_mask_free(snd_pcm_access_mask_t * obj) __attribute__((alias("glshim_snd_pcm_access_mask_free"))); +void snd_pcm_access_mask_free(snd_pcm_access_mask_t * obj) __attribute__((alias("glshim_snd_pcm_access_mask_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_mask_malloc) && !defined(skip_index_snd_pcm_access_mask_malloc) int glshim_snd_pcm_access_mask_malloc(snd_pcm_access_mask_t ** ptr) { @@ -11269,7 +11269,7 @@ int glshim_snd_pcm_access_mask_malloc(snd_pcm_access_mask_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_access_mask_malloc(snd_pcm_access_mask_t ** ptr) __attribute__((alias("glshim_snd_pcm_access_mask_malloc"))); +int snd_pcm_access_mask_malloc(snd_pcm_access_mask_t ** ptr) __attribute__((alias("glshim_snd_pcm_access_mask_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_mask_none) && !defined(skip_index_snd_pcm_access_mask_none) void glshim_snd_pcm_access_mask_none(snd_pcm_access_mask_t * mask) { @@ -11278,7 +11278,7 @@ void glshim_snd_pcm_access_mask_none(snd_pcm_access_mask_t * mask) { packed_data.args.a1 = (snd_pcm_access_mask_t *)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_access_mask_none(snd_pcm_access_mask_t * mask) __attribute__((alias("glshim_snd_pcm_access_mask_none"))); +void snd_pcm_access_mask_none(snd_pcm_access_mask_t * mask) __attribute__((alias("glshim_snd_pcm_access_mask_none"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_mask_reset) && !defined(skip_index_snd_pcm_access_mask_reset) void glshim_snd_pcm_access_mask_reset(snd_pcm_access_mask_t * mask, snd_pcm_access_t val) { @@ -11288,7 +11288,7 @@ void glshim_snd_pcm_access_mask_reset(snd_pcm_access_mask_t * mask, snd_pcm_acce packed_data.args.a2 = (snd_pcm_access_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_access_mask_reset(snd_pcm_access_mask_t * mask, snd_pcm_access_t val) __attribute__((alias("glshim_snd_pcm_access_mask_reset"))); +void snd_pcm_access_mask_reset(snd_pcm_access_mask_t * mask, snd_pcm_access_t val) __attribute__((alias("glshim_snd_pcm_access_mask_reset"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_mask_set) && !defined(skip_index_snd_pcm_access_mask_set) void glshim_snd_pcm_access_mask_set(snd_pcm_access_mask_t * mask, snd_pcm_access_t val) { @@ -11298,7 +11298,7 @@ void glshim_snd_pcm_access_mask_set(snd_pcm_access_mask_t * mask, snd_pcm_access packed_data.args.a2 = (snd_pcm_access_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_access_mask_set(snd_pcm_access_mask_t * mask, snd_pcm_access_t val) __attribute__((alias("glshim_snd_pcm_access_mask_set"))); +void snd_pcm_access_mask_set(snd_pcm_access_mask_t * mask, snd_pcm_access_t val) __attribute__((alias("glshim_snd_pcm_access_mask_set"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_mask_sizeof) && !defined(skip_index_snd_pcm_access_mask_sizeof) size_t glshim_snd_pcm_access_mask_sizeof() { @@ -11308,7 +11308,7 @@ size_t glshim_snd_pcm_access_mask_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_pcm_access_mask_sizeof() __attribute__((alias("glshim_snd_pcm_access_mask_sizeof"))); +size_t snd_pcm_access_mask_sizeof() __attribute__((alias("glshim_snd_pcm_access_mask_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_mask_test) && !defined(skip_index_snd_pcm_access_mask_test) int glshim_snd_pcm_access_mask_test(const snd_pcm_access_mask_t * mask, snd_pcm_access_t val) { @@ -11320,7 +11320,7 @@ int glshim_snd_pcm_access_mask_test(const snd_pcm_access_mask_t * mask, snd_pcm_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_access_mask_test(const snd_pcm_access_mask_t * mask, snd_pcm_access_t val) __attribute__((alias("glshim_snd_pcm_access_mask_test"))); +int snd_pcm_access_mask_test(const snd_pcm_access_mask_t * mask, snd_pcm_access_t val) __attribute__((alias("glshim_snd_pcm_access_mask_test"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_access_name) && !defined(skip_index_snd_pcm_access_name) const char * glshim_snd_pcm_access_name(const snd_pcm_access_t _access) { @@ -11331,7 +11331,7 @@ const char * glshim_snd_pcm_access_name(const snd_pcm_access_t _access) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_access_name(const snd_pcm_access_t _access) __attribute__((alias("glshim_snd_pcm_access_name"))); +const char * snd_pcm_access_name(const snd_pcm_access_t _access) __attribute__((alias("glshim_snd_pcm_access_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_area_copy) && !defined(skip_index_snd_pcm_area_copy) int glshim_snd_pcm_area_copy(const snd_pcm_channel_area_t * dst_channel, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t * src_channel, snd_pcm_uframes_t src_offset, unsigned int samples, snd_pcm_format_t format) { @@ -11347,7 +11347,7 @@ int glshim_snd_pcm_area_copy(const snd_pcm_channel_area_t * dst_channel, snd_pcm syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_area_copy(const snd_pcm_channel_area_t * dst_channel, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t * src_channel, snd_pcm_uframes_t src_offset, unsigned int samples, snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_area_copy"))); +int snd_pcm_area_copy(const snd_pcm_channel_area_t * dst_channel, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t * src_channel, snd_pcm_uframes_t src_offset, unsigned int samples, snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_area_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_area_silence) && !defined(skip_index_snd_pcm_area_silence) int glshim_snd_pcm_area_silence(const snd_pcm_channel_area_t * dst_channel, snd_pcm_uframes_t dst_offset, unsigned int samples, snd_pcm_format_t format) { @@ -11361,7 +11361,7 @@ int glshim_snd_pcm_area_silence(const snd_pcm_channel_area_t * dst_channel, snd_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_area_silence(const snd_pcm_channel_area_t * dst_channel, snd_pcm_uframes_t dst_offset, unsigned int samples, snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_area_silence"))); +int snd_pcm_area_silence(const snd_pcm_channel_area_t * dst_channel, snd_pcm_uframes_t dst_offset, unsigned int samples, snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_area_silence"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_areas_copy) && !defined(skip_index_snd_pcm_areas_copy) int glshim_snd_pcm_areas_copy(const snd_pcm_channel_area_t * dst_channels, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t * src_channels, snd_pcm_uframes_t src_offset, unsigned int channels, snd_pcm_uframes_t frames, snd_pcm_format_t format) { @@ -11378,7 +11378,7 @@ int glshim_snd_pcm_areas_copy(const snd_pcm_channel_area_t * dst_channels, snd_p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_areas_copy(const snd_pcm_channel_area_t * dst_channels, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t * src_channels, snd_pcm_uframes_t src_offset, unsigned int channels, snd_pcm_uframes_t frames, snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_areas_copy"))); +int snd_pcm_areas_copy(const snd_pcm_channel_area_t * dst_channels, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t * src_channels, snd_pcm_uframes_t src_offset, unsigned int channels, snd_pcm_uframes_t frames, snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_areas_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_areas_silence) && !defined(skip_index_snd_pcm_areas_silence) int glshim_snd_pcm_areas_silence(const snd_pcm_channel_area_t * dst_channels, snd_pcm_uframes_t dst_offset, unsigned int channels, snd_pcm_uframes_t frames, snd_pcm_format_t format) { @@ -11393,7 +11393,7 @@ int glshim_snd_pcm_areas_silence(const snd_pcm_channel_area_t * dst_channels, sn syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_areas_silence(const snd_pcm_channel_area_t * dst_channels, snd_pcm_uframes_t dst_offset, unsigned int channels, snd_pcm_uframes_t frames, snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_areas_silence"))); +int snd_pcm_areas_silence(const snd_pcm_channel_area_t * dst_channels, snd_pcm_uframes_t dst_offset, unsigned int channels, snd_pcm_uframes_t frames, snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_areas_silence"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_avail_update) && !defined(skip_index_snd_pcm_avail_update) snd_pcm_sframes_t glshim_snd_pcm_avail_update(snd_pcm_t * pcm) { @@ -11404,7 +11404,7 @@ snd_pcm_sframes_t glshim_snd_pcm_avail_update(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_avail_update(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_avail_update"))); +snd_pcm_sframes_t snd_pcm_avail_update(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_avail_update"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_build_linear_format) && !defined(skip_index_snd_pcm_build_linear_format) snd_pcm_format_t glshim_snd_pcm_build_linear_format(int width, int pwidth, int unsignd, int big_endian) { @@ -11418,7 +11418,7 @@ snd_pcm_format_t glshim_snd_pcm_build_linear_format(int width, int pwidth, int u syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_format_t snd_pcm_build_linear_format(int width, int pwidth, int unsignd, int big_endian) __attribute__((alias("glshim_snd_pcm_build_linear_format"))); +snd_pcm_format_t snd_pcm_build_linear_format(int width, int pwidth, int unsignd, int big_endian) __attribute__((alias("glshim_snd_pcm_build_linear_format"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_bytes_to_frames) && !defined(skip_index_snd_pcm_bytes_to_frames) snd_pcm_sframes_t glshim_snd_pcm_bytes_to_frames(snd_pcm_t * pcm, ssize_t bytes) { @@ -11430,7 +11430,7 @@ snd_pcm_sframes_t glshim_snd_pcm_bytes_to_frames(snd_pcm_t * pcm, ssize_t bytes) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_bytes_to_frames(snd_pcm_t * pcm, ssize_t bytes) __attribute__((alias("glshim_snd_pcm_bytes_to_frames"))); +snd_pcm_sframes_t snd_pcm_bytes_to_frames(snd_pcm_t * pcm, ssize_t bytes) __attribute__((alias("glshim_snd_pcm_bytes_to_frames"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_bytes_to_samples) && !defined(skip_index_snd_pcm_bytes_to_samples) long glshim_snd_pcm_bytes_to_samples(snd_pcm_t * pcm, ssize_t bytes) { @@ -11442,7 +11442,7 @@ long glshim_snd_pcm_bytes_to_samples(snd_pcm_t * pcm, ssize_t bytes) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_pcm_bytes_to_samples(snd_pcm_t * pcm, ssize_t bytes) __attribute__((alias("glshim_snd_pcm_bytes_to_samples"))); +long snd_pcm_bytes_to_samples(snd_pcm_t * pcm, ssize_t bytes) __attribute__((alias("glshim_snd_pcm_bytes_to_samples"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_close) && !defined(skip_index_snd_pcm_close) int glshim_snd_pcm_close(snd_pcm_t * pcm) { @@ -11453,7 +11453,7 @@ int glshim_snd_pcm_close(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_close(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_close"))); +int snd_pcm_close(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_delay) && !defined(skip_index_snd_pcm_delay) int glshim_snd_pcm_delay(snd_pcm_t * pcm, snd_pcm_sframes_t * delayp) { @@ -11465,7 +11465,7 @@ int glshim_snd_pcm_delay(snd_pcm_t * pcm, snd_pcm_sframes_t * delayp) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_delay(snd_pcm_t * pcm, snd_pcm_sframes_t * delayp) __attribute__((alias("glshim_snd_pcm_delay"))); +int snd_pcm_delay(snd_pcm_t * pcm, snd_pcm_sframes_t * delayp) __attribute__((alias("glshim_snd_pcm_delay"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_drain) && !defined(skip_index_snd_pcm_drain) int glshim_snd_pcm_drain(snd_pcm_t * pcm) { @@ -11476,7 +11476,7 @@ int glshim_snd_pcm_drain(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_drain(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_drain"))); +int snd_pcm_drain(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_drain"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_drop) && !defined(skip_index_snd_pcm_drop) int glshim_snd_pcm_drop(snd_pcm_t * pcm) { @@ -11487,7 +11487,7 @@ int glshim_snd_pcm_drop(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_drop(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_drop"))); +int snd_pcm_drop(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_drop"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_dump) && !defined(skip_index_snd_pcm_dump) int glshim_snd_pcm_dump(snd_pcm_t * pcm, snd_output_t * out) { @@ -11499,7 +11499,7 @@ int glshim_snd_pcm_dump(snd_pcm_t * pcm, snd_output_t * out) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_dump(snd_pcm_t * pcm, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_dump"))); +int snd_pcm_dump(snd_pcm_t * pcm, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_dump"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_dump_hw_setup) && !defined(skip_index_snd_pcm_dump_hw_setup) int glshim_snd_pcm_dump_hw_setup(snd_pcm_t * pcm, snd_output_t * out) { @@ -11511,7 +11511,7 @@ int glshim_snd_pcm_dump_hw_setup(snd_pcm_t * pcm, snd_output_t * out) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_dump_hw_setup(snd_pcm_t * pcm, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_dump_hw_setup"))); +int snd_pcm_dump_hw_setup(snd_pcm_t * pcm, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_dump_hw_setup"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_dump_setup) && !defined(skip_index_snd_pcm_dump_setup) int glshim_snd_pcm_dump_setup(snd_pcm_t * pcm, snd_output_t * out) { @@ -11523,7 +11523,7 @@ int glshim_snd_pcm_dump_setup(snd_pcm_t * pcm, snd_output_t * out) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_dump_setup(snd_pcm_t * pcm, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_dump_setup"))); +int snd_pcm_dump_setup(snd_pcm_t * pcm, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_dump_setup"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_dump_sw_setup) && !defined(skip_index_snd_pcm_dump_sw_setup) int glshim_snd_pcm_dump_sw_setup(snd_pcm_t * pcm, snd_output_t * out) { @@ -11535,7 +11535,7 @@ int glshim_snd_pcm_dump_sw_setup(snd_pcm_t * pcm, snd_output_t * out) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_dump_sw_setup(snd_pcm_t * pcm, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_dump_sw_setup"))); +int snd_pcm_dump_sw_setup(snd_pcm_t * pcm, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_dump_sw_setup"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_big_endian) && !defined(skip_index_snd_pcm_format_big_endian) int glshim_snd_pcm_format_big_endian(snd_pcm_format_t format) { @@ -11546,7 +11546,7 @@ int glshim_snd_pcm_format_big_endian(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_big_endian(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_big_endian"))); +int snd_pcm_format_big_endian(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_big_endian"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_cpu_endian) && !defined(skip_index_snd_pcm_format_cpu_endian) int glshim_snd_pcm_format_cpu_endian(snd_pcm_format_t format) { @@ -11557,7 +11557,7 @@ int glshim_snd_pcm_format_cpu_endian(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_cpu_endian(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_cpu_endian"))); +int snd_pcm_format_cpu_endian(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_cpu_endian"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_description) && !defined(skip_index_snd_pcm_format_description) const char * glshim_snd_pcm_format_description(const snd_pcm_format_t format) { @@ -11568,7 +11568,7 @@ const char * glshim_snd_pcm_format_description(const snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_format_description(const snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_description"))); +const char * snd_pcm_format_description(const snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_description"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_float) && !defined(skip_index_snd_pcm_format_float) int glshim_snd_pcm_format_float(snd_pcm_format_t format) { @@ -11579,7 +11579,7 @@ int glshim_snd_pcm_format_float(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_float(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_float"))); +int snd_pcm_format_float(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_float"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_linear) && !defined(skip_index_snd_pcm_format_linear) int glshim_snd_pcm_format_linear(snd_pcm_format_t format) { @@ -11590,7 +11590,7 @@ int glshim_snd_pcm_format_linear(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_linear(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_linear"))); +int snd_pcm_format_linear(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_linear"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_little_endian) && !defined(skip_index_snd_pcm_format_little_endian) int glshim_snd_pcm_format_little_endian(snd_pcm_format_t format) { @@ -11601,7 +11601,7 @@ int glshim_snd_pcm_format_little_endian(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_little_endian(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_little_endian"))); +int snd_pcm_format_little_endian(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_little_endian"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_mask_any) && !defined(skip_index_snd_pcm_format_mask_any) void glshim_snd_pcm_format_mask_any(snd_pcm_format_mask_t * mask) { @@ -11610,7 +11610,7 @@ void glshim_snd_pcm_format_mask_any(snd_pcm_format_mask_t * mask) { packed_data.args.a1 = (snd_pcm_format_mask_t *)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_format_mask_any(snd_pcm_format_mask_t * mask) __attribute__((alias("glshim_snd_pcm_format_mask_any"))); +void snd_pcm_format_mask_any(snd_pcm_format_mask_t * mask) __attribute__((alias("glshim_snd_pcm_format_mask_any"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_mask_copy) && !defined(skip_index_snd_pcm_format_mask_copy) void glshim_snd_pcm_format_mask_copy(snd_pcm_format_mask_t * dst, const snd_pcm_format_mask_t * src) { @@ -11620,7 +11620,7 @@ void glshim_snd_pcm_format_mask_copy(snd_pcm_format_mask_t * dst, const snd_pcm_ packed_data.args.a2 = (snd_pcm_format_mask_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_format_mask_copy(snd_pcm_format_mask_t * dst, const snd_pcm_format_mask_t * src) __attribute__((alias("glshim_snd_pcm_format_mask_copy"))); +void snd_pcm_format_mask_copy(snd_pcm_format_mask_t * dst, const snd_pcm_format_mask_t * src) __attribute__((alias("glshim_snd_pcm_format_mask_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_mask_empty) && !defined(skip_index_snd_pcm_format_mask_empty) int glshim_snd_pcm_format_mask_empty(const snd_pcm_format_mask_t * mask) { @@ -11631,7 +11631,7 @@ int glshim_snd_pcm_format_mask_empty(const snd_pcm_format_mask_t * mask) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_mask_empty(const snd_pcm_format_mask_t * mask) __attribute__((alias("glshim_snd_pcm_format_mask_empty"))); +int snd_pcm_format_mask_empty(const snd_pcm_format_mask_t * mask) __attribute__((alias("glshim_snd_pcm_format_mask_empty"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_mask_free) && !defined(skip_index_snd_pcm_format_mask_free) void glshim_snd_pcm_format_mask_free(snd_pcm_format_mask_t * obj) { @@ -11640,7 +11640,7 @@ void glshim_snd_pcm_format_mask_free(snd_pcm_format_mask_t * obj) { packed_data.args.a1 = (snd_pcm_format_mask_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_format_mask_free(snd_pcm_format_mask_t * obj) __attribute__((alias("glshim_snd_pcm_format_mask_free"))); +void snd_pcm_format_mask_free(snd_pcm_format_mask_t * obj) __attribute__((alias("glshim_snd_pcm_format_mask_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_mask_malloc) && !defined(skip_index_snd_pcm_format_mask_malloc) int glshim_snd_pcm_format_mask_malloc(snd_pcm_format_mask_t ** ptr) { @@ -11651,7 +11651,7 @@ int glshim_snd_pcm_format_mask_malloc(snd_pcm_format_mask_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_mask_malloc(snd_pcm_format_mask_t ** ptr) __attribute__((alias("glshim_snd_pcm_format_mask_malloc"))); +int snd_pcm_format_mask_malloc(snd_pcm_format_mask_t ** ptr) __attribute__((alias("glshim_snd_pcm_format_mask_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_mask_none) && !defined(skip_index_snd_pcm_format_mask_none) void glshim_snd_pcm_format_mask_none(snd_pcm_format_mask_t * mask) { @@ -11660,7 +11660,7 @@ void glshim_snd_pcm_format_mask_none(snd_pcm_format_mask_t * mask) { packed_data.args.a1 = (snd_pcm_format_mask_t *)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_format_mask_none(snd_pcm_format_mask_t * mask) __attribute__((alias("glshim_snd_pcm_format_mask_none"))); +void snd_pcm_format_mask_none(snd_pcm_format_mask_t * mask) __attribute__((alias("glshim_snd_pcm_format_mask_none"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_mask_reset) && !defined(skip_index_snd_pcm_format_mask_reset) void glshim_snd_pcm_format_mask_reset(snd_pcm_format_mask_t * mask, snd_pcm_format_t val) { @@ -11670,7 +11670,7 @@ void glshim_snd_pcm_format_mask_reset(snd_pcm_format_mask_t * mask, snd_pcm_form packed_data.args.a2 = (snd_pcm_format_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_format_mask_reset(snd_pcm_format_mask_t * mask, snd_pcm_format_t val) __attribute__((alias("glshim_snd_pcm_format_mask_reset"))); +void snd_pcm_format_mask_reset(snd_pcm_format_mask_t * mask, snd_pcm_format_t val) __attribute__((alias("glshim_snd_pcm_format_mask_reset"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_mask_set) && !defined(skip_index_snd_pcm_format_mask_set) void glshim_snd_pcm_format_mask_set(snd_pcm_format_mask_t * mask, snd_pcm_format_t val) { @@ -11680,7 +11680,7 @@ void glshim_snd_pcm_format_mask_set(snd_pcm_format_mask_t * mask, snd_pcm_format packed_data.args.a2 = (snd_pcm_format_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_format_mask_set(snd_pcm_format_mask_t * mask, snd_pcm_format_t val) __attribute__((alias("glshim_snd_pcm_format_mask_set"))); +void snd_pcm_format_mask_set(snd_pcm_format_mask_t * mask, snd_pcm_format_t val) __attribute__((alias("glshim_snd_pcm_format_mask_set"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_mask_sizeof) && !defined(skip_index_snd_pcm_format_mask_sizeof) size_t glshim_snd_pcm_format_mask_sizeof() { @@ -11690,7 +11690,7 @@ size_t glshim_snd_pcm_format_mask_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_pcm_format_mask_sizeof() __attribute__((alias("glshim_snd_pcm_format_mask_sizeof"))); +size_t snd_pcm_format_mask_sizeof() __attribute__((alias("glshim_snd_pcm_format_mask_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_mask_test) && !defined(skip_index_snd_pcm_format_mask_test) int glshim_snd_pcm_format_mask_test(const snd_pcm_format_mask_t * mask, snd_pcm_format_t val) { @@ -11702,7 +11702,7 @@ int glshim_snd_pcm_format_mask_test(const snd_pcm_format_mask_t * mask, snd_pcm_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_mask_test(const snd_pcm_format_mask_t * mask, snd_pcm_format_t val) __attribute__((alias("glshim_snd_pcm_format_mask_test"))); +int snd_pcm_format_mask_test(const snd_pcm_format_mask_t * mask, snd_pcm_format_t val) __attribute__((alias("glshim_snd_pcm_format_mask_test"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_name) && !defined(skip_index_snd_pcm_format_name) const char * glshim_snd_pcm_format_name(const snd_pcm_format_t format) { @@ -11713,7 +11713,7 @@ const char * glshim_snd_pcm_format_name(const snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_format_name(const snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_name"))); +const char * snd_pcm_format_name(const snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_physical_width) && !defined(skip_index_snd_pcm_format_physical_width) int glshim_snd_pcm_format_physical_width(snd_pcm_format_t format) { @@ -11724,7 +11724,7 @@ int glshim_snd_pcm_format_physical_width(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_physical_width(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_physical_width"))); +int snd_pcm_format_physical_width(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_physical_width"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_set_silence) && !defined(skip_index_snd_pcm_format_set_silence) int glshim_snd_pcm_format_set_silence(snd_pcm_format_t format, void * buf, unsigned int samples) { @@ -11737,7 +11737,7 @@ int glshim_snd_pcm_format_set_silence(snd_pcm_format_t format, void * buf, unsig syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_set_silence(snd_pcm_format_t format, void * buf, unsigned int samples) __attribute__((alias("glshim_snd_pcm_format_set_silence"))); +int snd_pcm_format_set_silence(snd_pcm_format_t format, void * buf, unsigned int samples) __attribute__((alias("glshim_snd_pcm_format_set_silence"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_signed) && !defined(skip_index_snd_pcm_format_signed) int glshim_snd_pcm_format_signed(snd_pcm_format_t format) { @@ -11748,7 +11748,7 @@ int glshim_snd_pcm_format_signed(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_signed(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_signed"))); +int snd_pcm_format_signed(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_signed"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_silence) && !defined(skip_index_snd_pcm_format_silence) u_int8_t glshim_snd_pcm_format_silence(snd_pcm_format_t format) { @@ -11759,7 +11759,7 @@ u_int8_t glshim_snd_pcm_format_silence(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -u_int8_t snd_pcm_format_silence(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_silence"))); +u_int8_t snd_pcm_format_silence(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_silence"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_silence_16) && !defined(skip_index_snd_pcm_format_silence_16) u_int16_t glshim_snd_pcm_format_silence_16(snd_pcm_format_t format) { @@ -11770,7 +11770,7 @@ u_int16_t glshim_snd_pcm_format_silence_16(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -u_int16_t snd_pcm_format_silence_16(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_silence_16"))); +u_int16_t snd_pcm_format_silence_16(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_silence_16"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_silence_32) && !defined(skip_index_snd_pcm_format_silence_32) u_int32_t glshim_snd_pcm_format_silence_32(snd_pcm_format_t format) { @@ -11781,7 +11781,7 @@ u_int32_t glshim_snd_pcm_format_silence_32(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -u_int32_t snd_pcm_format_silence_32(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_silence_32"))); +u_int32_t snd_pcm_format_silence_32(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_silence_32"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_silence_64) && !defined(skip_index_snd_pcm_format_silence_64) u_int64_t glshim_snd_pcm_format_silence_64(snd_pcm_format_t format) { @@ -11792,7 +11792,7 @@ u_int64_t glshim_snd_pcm_format_silence_64(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -u_int64_t snd_pcm_format_silence_64(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_silence_64"))); +u_int64_t snd_pcm_format_silence_64(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_silence_64"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_size) && !defined(skip_index_snd_pcm_format_size) ssize_t glshim_snd_pcm_format_size(snd_pcm_format_t format, size_t samples) { @@ -11804,7 +11804,7 @@ ssize_t glshim_snd_pcm_format_size(snd_pcm_format_t format, size_t samples) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -ssize_t snd_pcm_format_size(snd_pcm_format_t format, size_t samples) __attribute__((alias("glshim_snd_pcm_format_size"))); +ssize_t snd_pcm_format_size(snd_pcm_format_t format, size_t samples) __attribute__((alias("glshim_snd_pcm_format_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_unsigned) && !defined(skip_index_snd_pcm_format_unsigned) int glshim_snd_pcm_format_unsigned(snd_pcm_format_t format) { @@ -11815,7 +11815,7 @@ int glshim_snd_pcm_format_unsigned(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_unsigned(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_unsigned"))); +int snd_pcm_format_unsigned(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_unsigned"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_value) && !defined(skip_index_snd_pcm_format_value) snd_pcm_format_t glshim_snd_pcm_format_value(const char* name) { @@ -11826,7 +11826,7 @@ snd_pcm_format_t glshim_snd_pcm_format_value(const char* name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_format_t snd_pcm_format_value(const char* name) __attribute__((alias("glshim_snd_pcm_format_value"))); +snd_pcm_format_t snd_pcm_format_value(const char* name) __attribute__((alias("glshim_snd_pcm_format_value"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_format_width) && !defined(skip_index_snd_pcm_format_width) int glshim_snd_pcm_format_width(snd_pcm_format_t format) { @@ -11837,7 +11837,7 @@ int glshim_snd_pcm_format_width(snd_pcm_format_t format) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_format_width(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_width"))); +int snd_pcm_format_width(snd_pcm_format_t format) __attribute__((alias("glshim_snd_pcm_format_width"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_forward) && !defined(skip_index_snd_pcm_forward) snd_pcm_sframes_t glshim_snd_pcm_forward(snd_pcm_t * pcm, snd_pcm_uframes_t frames) { @@ -11849,7 +11849,7 @@ snd_pcm_sframes_t glshim_snd_pcm_forward(snd_pcm_t * pcm, snd_pcm_uframes_t fram syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_forward(snd_pcm_t * pcm, snd_pcm_uframes_t frames) __attribute__((alias("glshim_snd_pcm_forward"))); +snd_pcm_sframes_t snd_pcm_forward(snd_pcm_t * pcm, snd_pcm_uframes_t frames) __attribute__((alias("glshim_snd_pcm_forward"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_frames_to_bytes) && !defined(skip_index_snd_pcm_frames_to_bytes) ssize_t glshim_snd_pcm_frames_to_bytes(snd_pcm_t * pcm, snd_pcm_sframes_t frames) { @@ -11861,7 +11861,7 @@ ssize_t glshim_snd_pcm_frames_to_bytes(snd_pcm_t * pcm, snd_pcm_sframes_t frames syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -ssize_t snd_pcm_frames_to_bytes(snd_pcm_t * pcm, snd_pcm_sframes_t frames) __attribute__((alias("glshim_snd_pcm_frames_to_bytes"))); +ssize_t snd_pcm_frames_to_bytes(snd_pcm_t * pcm, snd_pcm_sframes_t frames) __attribute__((alias("glshim_snd_pcm_frames_to_bytes"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_get_params) && !defined(skip_index_snd_pcm_get_params) int glshim_snd_pcm_get_params(snd_pcm_t * pcm, snd_pcm_uframes_t * buffer_size, snd_pcm_uframes_t * period_size) { @@ -11874,7 +11874,7 @@ int glshim_snd_pcm_get_params(snd_pcm_t * pcm, snd_pcm_uframes_t * buffer_size, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_get_params(snd_pcm_t * pcm, snd_pcm_uframes_t * buffer_size, snd_pcm_uframes_t * period_size) __attribute__((alias("glshim_snd_pcm_get_params"))); +int snd_pcm_get_params(snd_pcm_t * pcm, snd_pcm_uframes_t * buffer_size, snd_pcm_uframes_t * period_size) __attribute__((alias("glshim_snd_pcm_get_params"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hook_add) && !defined(skip_index_snd_pcm_hook_add) int glshim_snd_pcm_hook_add(snd_pcm_hook_t ** hookp, snd_pcm_t * pcm, snd_pcm_hook_type_t type, snd_pcm_hook_func_t func, void * private_data) { @@ -11889,7 +11889,7 @@ int glshim_snd_pcm_hook_add(snd_pcm_hook_t ** hookp, snd_pcm_t * pcm, snd_pcm_ho syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hook_add(snd_pcm_hook_t ** hookp, snd_pcm_t * pcm, snd_pcm_hook_type_t type, snd_pcm_hook_func_t func, void * private_data) __attribute__((alias("glshim_snd_pcm_hook_add"))); +int snd_pcm_hook_add(snd_pcm_hook_t ** hookp, snd_pcm_t * pcm, snd_pcm_hook_type_t type, snd_pcm_hook_func_t func, void * private_data) __attribute__((alias("glshim_snd_pcm_hook_add"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hook_get_pcm) && !defined(skip_index_snd_pcm_hook_get_pcm) snd_pcm_t * glshim_snd_pcm_hook_get_pcm(snd_pcm_hook_t * hook) { @@ -11900,7 +11900,7 @@ snd_pcm_t * glshim_snd_pcm_hook_get_pcm(snd_pcm_hook_t * hook) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_t * snd_pcm_hook_get_pcm(snd_pcm_hook_t * hook) __attribute__((alias("glshim_snd_pcm_hook_get_pcm"))); +snd_pcm_t * snd_pcm_hook_get_pcm(snd_pcm_hook_t * hook) __attribute__((alias("glshim_snd_pcm_hook_get_pcm"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hook_get_private) && !defined(skip_index_snd_pcm_hook_get_private) void * glshim_snd_pcm_hook_get_private(snd_pcm_hook_t * hook) { @@ -11911,7 +11911,7 @@ void * glshim_snd_pcm_hook_get_private(snd_pcm_hook_t * hook) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_pcm_hook_get_private(snd_pcm_hook_t * hook) __attribute__((alias("glshim_snd_pcm_hook_get_private"))); +void * snd_pcm_hook_get_private(snd_pcm_hook_t * hook) __attribute__((alias("glshim_snd_pcm_hook_get_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hook_remove) && !defined(skip_index_snd_pcm_hook_remove) int glshim_snd_pcm_hook_remove(snd_pcm_hook_t * hook) { @@ -11922,7 +11922,7 @@ int glshim_snd_pcm_hook_remove(snd_pcm_hook_t * hook) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hook_remove(snd_pcm_hook_t * hook) __attribute__((alias("glshim_snd_pcm_hook_remove"))); +int snd_pcm_hook_remove(snd_pcm_hook_t * hook) __attribute__((alias("glshim_snd_pcm_hook_remove"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hook_set_private) && !defined(skip_index_snd_pcm_hook_set_private) void glshim_snd_pcm_hook_set_private(snd_pcm_hook_t * hook, void * private_data) { @@ -11932,7 +11932,7 @@ void glshim_snd_pcm_hook_set_private(snd_pcm_hook_t * hook, void * private_data) packed_data.args.a2 = (void *)private_data; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_hook_set_private(snd_pcm_hook_t * hook, void * private_data) __attribute__((alias("glshim_snd_pcm_hook_set_private"))); +void snd_pcm_hook_set_private(snd_pcm_hook_t * hook, void * private_data) __attribute__((alias("glshim_snd_pcm_hook_set_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_free) && !defined(skip_index_snd_pcm_hw_free) int glshim_snd_pcm_hw_free(snd_pcm_t * pcm) { @@ -11943,7 +11943,7 @@ int glshim_snd_pcm_hw_free(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_free(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_hw_free"))); +int snd_pcm_hw_free(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_hw_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params) && !defined(skip_index_snd_pcm_hw_params) int glshim_snd_pcm_hw_params(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) { @@ -11955,7 +11955,7 @@ int glshim_snd_pcm_hw_params(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params"))); +int snd_pcm_hw_params(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_any) && !defined(skip_index_snd_pcm_hw_params_any) int glshim_snd_pcm_hw_params_any(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) { @@ -11967,7 +11967,7 @@ int glshim_snd_pcm_hw_params_any(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_any(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_any"))); +int snd_pcm_hw_params_any(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_any"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_can_mmap_sample_resolution) && !defined(skip_index_snd_pcm_hw_params_can_mmap_sample_resolution) int glshim_snd_pcm_hw_params_can_mmap_sample_resolution(const snd_pcm_hw_params_t * params) { @@ -11978,7 +11978,7 @@ int glshim_snd_pcm_hw_params_can_mmap_sample_resolution(const snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_can_mmap_sample_resolution(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_can_mmap_sample_resolution"))); +int snd_pcm_hw_params_can_mmap_sample_resolution(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_can_mmap_sample_resolution"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_can_overrange) && !defined(skip_index_snd_pcm_hw_params_can_overrange) int glshim_snd_pcm_hw_params_can_overrange(const snd_pcm_hw_params_t * params) { @@ -11989,7 +11989,7 @@ int glshim_snd_pcm_hw_params_can_overrange(const snd_pcm_hw_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_can_overrange(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_can_overrange"))); +int snd_pcm_hw_params_can_overrange(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_can_overrange"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_can_pause) && !defined(skip_index_snd_pcm_hw_params_can_pause) int glshim_snd_pcm_hw_params_can_pause(const snd_pcm_hw_params_t * params) { @@ -12000,7 +12000,7 @@ int glshim_snd_pcm_hw_params_can_pause(const snd_pcm_hw_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_can_pause(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_can_pause"))); +int snd_pcm_hw_params_can_pause(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_can_pause"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_can_resume) && !defined(skip_index_snd_pcm_hw_params_can_resume) int glshim_snd_pcm_hw_params_can_resume(const snd_pcm_hw_params_t * params) { @@ -12011,7 +12011,7 @@ int glshim_snd_pcm_hw_params_can_resume(const snd_pcm_hw_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_can_resume(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_can_resume"))); +int snd_pcm_hw_params_can_resume(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_can_resume"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_can_sync_start) && !defined(skip_index_snd_pcm_hw_params_can_sync_start) int glshim_snd_pcm_hw_params_can_sync_start(const snd_pcm_hw_params_t * params) { @@ -12022,7 +12022,7 @@ int glshim_snd_pcm_hw_params_can_sync_start(const snd_pcm_hw_params_t * params) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_can_sync_start(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_can_sync_start"))); +int snd_pcm_hw_params_can_sync_start(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_can_sync_start"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_copy) && !defined(skip_index_snd_pcm_hw_params_copy) void glshim_snd_pcm_hw_params_copy(snd_pcm_hw_params_t * dst, const snd_pcm_hw_params_t * src) { @@ -12032,7 +12032,7 @@ void glshim_snd_pcm_hw_params_copy(snd_pcm_hw_params_t * dst, const snd_pcm_hw_p packed_data.args.a2 = (snd_pcm_hw_params_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_hw_params_copy(snd_pcm_hw_params_t * dst, const snd_pcm_hw_params_t * src) __attribute__((alias("glshim_snd_pcm_hw_params_copy"))); +void snd_pcm_hw_params_copy(snd_pcm_hw_params_t * dst, const snd_pcm_hw_params_t * src) __attribute__((alias("glshim_snd_pcm_hw_params_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_current) && !defined(skip_index_snd_pcm_hw_params_current) int glshim_snd_pcm_hw_params_current(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) { @@ -12044,7 +12044,7 @@ int glshim_snd_pcm_hw_params_current(snd_pcm_t * pcm, snd_pcm_hw_params_t * para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_current(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_current"))); +int snd_pcm_hw_params_current(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_current"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_dump) && !defined(skip_index_snd_pcm_hw_params_dump) int glshim_snd_pcm_hw_params_dump(snd_pcm_hw_params_t * params, snd_output_t * out) { @@ -12056,7 +12056,7 @@ int glshim_snd_pcm_hw_params_dump(snd_pcm_hw_params_t * params, snd_output_t * o syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_dump(snd_pcm_hw_params_t * params, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_hw_params_dump"))); +int snd_pcm_hw_params_dump(snd_pcm_hw_params_t * params, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_hw_params_dump"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_free) && !defined(skip_index_snd_pcm_hw_params_free) void glshim_snd_pcm_hw_params_free(snd_pcm_hw_params_t * obj) { @@ -12065,7 +12065,7 @@ void glshim_snd_pcm_hw_params_free(snd_pcm_hw_params_t * obj) { packed_data.args.a1 = (snd_pcm_hw_params_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_hw_params_free(snd_pcm_hw_params_t * obj) __attribute__((alias("glshim_snd_pcm_hw_params_free"))); +void snd_pcm_hw_params_free(snd_pcm_hw_params_t * obj) __attribute__((alias("glshim_snd_pcm_hw_params_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_access) && !defined(skip_index_snd_pcm_hw_params_get_access) int glshim_snd_pcm_hw_params_get_access(const snd_pcm_hw_params_t * params, snd_pcm_access_t * _access) { @@ -12077,7 +12077,7 @@ int glshim_snd_pcm_hw_params_get_access(const snd_pcm_hw_params_t * params, snd_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_access(const snd_pcm_hw_params_t * params, snd_pcm_access_t * _access) __attribute__((alias("glshim_snd_pcm_hw_params_get_access"))); +int snd_pcm_hw_params_get_access(const snd_pcm_hw_params_t * params, snd_pcm_access_t * _access) __attribute__((alias("glshim_snd_pcm_hw_params_get_access"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_access_mask) && !defined(skip_index_snd_pcm_hw_params_get_access_mask) int glshim_snd_pcm_hw_params_get_access_mask(snd_pcm_hw_params_t * params, snd_pcm_access_mask_t * mask) { @@ -12089,7 +12089,7 @@ int glshim_snd_pcm_hw_params_get_access_mask(snd_pcm_hw_params_t * params, snd_p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_access_mask(snd_pcm_hw_params_t * params, snd_pcm_access_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_get_access_mask"))); +int snd_pcm_hw_params_get_access_mask(snd_pcm_hw_params_t * params, snd_pcm_access_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_get_access_mask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_buffer_size) && !defined(skip_index_snd_pcm_hw_params_get_buffer_size) int glshim_snd_pcm_hw_params_get_buffer_size(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) { @@ -12101,7 +12101,7 @@ int glshim_snd_pcm_hw_params_get_buffer_size(const snd_pcm_hw_params_t * params, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_buffer_size(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_size"))); +int snd_pcm_hw_params_get_buffer_size(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_buffer_size_max) && !defined(skip_index_snd_pcm_hw_params_get_buffer_size_max) int glshim_snd_pcm_hw_params_get_buffer_size_max(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) { @@ -12113,7 +12113,7 @@ int glshim_snd_pcm_hw_params_get_buffer_size_max(const snd_pcm_hw_params_t * par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_buffer_size_max(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_size_max"))); +int snd_pcm_hw_params_get_buffer_size_max(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_size_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_buffer_size_min) && !defined(skip_index_snd_pcm_hw_params_get_buffer_size_min) int glshim_snd_pcm_hw_params_get_buffer_size_min(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) { @@ -12125,7 +12125,7 @@ int glshim_snd_pcm_hw_params_get_buffer_size_min(const snd_pcm_hw_params_t * par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_buffer_size_min(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_size_min"))); +int snd_pcm_hw_params_get_buffer_size_min(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_size_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_buffer_time) && !defined(skip_index_snd_pcm_hw_params_get_buffer_time) int glshim_snd_pcm_hw_params_get_buffer_time(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12138,7 +12138,7 @@ int glshim_snd_pcm_hw_params_get_buffer_time(const snd_pcm_hw_params_t * params, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_buffer_time(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_time"))); +int snd_pcm_hw_params_get_buffer_time(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_buffer_time_max) && !defined(skip_index_snd_pcm_hw_params_get_buffer_time_max) int glshim_snd_pcm_hw_params_get_buffer_time_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12151,7 +12151,7 @@ int glshim_snd_pcm_hw_params_get_buffer_time_max(const snd_pcm_hw_params_t * par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_buffer_time_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_time_max"))); +int snd_pcm_hw_params_get_buffer_time_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_time_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_buffer_time_min) && !defined(skip_index_snd_pcm_hw_params_get_buffer_time_min) int glshim_snd_pcm_hw_params_get_buffer_time_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12164,7 +12164,7 @@ int glshim_snd_pcm_hw_params_get_buffer_time_min(const snd_pcm_hw_params_t * par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_buffer_time_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_time_min"))); +int snd_pcm_hw_params_get_buffer_time_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_buffer_time_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_channels) && !defined(skip_index_snd_pcm_hw_params_get_channels) int glshim_snd_pcm_hw_params_get_channels(const snd_pcm_hw_params_t * params, unsigned int * val) { @@ -12176,7 +12176,7 @@ int glshim_snd_pcm_hw_params_get_channels(const snd_pcm_hw_params_t * params, un syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_channels(const snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_channels"))); +int snd_pcm_hw_params_get_channels(const snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_channels"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_channels_max) && !defined(skip_index_snd_pcm_hw_params_get_channels_max) int glshim_snd_pcm_hw_params_get_channels_max(const snd_pcm_hw_params_t * params, unsigned int * val) { @@ -12188,7 +12188,7 @@ int glshim_snd_pcm_hw_params_get_channels_max(const snd_pcm_hw_params_t * params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_channels_max(const snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_channels_max"))); +int snd_pcm_hw_params_get_channels_max(const snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_channels_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_channels_min) && !defined(skip_index_snd_pcm_hw_params_get_channels_min) int glshim_snd_pcm_hw_params_get_channels_min(const snd_pcm_hw_params_t * params, unsigned int * val) { @@ -12200,7 +12200,7 @@ int glshim_snd_pcm_hw_params_get_channels_min(const snd_pcm_hw_params_t * params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_channels_min(const snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_channels_min"))); +int snd_pcm_hw_params_get_channels_min(const snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_channels_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_export_buffer) && !defined(skip_index_snd_pcm_hw_params_get_export_buffer) int glshim_snd_pcm_hw_params_get_export_buffer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) { @@ -12213,7 +12213,7 @@ int glshim_snd_pcm_hw_params_get_export_buffer(snd_pcm_t * pcm, snd_pcm_hw_param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_export_buffer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_export_buffer"))); +int snd_pcm_hw_params_get_export_buffer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_export_buffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_fifo_size) && !defined(skip_index_snd_pcm_hw_params_get_fifo_size) int glshim_snd_pcm_hw_params_get_fifo_size(const snd_pcm_hw_params_t * params) { @@ -12224,7 +12224,7 @@ int glshim_snd_pcm_hw_params_get_fifo_size(const snd_pcm_hw_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_fifo_size(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_get_fifo_size"))); +int snd_pcm_hw_params_get_fifo_size(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_get_fifo_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_format) && !defined(skip_index_snd_pcm_hw_params_get_format) int glshim_snd_pcm_hw_params_get_format(const snd_pcm_hw_params_t * params, snd_pcm_format_t * val) { @@ -12236,7 +12236,7 @@ int glshim_snd_pcm_hw_params_get_format(const snd_pcm_hw_params_t * params, snd_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_format(const snd_pcm_hw_params_t * params, snd_pcm_format_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_format"))); +int snd_pcm_hw_params_get_format(const snd_pcm_hw_params_t * params, snd_pcm_format_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_format"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_format_mask) && !defined(skip_index_snd_pcm_hw_params_get_format_mask) void glshim_snd_pcm_hw_params_get_format_mask(snd_pcm_hw_params_t * params, snd_pcm_format_mask_t * mask) { @@ -12246,7 +12246,7 @@ void glshim_snd_pcm_hw_params_get_format_mask(snd_pcm_hw_params_t * params, snd_ packed_data.args.a2 = (snd_pcm_format_mask_t *)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_hw_params_get_format_mask(snd_pcm_hw_params_t * params, snd_pcm_format_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_get_format_mask"))); +void snd_pcm_hw_params_get_format_mask(snd_pcm_hw_params_t * params, snd_pcm_format_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_get_format_mask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_min_align) && !defined(skip_index_snd_pcm_hw_params_get_min_align) int glshim_snd_pcm_hw_params_get_min_align(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) { @@ -12258,7 +12258,7 @@ int glshim_snd_pcm_hw_params_get_min_align(const snd_pcm_hw_params_t * params, s syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_min_align(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_min_align"))); +int snd_pcm_hw_params_get_min_align(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_min_align"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_period_size) && !defined(skip_index_snd_pcm_hw_params_get_period_size) int glshim_snd_pcm_hw_params_get_period_size(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * frames, int * dir) { @@ -12271,7 +12271,7 @@ int glshim_snd_pcm_hw_params_get_period_size(const snd_pcm_hw_params_t * params, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_period_size(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * frames, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_size"))); +int snd_pcm_hw_params_get_period_size(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * frames, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_period_size_max) && !defined(skip_index_snd_pcm_hw_params_get_period_size_max) int glshim_snd_pcm_hw_params_get_period_size_max(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * frames, int * dir) { @@ -12284,7 +12284,7 @@ int glshim_snd_pcm_hw_params_get_period_size_max(const snd_pcm_hw_params_t * par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_period_size_max(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * frames, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_size_max"))); +int snd_pcm_hw_params_get_period_size_max(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * frames, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_size_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_period_size_min) && !defined(skip_index_snd_pcm_hw_params_get_period_size_min) int glshim_snd_pcm_hw_params_get_period_size_min(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * frames, int * dir) { @@ -12297,7 +12297,7 @@ int glshim_snd_pcm_hw_params_get_period_size_min(const snd_pcm_hw_params_t * par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_period_size_min(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * frames, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_size_min"))); +int snd_pcm_hw_params_get_period_size_min(const snd_pcm_hw_params_t * params, snd_pcm_uframes_t * frames, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_size_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_period_time) && !defined(skip_index_snd_pcm_hw_params_get_period_time) int glshim_snd_pcm_hw_params_get_period_time(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12310,7 +12310,7 @@ int glshim_snd_pcm_hw_params_get_period_time(const snd_pcm_hw_params_t * params, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_period_time(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_time"))); +int snd_pcm_hw_params_get_period_time(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_period_time_max) && !defined(skip_index_snd_pcm_hw_params_get_period_time_max) int glshim_snd_pcm_hw_params_get_period_time_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12323,7 +12323,7 @@ int glshim_snd_pcm_hw_params_get_period_time_max(const snd_pcm_hw_params_t * par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_period_time_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_time_max"))); +int snd_pcm_hw_params_get_period_time_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_time_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_period_time_min) && !defined(skip_index_snd_pcm_hw_params_get_period_time_min) int glshim_snd_pcm_hw_params_get_period_time_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12336,7 +12336,7 @@ int glshim_snd_pcm_hw_params_get_period_time_min(const snd_pcm_hw_params_t * par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_period_time_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_time_min"))); +int snd_pcm_hw_params_get_period_time_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_period_time_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_periods) && !defined(skip_index_snd_pcm_hw_params_get_periods) int glshim_snd_pcm_hw_params_get_periods(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12349,7 +12349,7 @@ int glshim_snd_pcm_hw_params_get_periods(const snd_pcm_hw_params_t * params, uns syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_periods(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_periods"))); +int snd_pcm_hw_params_get_periods(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_periods"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_periods_max) && !defined(skip_index_snd_pcm_hw_params_get_periods_max) int glshim_snd_pcm_hw_params_get_periods_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12362,7 +12362,7 @@ int glshim_snd_pcm_hw_params_get_periods_max(const snd_pcm_hw_params_t * params, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_periods_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_periods_max"))); +int snd_pcm_hw_params_get_periods_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_periods_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_periods_min) && !defined(skip_index_snd_pcm_hw_params_get_periods_min) int glshim_snd_pcm_hw_params_get_periods_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12375,7 +12375,7 @@ int glshim_snd_pcm_hw_params_get_periods_min(const snd_pcm_hw_params_t * params, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_periods_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_periods_min"))); +int snd_pcm_hw_params_get_periods_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_periods_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_rate) && !defined(skip_index_snd_pcm_hw_params_get_rate) int glshim_snd_pcm_hw_params_get_rate(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12388,7 +12388,7 @@ int glshim_snd_pcm_hw_params_get_rate(const snd_pcm_hw_params_t * params, unsign syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_rate(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_rate"))); +int snd_pcm_hw_params_get_rate(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_rate"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_rate_max) && !defined(skip_index_snd_pcm_hw_params_get_rate_max) int glshim_snd_pcm_hw_params_get_rate_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12401,7 +12401,7 @@ int glshim_snd_pcm_hw_params_get_rate_max(const snd_pcm_hw_params_t * params, un syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_rate_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_rate_max"))); +int snd_pcm_hw_params_get_rate_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_rate_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_rate_min) && !defined(skip_index_snd_pcm_hw_params_get_rate_min) int glshim_snd_pcm_hw_params_get_rate_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12414,7 +12414,7 @@ int glshim_snd_pcm_hw_params_get_rate_min(const snd_pcm_hw_params_t * params, un syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_rate_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_rate_min"))); +int snd_pcm_hw_params_get_rate_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_rate_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_rate_numden) && !defined(skip_index_snd_pcm_hw_params_get_rate_numden) int glshim_snd_pcm_hw_params_get_rate_numden(const snd_pcm_hw_params_t * params, unsigned int * rate_num, unsigned int * rate_den) { @@ -12427,7 +12427,7 @@ int glshim_snd_pcm_hw_params_get_rate_numden(const snd_pcm_hw_params_t * params, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_rate_numden(const snd_pcm_hw_params_t * params, unsigned int * rate_num, unsigned int * rate_den) __attribute__((alias("glshim_snd_pcm_hw_params_get_rate_numden"))); +int snd_pcm_hw_params_get_rate_numden(const snd_pcm_hw_params_t * params, unsigned int * rate_num, unsigned int * rate_den) __attribute__((alias("glshim_snd_pcm_hw_params_get_rate_numden"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_rate_resample) && !defined(skip_index_snd_pcm_hw_params_get_rate_resample) int glshim_snd_pcm_hw_params_get_rate_resample(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) { @@ -12440,7 +12440,7 @@ int glshim_snd_pcm_hw_params_get_rate_resample(snd_pcm_t * pcm, snd_pcm_hw_param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_rate_resample(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_rate_resample"))); +int snd_pcm_hw_params_get_rate_resample(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_get_rate_resample"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_sbits) && !defined(skip_index_snd_pcm_hw_params_get_sbits) int glshim_snd_pcm_hw_params_get_sbits(const snd_pcm_hw_params_t * params) { @@ -12451,7 +12451,7 @@ int glshim_snd_pcm_hw_params_get_sbits(const snd_pcm_hw_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_sbits(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_get_sbits"))); +int snd_pcm_hw_params_get_sbits(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_get_sbits"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_subformat) && !defined(skip_index_snd_pcm_hw_params_get_subformat) int glshim_snd_pcm_hw_params_get_subformat(const snd_pcm_hw_params_t * params, snd_pcm_subformat_t * subformat) { @@ -12463,7 +12463,7 @@ int glshim_snd_pcm_hw_params_get_subformat(const snd_pcm_hw_params_t * params, s syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_subformat(const snd_pcm_hw_params_t * params, snd_pcm_subformat_t * subformat) __attribute__((alias("glshim_snd_pcm_hw_params_get_subformat"))); +int snd_pcm_hw_params_get_subformat(const snd_pcm_hw_params_t * params, snd_pcm_subformat_t * subformat) __attribute__((alias("glshim_snd_pcm_hw_params_get_subformat"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_subformat_mask) && !defined(skip_index_snd_pcm_hw_params_get_subformat_mask) void glshim_snd_pcm_hw_params_get_subformat_mask(snd_pcm_hw_params_t * params, snd_pcm_subformat_mask_t * mask) { @@ -12473,7 +12473,7 @@ void glshim_snd_pcm_hw_params_get_subformat_mask(snd_pcm_hw_params_t * params, s packed_data.args.a2 = (snd_pcm_subformat_mask_t *)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_hw_params_get_subformat_mask(snd_pcm_hw_params_t * params, snd_pcm_subformat_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_get_subformat_mask"))); +void snd_pcm_hw_params_get_subformat_mask(snd_pcm_hw_params_t * params, snd_pcm_subformat_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_get_subformat_mask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_tick_time) && !defined(skip_index_snd_pcm_hw_params_get_tick_time) int glshim_snd_pcm_hw_params_get_tick_time(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12486,7 +12486,7 @@ int glshim_snd_pcm_hw_params_get_tick_time(const snd_pcm_hw_params_t * params, u syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_tick_time(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_tick_time"))); +int snd_pcm_hw_params_get_tick_time(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_tick_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_tick_time_max) && !defined(skip_index_snd_pcm_hw_params_get_tick_time_max) int glshim_snd_pcm_hw_params_get_tick_time_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12499,7 +12499,7 @@ int glshim_snd_pcm_hw_params_get_tick_time_max(const snd_pcm_hw_params_t * param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_tick_time_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_tick_time_max"))); +int snd_pcm_hw_params_get_tick_time_max(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_tick_time_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_get_tick_time_min) && !defined(skip_index_snd_pcm_hw_params_get_tick_time_min) int glshim_snd_pcm_hw_params_get_tick_time_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12512,7 +12512,7 @@ int glshim_snd_pcm_hw_params_get_tick_time_min(const snd_pcm_hw_params_t * param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_get_tick_time_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_tick_time_min"))); +int snd_pcm_hw_params_get_tick_time_min(const snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_get_tick_time_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_is_batch) && !defined(skip_index_snd_pcm_hw_params_is_batch) int glshim_snd_pcm_hw_params_is_batch(const snd_pcm_hw_params_t * params) { @@ -12523,7 +12523,7 @@ int glshim_snd_pcm_hw_params_is_batch(const snd_pcm_hw_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_is_batch(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_batch"))); +int snd_pcm_hw_params_is_batch(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_batch"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_is_block_transfer) && !defined(skip_index_snd_pcm_hw_params_is_block_transfer) int glshim_snd_pcm_hw_params_is_block_transfer(const snd_pcm_hw_params_t * params) { @@ -12534,7 +12534,7 @@ int glshim_snd_pcm_hw_params_is_block_transfer(const snd_pcm_hw_params_t * param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_is_block_transfer(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_block_transfer"))); +int snd_pcm_hw_params_is_block_transfer(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_block_transfer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_is_double) && !defined(skip_index_snd_pcm_hw_params_is_double) int glshim_snd_pcm_hw_params_is_double(const snd_pcm_hw_params_t * params) { @@ -12545,7 +12545,7 @@ int glshim_snd_pcm_hw_params_is_double(const snd_pcm_hw_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_is_double(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_double"))); +int snd_pcm_hw_params_is_double(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_double"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_is_half_duplex) && !defined(skip_index_snd_pcm_hw_params_is_half_duplex) int glshim_snd_pcm_hw_params_is_half_duplex(const snd_pcm_hw_params_t * params) { @@ -12556,7 +12556,7 @@ int glshim_snd_pcm_hw_params_is_half_duplex(const snd_pcm_hw_params_t * params) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_is_half_duplex(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_half_duplex"))); +int snd_pcm_hw_params_is_half_duplex(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_half_duplex"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_is_joint_duplex) && !defined(skip_index_snd_pcm_hw_params_is_joint_duplex) int glshim_snd_pcm_hw_params_is_joint_duplex(const snd_pcm_hw_params_t * params) { @@ -12567,7 +12567,7 @@ int glshim_snd_pcm_hw_params_is_joint_duplex(const snd_pcm_hw_params_t * params) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_is_joint_duplex(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_joint_duplex"))); +int snd_pcm_hw_params_is_joint_duplex(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_joint_duplex"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_is_monotonic) && !defined(skip_index_snd_pcm_hw_params_is_monotonic) int glshim_snd_pcm_hw_params_is_monotonic(const snd_pcm_hw_params_t * params) { @@ -12578,7 +12578,7 @@ int glshim_snd_pcm_hw_params_is_monotonic(const snd_pcm_hw_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_is_monotonic(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_monotonic"))); +int snd_pcm_hw_params_is_monotonic(const snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_is_monotonic"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_malloc) && !defined(skip_index_snd_pcm_hw_params_malloc) int glshim_snd_pcm_hw_params_malloc(snd_pcm_hw_params_t ** ptr) { @@ -12589,7 +12589,7 @@ int glshim_snd_pcm_hw_params_malloc(snd_pcm_hw_params_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_malloc(snd_pcm_hw_params_t ** ptr) __attribute__((alias("glshim_snd_pcm_hw_params_malloc"))); +int snd_pcm_hw_params_malloc(snd_pcm_hw_params_t ** ptr) __attribute__((alias("glshim_snd_pcm_hw_params_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_access) && !defined(skip_index_snd_pcm_hw_params_set_access) int glshim_snd_pcm_hw_params_set_access(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t _access) { @@ -12602,7 +12602,7 @@ int glshim_snd_pcm_hw_params_set_access(snd_pcm_t * pcm, snd_pcm_hw_params_t * p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_access(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t _access) __attribute__((alias("glshim_snd_pcm_hw_params_set_access"))); +int snd_pcm_hw_params_set_access(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t _access) __attribute__((alias("glshim_snd_pcm_hw_params_set_access"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_access_first) && !defined(skip_index_snd_pcm_hw_params_set_access_first) int glshim_snd_pcm_hw_params_set_access_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t * _access) { @@ -12615,7 +12615,7 @@ int glshim_snd_pcm_hw_params_set_access_first(snd_pcm_t * pcm, snd_pcm_hw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_access_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t * _access) __attribute__((alias("glshim_snd_pcm_hw_params_set_access_first"))); +int snd_pcm_hw_params_set_access_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t * _access) __attribute__((alias("glshim_snd_pcm_hw_params_set_access_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_access_last) && !defined(skip_index_snd_pcm_hw_params_set_access_last) int glshim_snd_pcm_hw_params_set_access_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t * _access) { @@ -12628,7 +12628,7 @@ int glshim_snd_pcm_hw_params_set_access_last(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_access_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t * _access) __attribute__((alias("glshim_snd_pcm_hw_params_set_access_last"))); +int snd_pcm_hw_params_set_access_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t * _access) __attribute__((alias("glshim_snd_pcm_hw_params_set_access_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_access_mask) && !defined(skip_index_snd_pcm_hw_params_set_access_mask) int glshim_snd_pcm_hw_params_set_access_mask(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_mask_t * mask) { @@ -12641,7 +12641,7 @@ int glshim_snd_pcm_hw_params_set_access_mask(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_access_mask(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_set_access_mask"))); +int snd_pcm_hw_params_set_access_mask(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_set_access_mask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_size) && !defined(skip_index_snd_pcm_hw_params_set_buffer_size) int glshim_snd_pcm_hw_params_set_buffer_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val) { @@ -12654,7 +12654,7 @@ int glshim_snd_pcm_hw_params_set_buffer_size(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size"))); +int snd_pcm_hw_params_set_buffer_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_size_first) && !defined(skip_index_snd_pcm_hw_params_set_buffer_size_first) int glshim_snd_pcm_hw_params_set_buffer_size_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) { @@ -12667,7 +12667,7 @@ int glshim_snd_pcm_hw_params_set_buffer_size_first(snd_pcm_t * pcm, snd_pcm_hw_p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_size_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_first"))); +int snd_pcm_hw_params_set_buffer_size_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_size_last) && !defined(skip_index_snd_pcm_hw_params_set_buffer_size_last) int glshim_snd_pcm_hw_params_set_buffer_size_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) { @@ -12680,7 +12680,7 @@ int glshim_snd_pcm_hw_params_set_buffer_size_last(snd_pcm_t * pcm, snd_pcm_hw_pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_size_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_last"))); +int snd_pcm_hw_params_set_buffer_size_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_size_max) && !defined(skip_index_snd_pcm_hw_params_set_buffer_size_max) int glshim_snd_pcm_hw_params_set_buffer_size_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) { @@ -12693,7 +12693,7 @@ int glshim_snd_pcm_hw_params_set_buffer_size_max(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_size_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_max"))); +int snd_pcm_hw_params_set_buffer_size_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_size_min) && !defined(skip_index_snd_pcm_hw_params_set_buffer_size_min) int glshim_snd_pcm_hw_params_set_buffer_size_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) { @@ -12706,7 +12706,7 @@ int glshim_snd_pcm_hw_params_set_buffer_size_min(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_size_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_min"))); +int snd_pcm_hw_params_set_buffer_size_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_size_minmax) && !defined(skip_index_snd_pcm_hw_params_set_buffer_size_minmax) int glshim_snd_pcm_hw_params_set_buffer_size_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * min, snd_pcm_uframes_t * max) { @@ -12720,7 +12720,7 @@ int glshim_snd_pcm_hw_params_set_buffer_size_minmax(snd_pcm_t * pcm, snd_pcm_hw_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_size_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * min, snd_pcm_uframes_t * max) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_minmax"))); +int snd_pcm_hw_params_set_buffer_size_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * min, snd_pcm_uframes_t * max) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_minmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_size_near) && !defined(skip_index_snd_pcm_hw_params_set_buffer_size_near) int glshim_snd_pcm_hw_params_set_buffer_size_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) { @@ -12733,7 +12733,7 @@ int glshim_snd_pcm_hw_params_set_buffer_size_near(snd_pcm_t * pcm, snd_pcm_hw_pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_size_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_near"))); +int snd_pcm_hw_params_set_buffer_size_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_size_near"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_time) && !defined(skip_index_snd_pcm_hw_params_set_buffer_time) int glshim_snd_pcm_hw_params_set_buffer_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) { @@ -12747,7 +12747,7 @@ int glshim_snd_pcm_hw_params_set_buffer_time(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time"))); +int snd_pcm_hw_params_set_buffer_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_time_first) && !defined(skip_index_snd_pcm_hw_params_set_buffer_time_first) int glshim_snd_pcm_hw_params_set_buffer_time_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12761,7 +12761,7 @@ int glshim_snd_pcm_hw_params_set_buffer_time_first(snd_pcm_t * pcm, snd_pcm_hw_p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_time_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_first"))); +int snd_pcm_hw_params_set_buffer_time_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_time_last) && !defined(skip_index_snd_pcm_hw_params_set_buffer_time_last) int glshim_snd_pcm_hw_params_set_buffer_time_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12775,7 +12775,7 @@ int glshim_snd_pcm_hw_params_set_buffer_time_last(snd_pcm_t * pcm, snd_pcm_hw_pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_time_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_last"))); +int snd_pcm_hw_params_set_buffer_time_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_time_max) && !defined(skip_index_snd_pcm_hw_params_set_buffer_time_max) int glshim_snd_pcm_hw_params_set_buffer_time_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12789,7 +12789,7 @@ int glshim_snd_pcm_hw_params_set_buffer_time_max(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_time_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_max"))); +int snd_pcm_hw_params_set_buffer_time_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_time_min) && !defined(skip_index_snd_pcm_hw_params_set_buffer_time_min) int glshim_snd_pcm_hw_params_set_buffer_time_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12803,7 +12803,7 @@ int glshim_snd_pcm_hw_params_set_buffer_time_min(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_time_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_min"))); +int snd_pcm_hw_params_set_buffer_time_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_time_minmax) && !defined(skip_index_snd_pcm_hw_params_set_buffer_time_minmax) int glshim_snd_pcm_hw_params_set_buffer_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) { @@ -12819,7 +12819,7 @@ int glshim_snd_pcm_hw_params_set_buffer_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_minmax"))); +int snd_pcm_hw_params_set_buffer_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_minmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_buffer_time_near) && !defined(skip_index_snd_pcm_hw_params_set_buffer_time_near) int glshim_snd_pcm_hw_params_set_buffer_time_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -12833,7 +12833,7 @@ int glshim_snd_pcm_hw_params_set_buffer_time_near(snd_pcm_t * pcm, snd_pcm_hw_pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_buffer_time_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_near"))); +int snd_pcm_hw_params_set_buffer_time_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_buffer_time_near"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_channels) && !defined(skip_index_snd_pcm_hw_params_set_channels) int glshim_snd_pcm_hw_params_set_channels(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) { @@ -12846,7 +12846,7 @@ int glshim_snd_pcm_hw_params_set_channels(snd_pcm_t * pcm, snd_pcm_hw_params_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_channels(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels"))); +int snd_pcm_hw_params_set_channels(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_channels_first) && !defined(skip_index_snd_pcm_hw_params_set_channels_first) int glshim_snd_pcm_hw_params_set_channels_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) { @@ -12859,7 +12859,7 @@ int glshim_snd_pcm_hw_params_set_channels_first(snd_pcm_t * pcm, snd_pcm_hw_para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_channels_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_first"))); +int snd_pcm_hw_params_set_channels_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_channels_last) && !defined(skip_index_snd_pcm_hw_params_set_channels_last) int glshim_snd_pcm_hw_params_set_channels_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) { @@ -12872,7 +12872,7 @@ int glshim_snd_pcm_hw_params_set_channels_last(snd_pcm_t * pcm, snd_pcm_hw_param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_channels_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_last"))); +int snd_pcm_hw_params_set_channels_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_channels_max) && !defined(skip_index_snd_pcm_hw_params_set_channels_max) int glshim_snd_pcm_hw_params_set_channels_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) { @@ -12885,7 +12885,7 @@ int glshim_snd_pcm_hw_params_set_channels_max(snd_pcm_t * pcm, snd_pcm_hw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_channels_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_max"))); +int snd_pcm_hw_params_set_channels_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_channels_min) && !defined(skip_index_snd_pcm_hw_params_set_channels_min) int glshim_snd_pcm_hw_params_set_channels_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) { @@ -12898,7 +12898,7 @@ int glshim_snd_pcm_hw_params_set_channels_min(snd_pcm_t * pcm, snd_pcm_hw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_channels_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_min"))); +int snd_pcm_hw_params_set_channels_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_channels_minmax) && !defined(skip_index_snd_pcm_hw_params_set_channels_minmax) int glshim_snd_pcm_hw_params_set_channels_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, unsigned int * max) { @@ -12912,7 +12912,7 @@ int glshim_snd_pcm_hw_params_set_channels_minmax(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_channels_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, unsigned int * max) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_minmax"))); +int snd_pcm_hw_params_set_channels_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, unsigned int * max) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_minmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_channels_near) && !defined(skip_index_snd_pcm_hw_params_set_channels_near) int glshim_snd_pcm_hw_params_set_channels_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) { @@ -12925,7 +12925,7 @@ int glshim_snd_pcm_hw_params_set_channels_near(snd_pcm_t * pcm, snd_pcm_hw_param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_channels_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_near"))); +int snd_pcm_hw_params_set_channels_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_hw_params_set_channels_near"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_export_buffer) && !defined(skip_index_snd_pcm_hw_params_set_export_buffer) int glshim_snd_pcm_hw_params_set_export_buffer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) { @@ -12938,7 +12938,7 @@ int glshim_snd_pcm_hw_params_set_export_buffer(snd_pcm_t * pcm, snd_pcm_hw_param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_export_buffer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) __attribute__((alias("glshim_snd_pcm_hw_params_set_export_buffer"))); +int snd_pcm_hw_params_set_export_buffer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) __attribute__((alias("glshim_snd_pcm_hw_params_set_export_buffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_format) && !defined(skip_index_snd_pcm_hw_params_set_format) int glshim_snd_pcm_hw_params_set_format(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t val) { @@ -12951,7 +12951,7 @@ int glshim_snd_pcm_hw_params_set_format(snd_pcm_t * pcm, snd_pcm_hw_params_t * p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_format(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t val) __attribute__((alias("glshim_snd_pcm_hw_params_set_format"))); +int snd_pcm_hw_params_set_format(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t val) __attribute__((alias("glshim_snd_pcm_hw_params_set_format"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_format_first) && !defined(skip_index_snd_pcm_hw_params_set_format_first) int glshim_snd_pcm_hw_params_set_format_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t * format) { @@ -12964,7 +12964,7 @@ int glshim_snd_pcm_hw_params_set_format_first(snd_pcm_t * pcm, snd_pcm_hw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_format_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t * format) __attribute__((alias("glshim_snd_pcm_hw_params_set_format_first"))); +int snd_pcm_hw_params_set_format_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t * format) __attribute__((alias("glshim_snd_pcm_hw_params_set_format_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_format_last) && !defined(skip_index_snd_pcm_hw_params_set_format_last) int glshim_snd_pcm_hw_params_set_format_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t * format) { @@ -12977,7 +12977,7 @@ int glshim_snd_pcm_hw_params_set_format_last(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_format_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t * format) __attribute__((alias("glshim_snd_pcm_hw_params_set_format_last"))); +int snd_pcm_hw_params_set_format_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t * format) __attribute__((alias("glshim_snd_pcm_hw_params_set_format_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_format_mask) && !defined(skip_index_snd_pcm_hw_params_set_format_mask) int glshim_snd_pcm_hw_params_set_format_mask(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_mask_t * mask) { @@ -12990,7 +12990,7 @@ int glshim_snd_pcm_hw_params_set_format_mask(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_format_mask(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_set_format_mask"))); +int snd_pcm_hw_params_set_format_mask(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_set_format_mask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_size) && !defined(skip_index_snd_pcm_hw_params_set_period_size) int glshim_snd_pcm_hw_params_set_period_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val, int dir) { @@ -13004,7 +13004,7 @@ int glshim_snd_pcm_hw_params_set_period_size(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size"))); +int snd_pcm_hw_params_set_period_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_size_first) && !defined(skip_index_snd_pcm_hw_params_set_period_size_first) int glshim_snd_pcm_hw_params_set_period_size_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) { @@ -13018,7 +13018,7 @@ int glshim_snd_pcm_hw_params_set_period_size_first(snd_pcm_t * pcm, snd_pcm_hw_p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_size_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_first"))); +int snd_pcm_hw_params_set_period_size_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_size_integer) && !defined(skip_index_snd_pcm_hw_params_set_period_size_integer) int glshim_snd_pcm_hw_params_set_period_size_integer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) { @@ -13030,7 +13030,7 @@ int glshim_snd_pcm_hw_params_set_period_size_integer(snd_pcm_t * pcm, snd_pcm_hw syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_size_integer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_integer"))); +int snd_pcm_hw_params_set_period_size_integer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_integer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_size_last) && !defined(skip_index_snd_pcm_hw_params_set_period_size_last) int glshim_snd_pcm_hw_params_set_period_size_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) { @@ -13044,7 +13044,7 @@ int glshim_snd_pcm_hw_params_set_period_size_last(snd_pcm_t * pcm, snd_pcm_hw_pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_size_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_last"))); +int snd_pcm_hw_params_set_period_size_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_size_max) && !defined(skip_index_snd_pcm_hw_params_set_period_size_max) int glshim_snd_pcm_hw_params_set_period_size_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) { @@ -13058,7 +13058,7 @@ int glshim_snd_pcm_hw_params_set_period_size_max(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_size_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_max"))); +int snd_pcm_hw_params_set_period_size_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_size_min) && !defined(skip_index_snd_pcm_hw_params_set_period_size_min) int glshim_snd_pcm_hw_params_set_period_size_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) { @@ -13072,7 +13072,7 @@ int glshim_snd_pcm_hw_params_set_period_size_min(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_size_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_min"))); +int snd_pcm_hw_params_set_period_size_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_size_minmax) && !defined(skip_index_snd_pcm_hw_params_set_period_size_minmax) int glshim_snd_pcm_hw_params_set_period_size_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * min, int * mindir, snd_pcm_uframes_t * max, int * maxdir) { @@ -13088,7 +13088,7 @@ int glshim_snd_pcm_hw_params_set_period_size_minmax(snd_pcm_t * pcm, snd_pcm_hw_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_size_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * min, int * mindir, snd_pcm_uframes_t * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_minmax"))); +int snd_pcm_hw_params_set_period_size_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * min, int * mindir, snd_pcm_uframes_t * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_minmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_size_near) && !defined(skip_index_snd_pcm_hw_params_set_period_size_near) int glshim_snd_pcm_hw_params_set_period_size_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) { @@ -13102,7 +13102,7 @@ int glshim_snd_pcm_hw_params_set_period_size_near(snd_pcm_t * pcm, snd_pcm_hw_pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_size_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_near"))); +int snd_pcm_hw_params_set_period_size_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_size_near"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_time) && !defined(skip_index_snd_pcm_hw_params_set_period_time) int glshim_snd_pcm_hw_params_set_period_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) { @@ -13116,7 +13116,7 @@ int glshim_snd_pcm_hw_params_set_period_time(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time"))); +int snd_pcm_hw_params_set_period_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_time_first) && !defined(skip_index_snd_pcm_hw_params_set_period_time_first) int glshim_snd_pcm_hw_params_set_period_time_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13130,7 +13130,7 @@ int glshim_snd_pcm_hw_params_set_period_time_first(snd_pcm_t * pcm, snd_pcm_hw_p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_time_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_first"))); +int snd_pcm_hw_params_set_period_time_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_time_last) && !defined(skip_index_snd_pcm_hw_params_set_period_time_last) int glshim_snd_pcm_hw_params_set_period_time_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13144,7 +13144,7 @@ int glshim_snd_pcm_hw_params_set_period_time_last(snd_pcm_t * pcm, snd_pcm_hw_pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_time_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_last"))); +int snd_pcm_hw_params_set_period_time_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_time_max) && !defined(skip_index_snd_pcm_hw_params_set_period_time_max) int glshim_snd_pcm_hw_params_set_period_time_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13158,7 +13158,7 @@ int glshim_snd_pcm_hw_params_set_period_time_max(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_time_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_max"))); +int snd_pcm_hw_params_set_period_time_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_time_min) && !defined(skip_index_snd_pcm_hw_params_set_period_time_min) int glshim_snd_pcm_hw_params_set_period_time_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13172,7 +13172,7 @@ int glshim_snd_pcm_hw_params_set_period_time_min(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_time_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_min"))); +int snd_pcm_hw_params_set_period_time_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_time_minmax) && !defined(skip_index_snd_pcm_hw_params_set_period_time_minmax) int glshim_snd_pcm_hw_params_set_period_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) { @@ -13188,7 +13188,7 @@ int glshim_snd_pcm_hw_params_set_period_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_minmax"))); +int snd_pcm_hw_params_set_period_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_minmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_period_time_near) && !defined(skip_index_snd_pcm_hw_params_set_period_time_near) int glshim_snd_pcm_hw_params_set_period_time_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13202,7 +13202,7 @@ int glshim_snd_pcm_hw_params_set_period_time_near(snd_pcm_t * pcm, snd_pcm_hw_pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_period_time_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_near"))); +int snd_pcm_hw_params_set_period_time_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_period_time_near"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_periods) && !defined(skip_index_snd_pcm_hw_params_set_periods) int glshim_snd_pcm_hw_params_set_periods(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) { @@ -13216,7 +13216,7 @@ int glshim_snd_pcm_hw_params_set_periods(snd_pcm_t * pcm, snd_pcm_hw_params_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_periods(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods"))); +int snd_pcm_hw_params_set_periods(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_periods_first) && !defined(skip_index_snd_pcm_hw_params_set_periods_first) int glshim_snd_pcm_hw_params_set_periods_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13230,7 +13230,7 @@ int glshim_snd_pcm_hw_params_set_periods_first(snd_pcm_t * pcm, snd_pcm_hw_param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_periods_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_first"))); +int snd_pcm_hw_params_set_periods_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_periods_integer) && !defined(skip_index_snd_pcm_hw_params_set_periods_integer) int glshim_snd_pcm_hw_params_set_periods_integer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) { @@ -13242,7 +13242,7 @@ int glshim_snd_pcm_hw_params_set_periods_integer(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_periods_integer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_integer"))); +int snd_pcm_hw_params_set_periods_integer(snd_pcm_t * pcm, snd_pcm_hw_params_t * params) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_integer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_periods_last) && !defined(skip_index_snd_pcm_hw_params_set_periods_last) int glshim_snd_pcm_hw_params_set_periods_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13256,7 +13256,7 @@ int glshim_snd_pcm_hw_params_set_periods_last(snd_pcm_t * pcm, snd_pcm_hw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_periods_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_last"))); +int snd_pcm_hw_params_set_periods_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_periods_max) && !defined(skip_index_snd_pcm_hw_params_set_periods_max) int glshim_snd_pcm_hw_params_set_periods_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13270,7 +13270,7 @@ int glshim_snd_pcm_hw_params_set_periods_max(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_periods_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_max"))); +int snd_pcm_hw_params_set_periods_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_periods_min) && !defined(skip_index_snd_pcm_hw_params_set_periods_min) int glshim_snd_pcm_hw_params_set_periods_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13284,7 +13284,7 @@ int glshim_snd_pcm_hw_params_set_periods_min(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_periods_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_min"))); +int snd_pcm_hw_params_set_periods_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_periods_minmax) && !defined(skip_index_snd_pcm_hw_params_set_periods_minmax) int glshim_snd_pcm_hw_params_set_periods_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) { @@ -13300,7 +13300,7 @@ int glshim_snd_pcm_hw_params_set_periods_minmax(snd_pcm_t * pcm, snd_pcm_hw_para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_periods_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_minmax"))); +int snd_pcm_hw_params_set_periods_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_minmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_periods_near) && !defined(skip_index_snd_pcm_hw_params_set_periods_near) int glshim_snd_pcm_hw_params_set_periods_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13314,7 +13314,7 @@ int glshim_snd_pcm_hw_params_set_periods_near(snd_pcm_t * pcm, snd_pcm_hw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_periods_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_near"))); +int snd_pcm_hw_params_set_periods_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_periods_near"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_rate) && !defined(skip_index_snd_pcm_hw_params_set_rate) int glshim_snd_pcm_hw_params_set_rate(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) { @@ -13328,7 +13328,7 @@ int glshim_snd_pcm_hw_params_set_rate(snd_pcm_t * pcm, snd_pcm_hw_params_t * par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_rate(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate"))); +int snd_pcm_hw_params_set_rate(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_rate_first) && !defined(skip_index_snd_pcm_hw_params_set_rate_first) int glshim_snd_pcm_hw_params_set_rate_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13342,7 +13342,7 @@ int glshim_snd_pcm_hw_params_set_rate_first(snd_pcm_t * pcm, snd_pcm_hw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_rate_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_first"))); +int snd_pcm_hw_params_set_rate_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_rate_last) && !defined(skip_index_snd_pcm_hw_params_set_rate_last) int glshim_snd_pcm_hw_params_set_rate_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13356,7 +13356,7 @@ int glshim_snd_pcm_hw_params_set_rate_last(snd_pcm_t * pcm, snd_pcm_hw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_rate_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_last"))); +int snd_pcm_hw_params_set_rate_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_rate_max) && !defined(skip_index_snd_pcm_hw_params_set_rate_max) int glshim_snd_pcm_hw_params_set_rate_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13370,7 +13370,7 @@ int glshim_snd_pcm_hw_params_set_rate_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_rate_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_max"))); +int snd_pcm_hw_params_set_rate_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_rate_min) && !defined(skip_index_snd_pcm_hw_params_set_rate_min) int glshim_snd_pcm_hw_params_set_rate_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13384,7 +13384,7 @@ int glshim_snd_pcm_hw_params_set_rate_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_rate_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_min"))); +int snd_pcm_hw_params_set_rate_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_rate_minmax) && !defined(skip_index_snd_pcm_hw_params_set_rate_minmax) int glshim_snd_pcm_hw_params_set_rate_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) { @@ -13400,7 +13400,7 @@ int glshim_snd_pcm_hw_params_set_rate_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_rate_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_minmax"))); +int snd_pcm_hw_params_set_rate_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_minmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_rate_near) && !defined(skip_index_snd_pcm_hw_params_set_rate_near) int glshim_snd_pcm_hw_params_set_rate_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13414,7 +13414,7 @@ int glshim_snd_pcm_hw_params_set_rate_near(snd_pcm_t * pcm, snd_pcm_hw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_rate_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_near"))); +int snd_pcm_hw_params_set_rate_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_near"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_rate_resample) && !defined(skip_index_snd_pcm_hw_params_set_rate_resample) int glshim_snd_pcm_hw_params_set_rate_resample(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) { @@ -13427,7 +13427,7 @@ int glshim_snd_pcm_hw_params_set_rate_resample(snd_pcm_t * pcm, snd_pcm_hw_param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_rate_resample(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_resample"))); +int snd_pcm_hw_params_set_rate_resample(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) __attribute__((alias("glshim_snd_pcm_hw_params_set_rate_resample"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_subformat) && !defined(skip_index_snd_pcm_hw_params_set_subformat) int glshim_snd_pcm_hw_params_set_subformat(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t subformat) { @@ -13440,7 +13440,7 @@ int glshim_snd_pcm_hw_params_set_subformat(snd_pcm_t * pcm, snd_pcm_hw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_subformat(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t subformat) __attribute__((alias("glshim_snd_pcm_hw_params_set_subformat"))); +int snd_pcm_hw_params_set_subformat(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t subformat) __attribute__((alias("glshim_snd_pcm_hw_params_set_subformat"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_subformat_first) && !defined(skip_index_snd_pcm_hw_params_set_subformat_first) int glshim_snd_pcm_hw_params_set_subformat_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t * subformat) { @@ -13453,7 +13453,7 @@ int glshim_snd_pcm_hw_params_set_subformat_first(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_subformat_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t * subformat) __attribute__((alias("glshim_snd_pcm_hw_params_set_subformat_first"))); +int snd_pcm_hw_params_set_subformat_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t * subformat) __attribute__((alias("glshim_snd_pcm_hw_params_set_subformat_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_subformat_last) && !defined(skip_index_snd_pcm_hw_params_set_subformat_last) int glshim_snd_pcm_hw_params_set_subformat_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t * subformat) { @@ -13466,7 +13466,7 @@ int glshim_snd_pcm_hw_params_set_subformat_last(snd_pcm_t * pcm, snd_pcm_hw_para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_subformat_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t * subformat) __attribute__((alias("glshim_snd_pcm_hw_params_set_subformat_last"))); +int snd_pcm_hw_params_set_subformat_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t * subformat) __attribute__((alias("glshim_snd_pcm_hw_params_set_subformat_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_subformat_mask) && !defined(skip_index_snd_pcm_hw_params_set_subformat_mask) int glshim_snd_pcm_hw_params_set_subformat_mask(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_mask_t * mask) { @@ -13479,7 +13479,7 @@ int glshim_snd_pcm_hw_params_set_subformat_mask(snd_pcm_t * pcm, snd_pcm_hw_para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_subformat_mask(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_set_subformat_mask"))); +int snd_pcm_hw_params_set_subformat_mask(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_mask_t * mask) __attribute__((alias("glshim_snd_pcm_hw_params_set_subformat_mask"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_tick_time) && !defined(skip_index_snd_pcm_hw_params_set_tick_time) int glshim_snd_pcm_hw_params_set_tick_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) { @@ -13493,7 +13493,7 @@ int glshim_snd_pcm_hw_params_set_tick_time(snd_pcm_t * pcm, snd_pcm_hw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_tick_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time"))); +int snd_pcm_hw_params_set_tick_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_tick_time_first) && !defined(skip_index_snd_pcm_hw_params_set_tick_time_first) int glshim_snd_pcm_hw_params_set_tick_time_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13507,7 +13507,7 @@ int glshim_snd_pcm_hw_params_set_tick_time_first(snd_pcm_t * pcm, snd_pcm_hw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_tick_time_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_first"))); +int snd_pcm_hw_params_set_tick_time_first(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_first"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_tick_time_last) && !defined(skip_index_snd_pcm_hw_params_set_tick_time_last) int glshim_snd_pcm_hw_params_set_tick_time_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13521,7 +13521,7 @@ int glshim_snd_pcm_hw_params_set_tick_time_last(snd_pcm_t * pcm, snd_pcm_hw_para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_tick_time_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_last"))); +int snd_pcm_hw_params_set_tick_time_last(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_last"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_tick_time_max) && !defined(skip_index_snd_pcm_hw_params_set_tick_time_max) int glshim_snd_pcm_hw_params_set_tick_time_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13535,7 +13535,7 @@ int glshim_snd_pcm_hw_params_set_tick_time_max(snd_pcm_t * pcm, snd_pcm_hw_param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_tick_time_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_max"))); +int snd_pcm_hw_params_set_tick_time_max(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_tick_time_min) && !defined(skip_index_snd_pcm_hw_params_set_tick_time_min) int glshim_snd_pcm_hw_params_set_tick_time_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13549,7 +13549,7 @@ int glshim_snd_pcm_hw_params_set_tick_time_min(snd_pcm_t * pcm, snd_pcm_hw_param syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_tick_time_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_min"))); +int snd_pcm_hw_params_set_tick_time_min(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_tick_time_minmax) && !defined(skip_index_snd_pcm_hw_params_set_tick_time_minmax) int glshim_snd_pcm_hw_params_set_tick_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) { @@ -13565,7 +13565,7 @@ int glshim_snd_pcm_hw_params_set_tick_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_tick_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_minmax"))); +int snd_pcm_hw_params_set_tick_time_minmax(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * min, int * mindir, unsigned int * max, int * maxdir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_minmax"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_set_tick_time_near) && !defined(skip_index_snd_pcm_hw_params_set_tick_time_near) int glshim_snd_pcm_hw_params_set_tick_time_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) { @@ -13579,7 +13579,7 @@ int glshim_snd_pcm_hw_params_set_tick_time_near(snd_pcm_t * pcm, snd_pcm_hw_para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_set_tick_time_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_near"))); +int snd_pcm_hw_params_set_tick_time_near(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int * val, int * dir) __attribute__((alias("glshim_snd_pcm_hw_params_set_tick_time_near"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_sizeof) && !defined(skip_index_snd_pcm_hw_params_sizeof) size_t glshim_snd_pcm_hw_params_sizeof() { @@ -13589,7 +13589,7 @@ size_t glshim_snd_pcm_hw_params_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_pcm_hw_params_sizeof() __attribute__((alias("glshim_snd_pcm_hw_params_sizeof"))); +size_t snd_pcm_hw_params_sizeof() __attribute__((alias("glshim_snd_pcm_hw_params_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_access) && !defined(skip_index_snd_pcm_hw_params_test_access) int glshim_snd_pcm_hw_params_test_access(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t _access) { @@ -13602,7 +13602,7 @@ int glshim_snd_pcm_hw_params_test_access(snd_pcm_t * pcm, snd_pcm_hw_params_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_access(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t _access) __attribute__((alias("glshim_snd_pcm_hw_params_test_access"))); +int snd_pcm_hw_params_test_access(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_access_t _access) __attribute__((alias("glshim_snd_pcm_hw_params_test_access"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_buffer_size) && !defined(skip_index_snd_pcm_hw_params_test_buffer_size) int glshim_snd_pcm_hw_params_test_buffer_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val) { @@ -13615,7 +13615,7 @@ int glshim_snd_pcm_hw_params_test_buffer_size(snd_pcm_t * pcm, snd_pcm_hw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_buffer_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_hw_params_test_buffer_size"))); +int snd_pcm_hw_params_test_buffer_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_hw_params_test_buffer_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_buffer_time) && !defined(skip_index_snd_pcm_hw_params_test_buffer_time) int glshim_snd_pcm_hw_params_test_buffer_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) { @@ -13629,7 +13629,7 @@ int glshim_snd_pcm_hw_params_test_buffer_time(snd_pcm_t * pcm, snd_pcm_hw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_buffer_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_buffer_time"))); +int snd_pcm_hw_params_test_buffer_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_buffer_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_channels) && !defined(skip_index_snd_pcm_hw_params_test_channels) int glshim_snd_pcm_hw_params_test_channels(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) { @@ -13642,7 +13642,7 @@ int glshim_snd_pcm_hw_params_test_channels(snd_pcm_t * pcm, snd_pcm_hw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_channels(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) __attribute__((alias("glshim_snd_pcm_hw_params_test_channels"))); +int snd_pcm_hw_params_test_channels(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val) __attribute__((alias("glshim_snd_pcm_hw_params_test_channels"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_format) && !defined(skip_index_snd_pcm_hw_params_test_format) int glshim_snd_pcm_hw_params_test_format(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t val) { @@ -13655,7 +13655,7 @@ int glshim_snd_pcm_hw_params_test_format(snd_pcm_t * pcm, snd_pcm_hw_params_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_format(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t val) __attribute__((alias("glshim_snd_pcm_hw_params_test_format"))); +int snd_pcm_hw_params_test_format(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_format_t val) __attribute__((alias("glshim_snd_pcm_hw_params_test_format"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_period_size) && !defined(skip_index_snd_pcm_hw_params_test_period_size) int glshim_snd_pcm_hw_params_test_period_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val, int dir) { @@ -13669,7 +13669,7 @@ int glshim_snd_pcm_hw_params_test_period_size(snd_pcm_t * pcm, snd_pcm_hw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_period_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_period_size"))); +int snd_pcm_hw_params_test_period_size(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_uframes_t val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_period_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_period_time) && !defined(skip_index_snd_pcm_hw_params_test_period_time) int glshim_snd_pcm_hw_params_test_period_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) { @@ -13683,7 +13683,7 @@ int glshim_snd_pcm_hw_params_test_period_time(snd_pcm_t * pcm, snd_pcm_hw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_period_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_period_time"))); +int snd_pcm_hw_params_test_period_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_period_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_periods) && !defined(skip_index_snd_pcm_hw_params_test_periods) int glshim_snd_pcm_hw_params_test_periods(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) { @@ -13697,7 +13697,7 @@ int glshim_snd_pcm_hw_params_test_periods(snd_pcm_t * pcm, snd_pcm_hw_params_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_periods(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_periods"))); +int snd_pcm_hw_params_test_periods(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_periods"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_rate) && !defined(skip_index_snd_pcm_hw_params_test_rate) int glshim_snd_pcm_hw_params_test_rate(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) { @@ -13711,7 +13711,7 @@ int glshim_snd_pcm_hw_params_test_rate(snd_pcm_t * pcm, snd_pcm_hw_params_t * pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_rate(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_rate"))); +int snd_pcm_hw_params_test_rate(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_rate"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_subformat) && !defined(skip_index_snd_pcm_hw_params_test_subformat) int glshim_snd_pcm_hw_params_test_subformat(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t subformat) { @@ -13724,7 +13724,7 @@ int glshim_snd_pcm_hw_params_test_subformat(snd_pcm_t * pcm, snd_pcm_hw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_subformat(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t subformat) __attribute__((alias("glshim_snd_pcm_hw_params_test_subformat"))); +int snd_pcm_hw_params_test_subformat(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, snd_pcm_subformat_t subformat) __attribute__((alias("glshim_snd_pcm_hw_params_test_subformat"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hw_params_test_tick_time) && !defined(skip_index_snd_pcm_hw_params_test_tick_time) int glshim_snd_pcm_hw_params_test_tick_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) { @@ -13738,7 +13738,7 @@ int glshim_snd_pcm_hw_params_test_tick_time(snd_pcm_t * pcm, snd_pcm_hw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hw_params_test_tick_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_tick_time"))); +int snd_pcm_hw_params_test_tick_time(snd_pcm_t * pcm, snd_pcm_hw_params_t * params, unsigned int val, int dir) __attribute__((alias("glshim_snd_pcm_hw_params_test_tick_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_hwsync) && !defined(skip_index_snd_pcm_hwsync) int glshim_snd_pcm_hwsync(snd_pcm_t * pcm) { @@ -13749,7 +13749,7 @@ int glshim_snd_pcm_hwsync(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_hwsync(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_hwsync"))); +int snd_pcm_hwsync(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_hwsync"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info) && !defined(skip_index_snd_pcm_info) int glshim_snd_pcm_info(snd_pcm_t * pcm, snd_pcm_info_t * info) { @@ -13761,7 +13761,7 @@ int glshim_snd_pcm_info(snd_pcm_t * pcm, snd_pcm_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_info(snd_pcm_t * pcm, snd_pcm_info_t * info) __attribute__((alias("glshim_snd_pcm_info"))); +int snd_pcm_info(snd_pcm_t * pcm, snd_pcm_info_t * info) __attribute__((alias("glshim_snd_pcm_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_copy) && !defined(skip_index_snd_pcm_info_copy) void glshim_snd_pcm_info_copy(snd_pcm_info_t * dst, const snd_pcm_info_t * src) { @@ -13771,7 +13771,7 @@ void glshim_snd_pcm_info_copy(snd_pcm_info_t * dst, const snd_pcm_info_t * src) packed_data.args.a2 = (snd_pcm_info_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_info_copy(snd_pcm_info_t * dst, const snd_pcm_info_t * src) __attribute__((alias("glshim_snd_pcm_info_copy"))); +void snd_pcm_info_copy(snd_pcm_info_t * dst, const snd_pcm_info_t * src) __attribute__((alias("glshim_snd_pcm_info_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_free) && !defined(skip_index_snd_pcm_info_free) void glshim_snd_pcm_info_free(snd_pcm_info_t * obj) { @@ -13780,7 +13780,7 @@ void glshim_snd_pcm_info_free(snd_pcm_info_t * obj) { packed_data.args.a1 = (snd_pcm_info_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_info_free(snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_free"))); +void snd_pcm_info_free(snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_card) && !defined(skip_index_snd_pcm_info_get_card) int glshim_snd_pcm_info_get_card(const snd_pcm_info_t * obj) { @@ -13791,7 +13791,7 @@ int glshim_snd_pcm_info_get_card(const snd_pcm_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_info_get_card(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_card"))); +int snd_pcm_info_get_card(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_card"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_class) && !defined(skip_index_snd_pcm_info_get_class) snd_pcm_class_t glshim_snd_pcm_info_get_class(const snd_pcm_info_t * obj) { @@ -13802,7 +13802,7 @@ snd_pcm_class_t glshim_snd_pcm_info_get_class(const snd_pcm_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_class_t snd_pcm_info_get_class(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_class"))); +snd_pcm_class_t snd_pcm_info_get_class(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_class"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_device) && !defined(skip_index_snd_pcm_info_get_device) unsigned int glshim_snd_pcm_info_get_device(const snd_pcm_info_t * obj) { @@ -13813,7 +13813,7 @@ unsigned int glshim_snd_pcm_info_get_device(const snd_pcm_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_pcm_info_get_device(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_device"))); +unsigned int snd_pcm_info_get_device(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_id) && !defined(skip_index_snd_pcm_info_get_id) const char * glshim_snd_pcm_info_get_id(const snd_pcm_info_t * obj) { @@ -13824,7 +13824,7 @@ const char * glshim_snd_pcm_info_get_id(const snd_pcm_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_info_get_id(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_id"))); +const char * snd_pcm_info_get_id(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_name) && !defined(skip_index_snd_pcm_info_get_name) const char * glshim_snd_pcm_info_get_name(const snd_pcm_info_t * obj) { @@ -13835,7 +13835,7 @@ const char * glshim_snd_pcm_info_get_name(const snd_pcm_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_info_get_name(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_name"))); +const char * snd_pcm_info_get_name(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_stream) && !defined(skip_index_snd_pcm_info_get_stream) snd_pcm_stream_t glshim_snd_pcm_info_get_stream(const snd_pcm_info_t * obj) { @@ -13846,7 +13846,7 @@ snd_pcm_stream_t glshim_snd_pcm_info_get_stream(const snd_pcm_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_stream_t snd_pcm_info_get_stream(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_stream"))); +snd_pcm_stream_t snd_pcm_info_get_stream(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_stream"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_subclass) && !defined(skip_index_snd_pcm_info_get_subclass) snd_pcm_subclass_t glshim_snd_pcm_info_get_subclass(const snd_pcm_info_t * obj) { @@ -13857,7 +13857,7 @@ snd_pcm_subclass_t glshim_snd_pcm_info_get_subclass(const snd_pcm_info_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_subclass_t snd_pcm_info_get_subclass(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_subclass"))); +snd_pcm_subclass_t snd_pcm_info_get_subclass(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_subclass"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_subdevice) && !defined(skip_index_snd_pcm_info_get_subdevice) unsigned int glshim_snd_pcm_info_get_subdevice(const snd_pcm_info_t * obj) { @@ -13868,7 +13868,7 @@ unsigned int glshim_snd_pcm_info_get_subdevice(const snd_pcm_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_pcm_info_get_subdevice(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_subdevice"))); +unsigned int snd_pcm_info_get_subdevice(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_subdevice_name) && !defined(skip_index_snd_pcm_info_get_subdevice_name) const char * glshim_snd_pcm_info_get_subdevice_name(const snd_pcm_info_t * obj) { @@ -13879,7 +13879,7 @@ const char * glshim_snd_pcm_info_get_subdevice_name(const snd_pcm_info_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_info_get_subdevice_name(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_subdevice_name"))); +const char * snd_pcm_info_get_subdevice_name(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_subdevice_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_subdevices_avail) && !defined(skip_index_snd_pcm_info_get_subdevices_avail) unsigned int glshim_snd_pcm_info_get_subdevices_avail(const snd_pcm_info_t * obj) { @@ -13890,7 +13890,7 @@ unsigned int glshim_snd_pcm_info_get_subdevices_avail(const snd_pcm_info_t * obj syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_pcm_info_get_subdevices_avail(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_subdevices_avail"))); +unsigned int snd_pcm_info_get_subdevices_avail(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_subdevices_avail"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_subdevices_count) && !defined(skip_index_snd_pcm_info_get_subdevices_count) unsigned int glshim_snd_pcm_info_get_subdevices_count(const snd_pcm_info_t * obj) { @@ -13901,7 +13901,7 @@ unsigned int glshim_snd_pcm_info_get_subdevices_count(const snd_pcm_info_t * obj syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_pcm_info_get_subdevices_count(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_subdevices_count"))); +unsigned int snd_pcm_info_get_subdevices_count(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_subdevices_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_get_sync) && !defined(skip_index_snd_pcm_info_get_sync) snd_pcm_sync_id_t glshim_snd_pcm_info_get_sync(const snd_pcm_info_t * obj) { @@ -13912,7 +13912,7 @@ snd_pcm_sync_id_t glshim_snd_pcm_info_get_sync(const snd_pcm_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sync_id_t snd_pcm_info_get_sync(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_sync"))); +snd_pcm_sync_id_t snd_pcm_info_get_sync(const snd_pcm_info_t * obj) __attribute__((alias("glshim_snd_pcm_info_get_sync"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_malloc) && !defined(skip_index_snd_pcm_info_malloc) int glshim_snd_pcm_info_malloc(snd_pcm_info_t ** ptr) { @@ -13923,7 +13923,7 @@ int glshim_snd_pcm_info_malloc(snd_pcm_info_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_info_malloc(snd_pcm_info_t ** ptr) __attribute__((alias("glshim_snd_pcm_info_malloc"))); +int snd_pcm_info_malloc(snd_pcm_info_t ** ptr) __attribute__((alias("glshim_snd_pcm_info_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_set_device) && !defined(skip_index_snd_pcm_info_set_device) void glshim_snd_pcm_info_set_device(snd_pcm_info_t * obj, unsigned int val) { @@ -13933,7 +13933,7 @@ void glshim_snd_pcm_info_set_device(snd_pcm_info_t * obj, unsigned int val) { packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_info_set_device(snd_pcm_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_pcm_info_set_device"))); +void snd_pcm_info_set_device(snd_pcm_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_pcm_info_set_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_set_stream) && !defined(skip_index_snd_pcm_info_set_stream) void glshim_snd_pcm_info_set_stream(snd_pcm_info_t * obj, snd_pcm_stream_t val) { @@ -13943,7 +13943,7 @@ void glshim_snd_pcm_info_set_stream(snd_pcm_info_t * obj, snd_pcm_stream_t val) packed_data.args.a2 = (snd_pcm_stream_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_info_set_stream(snd_pcm_info_t * obj, snd_pcm_stream_t val) __attribute__((alias("glshim_snd_pcm_info_set_stream"))); +void snd_pcm_info_set_stream(snd_pcm_info_t * obj, snd_pcm_stream_t val) __attribute__((alias("glshim_snd_pcm_info_set_stream"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_set_subdevice) && !defined(skip_index_snd_pcm_info_set_subdevice) void glshim_snd_pcm_info_set_subdevice(snd_pcm_info_t * obj, unsigned int val) { @@ -13953,7 +13953,7 @@ void glshim_snd_pcm_info_set_subdevice(snd_pcm_info_t * obj, unsigned int val) { packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_info_set_subdevice(snd_pcm_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_pcm_info_set_subdevice"))); +void snd_pcm_info_set_subdevice(snd_pcm_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_pcm_info_set_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_info_sizeof) && !defined(skip_index_snd_pcm_info_sizeof) size_t glshim_snd_pcm_info_sizeof() { @@ -13963,7 +13963,7 @@ size_t glshim_snd_pcm_info_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_pcm_info_sizeof() __attribute__((alias("glshim_snd_pcm_info_sizeof"))); +size_t snd_pcm_info_sizeof() __attribute__((alias("glshim_snd_pcm_info_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_link) && !defined(skip_index_snd_pcm_link) int glshim_snd_pcm_link(snd_pcm_t * pcm1, snd_pcm_t * pcm2) { @@ -13975,7 +13975,7 @@ int glshim_snd_pcm_link(snd_pcm_t * pcm1, snd_pcm_t * pcm2) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_link(snd_pcm_t * pcm1, snd_pcm_t * pcm2) __attribute__((alias("glshim_snd_pcm_link"))); +int snd_pcm_link(snd_pcm_t * pcm1, snd_pcm_t * pcm2) __attribute__((alias("glshim_snd_pcm_link"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_meter_add_scope) && !defined(skip_index_snd_pcm_meter_add_scope) int glshim_snd_pcm_meter_add_scope(snd_pcm_t * pcm, snd_pcm_scope_t * scope) { @@ -13987,7 +13987,7 @@ int glshim_snd_pcm_meter_add_scope(snd_pcm_t * pcm, snd_pcm_scope_t * scope) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_meter_add_scope(snd_pcm_t * pcm, snd_pcm_scope_t * scope) __attribute__((alias("glshim_snd_pcm_meter_add_scope"))); +int snd_pcm_meter_add_scope(snd_pcm_t * pcm, snd_pcm_scope_t * scope) __attribute__((alias("glshim_snd_pcm_meter_add_scope"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_meter_get_boundary) && !defined(skip_index_snd_pcm_meter_get_boundary) snd_pcm_uframes_t glshim_snd_pcm_meter_get_boundary(snd_pcm_t * pcm) { @@ -13998,7 +13998,7 @@ snd_pcm_uframes_t glshim_snd_pcm_meter_get_boundary(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_uframes_t snd_pcm_meter_get_boundary(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_meter_get_boundary"))); +snd_pcm_uframes_t snd_pcm_meter_get_boundary(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_meter_get_boundary"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_meter_get_bufsize) && !defined(skip_index_snd_pcm_meter_get_bufsize) snd_pcm_uframes_t glshim_snd_pcm_meter_get_bufsize(snd_pcm_t * pcm) { @@ -14009,7 +14009,7 @@ snd_pcm_uframes_t glshim_snd_pcm_meter_get_bufsize(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_uframes_t snd_pcm_meter_get_bufsize(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_meter_get_bufsize"))); +snd_pcm_uframes_t snd_pcm_meter_get_bufsize(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_meter_get_bufsize"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_meter_get_channels) && !defined(skip_index_snd_pcm_meter_get_channels) unsigned int glshim_snd_pcm_meter_get_channels(snd_pcm_t * pcm) { @@ -14020,7 +14020,7 @@ unsigned int glshim_snd_pcm_meter_get_channels(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_pcm_meter_get_channels(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_meter_get_channels"))); +unsigned int snd_pcm_meter_get_channels(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_meter_get_channels"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_meter_get_now) && !defined(skip_index_snd_pcm_meter_get_now) snd_pcm_uframes_t glshim_snd_pcm_meter_get_now(snd_pcm_t * pcm) { @@ -14031,7 +14031,7 @@ snd_pcm_uframes_t glshim_snd_pcm_meter_get_now(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_uframes_t snd_pcm_meter_get_now(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_meter_get_now"))); +snd_pcm_uframes_t snd_pcm_meter_get_now(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_meter_get_now"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_meter_get_rate) && !defined(skip_index_snd_pcm_meter_get_rate) unsigned int glshim_snd_pcm_meter_get_rate(snd_pcm_t * pcm) { @@ -14042,7 +14042,7 @@ unsigned int glshim_snd_pcm_meter_get_rate(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_pcm_meter_get_rate(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_meter_get_rate"))); +unsigned int snd_pcm_meter_get_rate(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_meter_get_rate"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_meter_search_scope) && !defined(skip_index_snd_pcm_meter_search_scope) snd_pcm_scope_t * glshim_snd_pcm_meter_search_scope(snd_pcm_t * pcm, const char * name) { @@ -14054,7 +14054,7 @@ snd_pcm_scope_t * glshim_snd_pcm_meter_search_scope(snd_pcm_t * pcm, const char syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_scope_t * snd_pcm_meter_search_scope(snd_pcm_t * pcm, const char * name) __attribute__((alias("glshim_snd_pcm_meter_search_scope"))); +snd_pcm_scope_t * snd_pcm_meter_search_scope(snd_pcm_t * pcm, const char * name) __attribute__((alias("glshim_snd_pcm_meter_search_scope"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_mmap_begin) && !defined(skip_index_snd_pcm_mmap_begin) int glshim_snd_pcm_mmap_begin(snd_pcm_t * pcm, const snd_pcm_channel_area_t ** areas, snd_pcm_uframes_t * offset, snd_pcm_uframes_t * frames) { @@ -14068,7 +14068,7 @@ int glshim_snd_pcm_mmap_begin(snd_pcm_t * pcm, const snd_pcm_channel_area_t ** a syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_mmap_begin(snd_pcm_t * pcm, const snd_pcm_channel_area_t ** areas, snd_pcm_uframes_t * offset, snd_pcm_uframes_t * frames) __attribute__((alias("glshim_snd_pcm_mmap_begin"))); +int snd_pcm_mmap_begin(snd_pcm_t * pcm, const snd_pcm_channel_area_t ** areas, snd_pcm_uframes_t * offset, snd_pcm_uframes_t * frames) __attribute__((alias("glshim_snd_pcm_mmap_begin"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_mmap_commit) && !defined(skip_index_snd_pcm_mmap_commit) snd_pcm_sframes_t glshim_snd_pcm_mmap_commit(snd_pcm_t * pcm, snd_pcm_uframes_t offset, snd_pcm_uframes_t frames) { @@ -14081,7 +14081,7 @@ snd_pcm_sframes_t glshim_snd_pcm_mmap_commit(snd_pcm_t * pcm, snd_pcm_uframes_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_mmap_commit(snd_pcm_t * pcm, snd_pcm_uframes_t offset, snd_pcm_uframes_t frames) __attribute__((alias("glshim_snd_pcm_mmap_commit"))); +snd_pcm_sframes_t snd_pcm_mmap_commit(snd_pcm_t * pcm, snd_pcm_uframes_t offset, snd_pcm_uframes_t frames) __attribute__((alias("glshim_snd_pcm_mmap_commit"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_mmap_readi) && !defined(skip_index_snd_pcm_mmap_readi) snd_pcm_sframes_t glshim_snd_pcm_mmap_readi(snd_pcm_t * pcm, void * buffer, snd_pcm_uframes_t size) { @@ -14094,7 +14094,7 @@ snd_pcm_sframes_t glshim_snd_pcm_mmap_readi(snd_pcm_t * pcm, void * buffer, snd_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_mmap_readi(snd_pcm_t * pcm, void * buffer, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_mmap_readi"))); +snd_pcm_sframes_t snd_pcm_mmap_readi(snd_pcm_t * pcm, void * buffer, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_mmap_readi"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_mmap_readn) && !defined(skip_index_snd_pcm_mmap_readn) snd_pcm_sframes_t glshim_snd_pcm_mmap_readn(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) { @@ -14107,7 +14107,7 @@ snd_pcm_sframes_t glshim_snd_pcm_mmap_readn(snd_pcm_t * pcm, void ** bufs, snd_p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_mmap_readn(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_mmap_readn"))); +snd_pcm_sframes_t snd_pcm_mmap_readn(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_mmap_readn"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_mmap_writei) && !defined(skip_index_snd_pcm_mmap_writei) snd_pcm_sframes_t glshim_snd_pcm_mmap_writei(snd_pcm_t * pcm, const void * buffer, snd_pcm_uframes_t size) { @@ -14120,7 +14120,7 @@ snd_pcm_sframes_t glshim_snd_pcm_mmap_writei(snd_pcm_t * pcm, const void * buffe syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_mmap_writei(snd_pcm_t * pcm, const void * buffer, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_mmap_writei"))); +snd_pcm_sframes_t snd_pcm_mmap_writei(snd_pcm_t * pcm, const void * buffer, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_mmap_writei"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_mmap_writen) && !defined(skip_index_snd_pcm_mmap_writen) snd_pcm_sframes_t glshim_snd_pcm_mmap_writen(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) { @@ -14133,7 +14133,7 @@ snd_pcm_sframes_t glshim_snd_pcm_mmap_writen(snd_pcm_t * pcm, void ** bufs, snd_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_mmap_writen(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_mmap_writen"))); +snd_pcm_sframes_t snd_pcm_mmap_writen(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_mmap_writen"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_name) && !defined(skip_index_snd_pcm_name) const char * glshim_snd_pcm_name(snd_pcm_t * pcm) { @@ -14144,7 +14144,7 @@ const char * glshim_snd_pcm_name(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_name(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_name"))); +const char * snd_pcm_name(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_nonblock) && !defined(skip_index_snd_pcm_nonblock) int glshim_snd_pcm_nonblock(snd_pcm_t * pcm, int nonblock) { @@ -14156,7 +14156,7 @@ int glshim_snd_pcm_nonblock(snd_pcm_t * pcm, int nonblock) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_nonblock(snd_pcm_t * pcm, int nonblock) __attribute__((alias("glshim_snd_pcm_nonblock"))); +int snd_pcm_nonblock(snd_pcm_t * pcm, int nonblock) __attribute__((alias("glshim_snd_pcm_nonblock"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_open) && !defined(skip_index_snd_pcm_open) int glshim_snd_pcm_open(snd_pcm_t ** pcm, const char * name, snd_pcm_stream_t stream, int mode) { @@ -14170,7 +14170,7 @@ int glshim_snd_pcm_open(snd_pcm_t ** pcm, const char * name, snd_pcm_stream_t st syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_open(snd_pcm_t ** pcm, const char * name, snd_pcm_stream_t stream, int mode) __attribute__((alias("glshim_snd_pcm_open"))); +int snd_pcm_open(snd_pcm_t ** pcm, const char * name, snd_pcm_stream_t stream, int mode) __attribute__((alias("glshim_snd_pcm_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_open_lconf) && !defined(skip_index_snd_pcm_open_lconf) int glshim_snd_pcm_open_lconf(snd_pcm_t ** pcm, const char * name, snd_pcm_stream_t stream, int mode, snd_config_t * lconf) { @@ -14185,7 +14185,7 @@ int glshim_snd_pcm_open_lconf(snd_pcm_t ** pcm, const char * name, snd_pcm_strea syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_open_lconf(snd_pcm_t ** pcm, const char * name, snd_pcm_stream_t stream, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_pcm_open_lconf"))); +int snd_pcm_open_lconf(snd_pcm_t ** pcm, const char * name, snd_pcm_stream_t stream, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_pcm_open_lconf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_pause) && !defined(skip_index_snd_pcm_pause) int glshim_snd_pcm_pause(snd_pcm_t * pcm, int enable) { @@ -14197,7 +14197,7 @@ int glshim_snd_pcm_pause(snd_pcm_t * pcm, int enable) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_pause(snd_pcm_t * pcm, int enable) __attribute__((alias("glshim_snd_pcm_pause"))); +int snd_pcm_pause(snd_pcm_t * pcm, int enable) __attribute__((alias("glshim_snd_pcm_pause"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_poll_descriptors) && !defined(skip_index_snd_pcm_poll_descriptors) int glshim_snd_pcm_poll_descriptors(snd_pcm_t * pcm, struct pollfd * pfds, unsigned int space) { @@ -14210,7 +14210,7 @@ int glshim_snd_pcm_poll_descriptors(snd_pcm_t * pcm, struct pollfd * pfds, unsig syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_poll_descriptors(snd_pcm_t * pcm, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_pcm_poll_descriptors"))); +int snd_pcm_poll_descriptors(snd_pcm_t * pcm, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_pcm_poll_descriptors"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_poll_descriptors_count) && !defined(skip_index_snd_pcm_poll_descriptors_count) int glshim_snd_pcm_poll_descriptors_count(snd_pcm_t * pcm) { @@ -14221,7 +14221,7 @@ int glshim_snd_pcm_poll_descriptors_count(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_poll_descriptors_count(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_poll_descriptors_count"))); +int snd_pcm_poll_descriptors_count(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_poll_descriptors_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_poll_descriptors_revents) && !defined(skip_index_snd_pcm_poll_descriptors_revents) int glshim_snd_pcm_poll_descriptors_revents(snd_pcm_t * pcm, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) { @@ -14235,7 +14235,7 @@ int glshim_snd_pcm_poll_descriptors_revents(snd_pcm_t * pcm, struct pollfd * pfd syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_poll_descriptors_revents(snd_pcm_t * pcm, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_pcm_poll_descriptors_revents"))); +int snd_pcm_poll_descriptors_revents(snd_pcm_t * pcm, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_pcm_poll_descriptors_revents"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_prepare) && !defined(skip_index_snd_pcm_prepare) int glshim_snd_pcm_prepare(snd_pcm_t * pcm) { @@ -14246,7 +14246,7 @@ int glshim_snd_pcm_prepare(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_prepare(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_prepare"))); +int snd_pcm_prepare(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_prepare"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_readi) && !defined(skip_index_snd_pcm_readi) snd_pcm_sframes_t glshim_snd_pcm_readi(snd_pcm_t * pcm, void * buffer, snd_pcm_uframes_t size) { @@ -14259,7 +14259,7 @@ snd_pcm_sframes_t glshim_snd_pcm_readi(snd_pcm_t * pcm, void * buffer, snd_pcm_u syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_readi(snd_pcm_t * pcm, void * buffer, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_readi"))); +snd_pcm_sframes_t snd_pcm_readi(snd_pcm_t * pcm, void * buffer, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_readi"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_readn) && !defined(skip_index_snd_pcm_readn) snd_pcm_sframes_t glshim_snd_pcm_readn(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) { @@ -14272,7 +14272,7 @@ snd_pcm_sframes_t glshim_snd_pcm_readn(snd_pcm_t * pcm, void ** bufs, snd_pcm_uf syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_readn(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_readn"))); +snd_pcm_sframes_t snd_pcm_readn(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_readn"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_recover) && !defined(skip_index_snd_pcm_recover) int glshim_snd_pcm_recover(snd_pcm_t * pcm, int err, int silent) { @@ -14285,7 +14285,7 @@ int glshim_snd_pcm_recover(snd_pcm_t * pcm, int err, int silent) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_recover(snd_pcm_t * pcm, int err, int silent) __attribute__((alias("glshim_snd_pcm_recover"))); +int snd_pcm_recover(snd_pcm_t * pcm, int err, int silent) __attribute__((alias("glshim_snd_pcm_recover"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_reset) && !defined(skip_index_snd_pcm_reset) int glshim_snd_pcm_reset(snd_pcm_t * pcm) { @@ -14296,7 +14296,7 @@ int glshim_snd_pcm_reset(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_reset(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_reset"))); +int snd_pcm_reset(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_reset"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_resume) && !defined(skip_index_snd_pcm_resume) int glshim_snd_pcm_resume(snd_pcm_t * pcm) { @@ -14307,7 +14307,7 @@ int glshim_snd_pcm_resume(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_resume(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_resume"))); +int snd_pcm_resume(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_resume"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_rewind) && !defined(skip_index_snd_pcm_rewind) snd_pcm_sframes_t glshim_snd_pcm_rewind(snd_pcm_t * pcm, snd_pcm_uframes_t frames) { @@ -14319,7 +14319,7 @@ snd_pcm_sframes_t glshim_snd_pcm_rewind(snd_pcm_t * pcm, snd_pcm_uframes_t frame syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_rewind(snd_pcm_t * pcm, snd_pcm_uframes_t frames) __attribute__((alias("glshim_snd_pcm_rewind"))); +snd_pcm_sframes_t snd_pcm_rewind(snd_pcm_t * pcm, snd_pcm_uframes_t frames) __attribute__((alias("glshim_snd_pcm_rewind"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_samples_to_bytes) && !defined(skip_index_snd_pcm_samples_to_bytes) ssize_t glshim_snd_pcm_samples_to_bytes(snd_pcm_t * pcm, long samples) { @@ -14331,7 +14331,7 @@ ssize_t glshim_snd_pcm_samples_to_bytes(snd_pcm_t * pcm, long samples) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -ssize_t snd_pcm_samples_to_bytes(snd_pcm_t * pcm, long samples) __attribute__((alias("glshim_snd_pcm_samples_to_bytes"))); +ssize_t snd_pcm_samples_to_bytes(snd_pcm_t * pcm, long samples) __attribute__((alias("glshim_snd_pcm_samples_to_bytes"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_scope_get_callback_private) && !defined(skip_index_snd_pcm_scope_get_callback_private) void * glshim_snd_pcm_scope_get_callback_private(snd_pcm_scope_t * scope) { @@ -14342,7 +14342,7 @@ void * glshim_snd_pcm_scope_get_callback_private(snd_pcm_scope_t * scope) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -void * snd_pcm_scope_get_callback_private(snd_pcm_scope_t * scope) __attribute__((alias("glshim_snd_pcm_scope_get_callback_private"))); +void * snd_pcm_scope_get_callback_private(snd_pcm_scope_t * scope) __attribute__((alias("glshim_snd_pcm_scope_get_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_scope_get_name) && !defined(skip_index_snd_pcm_scope_get_name) const char * glshim_snd_pcm_scope_get_name(snd_pcm_scope_t * scope) { @@ -14353,7 +14353,7 @@ const char * glshim_snd_pcm_scope_get_name(snd_pcm_scope_t * scope) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_scope_get_name(snd_pcm_scope_t * scope) __attribute__((alias("glshim_snd_pcm_scope_get_name"))); +const char * snd_pcm_scope_get_name(snd_pcm_scope_t * scope) __attribute__((alias("glshim_snd_pcm_scope_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_scope_malloc) && !defined(skip_index_snd_pcm_scope_malloc) int glshim_snd_pcm_scope_malloc(snd_pcm_scope_t ** ptr) { @@ -14364,7 +14364,7 @@ int glshim_snd_pcm_scope_malloc(snd_pcm_scope_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_scope_malloc(snd_pcm_scope_t ** ptr) __attribute__((alias("glshim_snd_pcm_scope_malloc"))); +int snd_pcm_scope_malloc(snd_pcm_scope_t ** ptr) __attribute__((alias("glshim_snd_pcm_scope_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_scope_s16_get_channel_buffer) && !defined(skip_index_snd_pcm_scope_s16_get_channel_buffer) int16_t * glshim_snd_pcm_scope_s16_get_channel_buffer(snd_pcm_scope_t * scope, unsigned int channel) { @@ -14376,7 +14376,7 @@ int16_t * glshim_snd_pcm_scope_s16_get_channel_buffer(snd_pcm_scope_t * scope, u syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int16_t * snd_pcm_scope_s16_get_channel_buffer(snd_pcm_scope_t * scope, unsigned int channel) __attribute__((alias("glshim_snd_pcm_scope_s16_get_channel_buffer"))); +int16_t * snd_pcm_scope_s16_get_channel_buffer(snd_pcm_scope_t * scope, unsigned int channel) __attribute__((alias("glshim_snd_pcm_scope_s16_get_channel_buffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_scope_s16_open) && !defined(skip_index_snd_pcm_scope_s16_open) int glshim_snd_pcm_scope_s16_open(snd_pcm_t * pcm, const char * name, snd_pcm_scope_t ** scopep) { @@ -14389,7 +14389,7 @@ int glshim_snd_pcm_scope_s16_open(snd_pcm_t * pcm, const char * name, snd_pcm_sc syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_scope_s16_open(snd_pcm_t * pcm, const char * name, snd_pcm_scope_t ** scopep) __attribute__((alias("glshim_snd_pcm_scope_s16_open"))); +int snd_pcm_scope_s16_open(snd_pcm_t * pcm, const char * name, snd_pcm_scope_t ** scopep) __attribute__((alias("glshim_snd_pcm_scope_s16_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_scope_set_callback_private) && !defined(skip_index_snd_pcm_scope_set_callback_private) void glshim_snd_pcm_scope_set_callback_private(snd_pcm_scope_t * scope, void * val) { @@ -14399,7 +14399,7 @@ void glshim_snd_pcm_scope_set_callback_private(snd_pcm_scope_t * scope, void * v packed_data.args.a2 = (void *)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_scope_set_callback_private(snd_pcm_scope_t * scope, void * val) __attribute__((alias("glshim_snd_pcm_scope_set_callback_private"))); +void snd_pcm_scope_set_callback_private(snd_pcm_scope_t * scope, void * val) __attribute__((alias("glshim_snd_pcm_scope_set_callback_private"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_scope_set_name) && !defined(skip_index_snd_pcm_scope_set_name) void glshim_snd_pcm_scope_set_name(snd_pcm_scope_t * scope, const char * val) { @@ -14409,7 +14409,7 @@ void glshim_snd_pcm_scope_set_name(snd_pcm_scope_t * scope, const char * val) { packed_data.args.a2 = (char *)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_scope_set_name(snd_pcm_scope_t * scope, const char * val) __attribute__((alias("glshim_snd_pcm_scope_set_name"))); +void snd_pcm_scope_set_name(snd_pcm_scope_t * scope, const char * val) __attribute__((alias("glshim_snd_pcm_scope_set_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_scope_set_ops) && !defined(skip_index_snd_pcm_scope_set_ops) void glshim_snd_pcm_scope_set_ops(snd_pcm_scope_t * scope, const snd_pcm_scope_ops_t * val) { @@ -14419,7 +14419,7 @@ void glshim_snd_pcm_scope_set_ops(snd_pcm_scope_t * scope, const snd_pcm_scope_o packed_data.args.a2 = (snd_pcm_scope_ops_t *)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_scope_set_ops(snd_pcm_scope_t * scope, const snd_pcm_scope_ops_t * val) __attribute__((alias("glshim_snd_pcm_scope_set_ops"))); +void snd_pcm_scope_set_ops(snd_pcm_scope_t * scope, const snd_pcm_scope_ops_t * val) __attribute__((alias("glshim_snd_pcm_scope_set_ops"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_set_params) && !defined(skip_index_snd_pcm_set_params) int glshim_snd_pcm_set_params(snd_pcm_t * pcm, snd_pcm_format_t format, snd_pcm_access_t access, unsigned int channels, unsigned int rate, int soft_resample, unsigned int latency) { @@ -14436,7 +14436,7 @@ int glshim_snd_pcm_set_params(snd_pcm_t * pcm, snd_pcm_format_t format, snd_pcm_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_set_params(snd_pcm_t * pcm, snd_pcm_format_t format, snd_pcm_access_t access, unsigned int channels, unsigned int rate, int soft_resample, unsigned int latency) __attribute__((alias("glshim_snd_pcm_set_params"))); +int snd_pcm_set_params(snd_pcm_t * pcm, snd_pcm_format_t format, snd_pcm_access_t access, unsigned int channels, unsigned int rate, int soft_resample, unsigned int latency) __attribute__((alias("glshim_snd_pcm_set_params"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_start) && !defined(skip_index_snd_pcm_start) int glshim_snd_pcm_start(snd_pcm_t * pcm) { @@ -14447,7 +14447,7 @@ int glshim_snd_pcm_start(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_start(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_start"))); +int snd_pcm_start(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_start"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_start_mode_name) && !defined(skip_index_snd_pcm_start_mode_name) const char * glshim_snd_pcm_start_mode_name(snd_pcm_start_t mode) { @@ -14458,7 +14458,7 @@ const char * glshim_snd_pcm_start_mode_name(snd_pcm_start_t mode) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_start_mode_name(snd_pcm_start_t mode) __attribute__((alias("glshim_snd_pcm_start_mode_name"))); +const char * snd_pcm_start_mode_name(snd_pcm_start_t mode) __attribute__((alias("glshim_snd_pcm_start_mode_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_state) && !defined(skip_index_snd_pcm_state) snd_pcm_state_t glshim_snd_pcm_state(snd_pcm_t * pcm) { @@ -14469,7 +14469,7 @@ snd_pcm_state_t glshim_snd_pcm_state(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_state_t snd_pcm_state(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_state"))); +snd_pcm_state_t snd_pcm_state(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_state"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_state_name) && !defined(skip_index_snd_pcm_state_name) const char * glshim_snd_pcm_state_name(const snd_pcm_state_t state) { @@ -14480,7 +14480,7 @@ const char * glshim_snd_pcm_state_name(const snd_pcm_state_t state) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_state_name(const snd_pcm_state_t state) __attribute__((alias("glshim_snd_pcm_state_name"))); +const char * snd_pcm_state_name(const snd_pcm_state_t state) __attribute__((alias("glshim_snd_pcm_state_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status) && !defined(skip_index_snd_pcm_status) int glshim_snd_pcm_status(snd_pcm_t * pcm, snd_pcm_status_t * status) { @@ -14492,7 +14492,7 @@ int glshim_snd_pcm_status(snd_pcm_t * pcm, snd_pcm_status_t * status) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_status(snd_pcm_t * pcm, snd_pcm_status_t * status) __attribute__((alias("glshim_snd_pcm_status"))); +int snd_pcm_status(snd_pcm_t * pcm, snd_pcm_status_t * status) __attribute__((alias("glshim_snd_pcm_status"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_copy) && !defined(skip_index_snd_pcm_status_copy) void glshim_snd_pcm_status_copy(snd_pcm_status_t * dst, const snd_pcm_status_t * src) { @@ -14502,7 +14502,7 @@ void glshim_snd_pcm_status_copy(snd_pcm_status_t * dst, const snd_pcm_status_t * packed_data.args.a2 = (snd_pcm_status_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_status_copy(snd_pcm_status_t * dst, const snd_pcm_status_t * src) __attribute__((alias("glshim_snd_pcm_status_copy"))); +void snd_pcm_status_copy(snd_pcm_status_t * dst, const snd_pcm_status_t * src) __attribute__((alias("glshim_snd_pcm_status_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_dump) && !defined(skip_index_snd_pcm_status_dump) int glshim_snd_pcm_status_dump(snd_pcm_status_t * status, snd_output_t * out) { @@ -14514,7 +14514,7 @@ int glshim_snd_pcm_status_dump(snd_pcm_status_t * status, snd_output_t * out) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_status_dump(snd_pcm_status_t * status, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_status_dump"))); +int snd_pcm_status_dump(snd_pcm_status_t * status, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_status_dump"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_free) && !defined(skip_index_snd_pcm_status_free) void glshim_snd_pcm_status_free(snd_pcm_status_t * obj) { @@ -14523,7 +14523,7 @@ void glshim_snd_pcm_status_free(snd_pcm_status_t * obj) { packed_data.args.a1 = (snd_pcm_status_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_status_free(snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_free"))); +void snd_pcm_status_free(snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_get_avail) && !defined(skip_index_snd_pcm_status_get_avail) snd_pcm_uframes_t glshim_snd_pcm_status_get_avail(const snd_pcm_status_t * obj) { @@ -14534,7 +14534,7 @@ snd_pcm_uframes_t glshim_snd_pcm_status_get_avail(const snd_pcm_status_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_uframes_t snd_pcm_status_get_avail(const snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_get_avail"))); +snd_pcm_uframes_t snd_pcm_status_get_avail(const snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_get_avail"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_get_avail_max) && !defined(skip_index_snd_pcm_status_get_avail_max) snd_pcm_uframes_t glshim_snd_pcm_status_get_avail_max(const snd_pcm_status_t * obj) { @@ -14545,7 +14545,7 @@ snd_pcm_uframes_t glshim_snd_pcm_status_get_avail_max(const snd_pcm_status_t * o syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_uframes_t snd_pcm_status_get_avail_max(const snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_get_avail_max"))); +snd_pcm_uframes_t snd_pcm_status_get_avail_max(const snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_get_avail_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_get_delay) && !defined(skip_index_snd_pcm_status_get_delay) snd_pcm_sframes_t glshim_snd_pcm_status_get_delay(const snd_pcm_status_t * obj) { @@ -14556,7 +14556,7 @@ snd_pcm_sframes_t glshim_snd_pcm_status_get_delay(const snd_pcm_status_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_status_get_delay(const snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_get_delay"))); +snd_pcm_sframes_t snd_pcm_status_get_delay(const snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_get_delay"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_get_htstamp) && !defined(skip_index_snd_pcm_status_get_htstamp) void glshim_snd_pcm_status_get_htstamp(const snd_pcm_status_t * obj, snd_htimestamp_t * ptr) { @@ -14566,7 +14566,7 @@ void glshim_snd_pcm_status_get_htstamp(const snd_pcm_status_t * obj, snd_htimest packed_data.args.a2 = (snd_htimestamp_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_status_get_htstamp(const snd_pcm_status_t * obj, snd_htimestamp_t * ptr) __attribute__((alias("glshim_snd_pcm_status_get_htstamp"))); +void snd_pcm_status_get_htstamp(const snd_pcm_status_t * obj, snd_htimestamp_t * ptr) __attribute__((alias("glshim_snd_pcm_status_get_htstamp"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_get_overrange) && !defined(skip_index_snd_pcm_status_get_overrange) snd_pcm_uframes_t glshim_snd_pcm_status_get_overrange(const snd_pcm_status_t * obj) { @@ -14577,7 +14577,7 @@ snd_pcm_uframes_t glshim_snd_pcm_status_get_overrange(const snd_pcm_status_t * o syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_uframes_t snd_pcm_status_get_overrange(const snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_get_overrange"))); +snd_pcm_uframes_t snd_pcm_status_get_overrange(const snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_get_overrange"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_get_state) && !defined(skip_index_snd_pcm_status_get_state) snd_pcm_state_t glshim_snd_pcm_status_get_state(const snd_pcm_status_t * obj) { @@ -14588,7 +14588,7 @@ snd_pcm_state_t glshim_snd_pcm_status_get_state(const snd_pcm_status_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_state_t snd_pcm_status_get_state(const snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_get_state"))); +snd_pcm_state_t snd_pcm_status_get_state(const snd_pcm_status_t * obj) __attribute__((alias("glshim_snd_pcm_status_get_state"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_get_trigger_htstamp) && !defined(skip_index_snd_pcm_status_get_trigger_htstamp) void glshim_snd_pcm_status_get_trigger_htstamp(const snd_pcm_status_t * obj, snd_htimestamp_t * ptr) { @@ -14598,7 +14598,7 @@ void glshim_snd_pcm_status_get_trigger_htstamp(const snd_pcm_status_t * obj, snd packed_data.args.a2 = (snd_htimestamp_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_status_get_trigger_htstamp(const snd_pcm_status_t * obj, snd_htimestamp_t * ptr) __attribute__((alias("glshim_snd_pcm_status_get_trigger_htstamp"))); +void snd_pcm_status_get_trigger_htstamp(const snd_pcm_status_t * obj, snd_htimestamp_t * ptr) __attribute__((alias("glshim_snd_pcm_status_get_trigger_htstamp"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_get_trigger_tstamp) && !defined(skip_index_snd_pcm_status_get_trigger_tstamp) void glshim_snd_pcm_status_get_trigger_tstamp(const snd_pcm_status_t * obj, snd_timestamp_t * ptr) { @@ -14608,7 +14608,7 @@ void glshim_snd_pcm_status_get_trigger_tstamp(const snd_pcm_status_t * obj, snd_ packed_data.args.a2 = (snd_timestamp_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_status_get_trigger_tstamp(const snd_pcm_status_t * obj, snd_timestamp_t * ptr) __attribute__((alias("glshim_snd_pcm_status_get_trigger_tstamp"))); +void snd_pcm_status_get_trigger_tstamp(const snd_pcm_status_t * obj, snd_timestamp_t * ptr) __attribute__((alias("glshim_snd_pcm_status_get_trigger_tstamp"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_get_tstamp) && !defined(skip_index_snd_pcm_status_get_tstamp) void glshim_snd_pcm_status_get_tstamp(const snd_pcm_status_t * obj, snd_timestamp_t * ptr) { @@ -14618,7 +14618,7 @@ void glshim_snd_pcm_status_get_tstamp(const snd_pcm_status_t * obj, snd_timestam packed_data.args.a2 = (snd_timestamp_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_status_get_tstamp(const snd_pcm_status_t * obj, snd_timestamp_t * ptr) __attribute__((alias("glshim_snd_pcm_status_get_tstamp"))); +void snd_pcm_status_get_tstamp(const snd_pcm_status_t * obj, snd_timestamp_t * ptr) __attribute__((alias("glshim_snd_pcm_status_get_tstamp"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_malloc) && !defined(skip_index_snd_pcm_status_malloc) int glshim_snd_pcm_status_malloc(snd_pcm_status_t ** ptr) { @@ -14629,7 +14629,7 @@ int glshim_snd_pcm_status_malloc(snd_pcm_status_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_status_malloc(snd_pcm_status_t ** ptr) __attribute__((alias("glshim_snd_pcm_status_malloc"))); +int snd_pcm_status_malloc(snd_pcm_status_t ** ptr) __attribute__((alias("glshim_snd_pcm_status_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_status_sizeof) && !defined(skip_index_snd_pcm_status_sizeof) size_t glshim_snd_pcm_status_sizeof() { @@ -14639,7 +14639,7 @@ size_t glshim_snd_pcm_status_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_pcm_status_sizeof() __attribute__((alias("glshim_snd_pcm_status_sizeof"))); +size_t snd_pcm_status_sizeof() __attribute__((alias("glshim_snd_pcm_status_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_stream) && !defined(skip_index_snd_pcm_stream) snd_pcm_stream_t glshim_snd_pcm_stream(snd_pcm_t * pcm) { @@ -14650,7 +14650,7 @@ snd_pcm_stream_t glshim_snd_pcm_stream(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_stream_t snd_pcm_stream(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_stream"))); +snd_pcm_stream_t snd_pcm_stream(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_stream"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_stream_name) && !defined(skip_index_snd_pcm_stream_name) const char * glshim_snd_pcm_stream_name(const snd_pcm_stream_t stream) { @@ -14661,7 +14661,7 @@ const char * glshim_snd_pcm_stream_name(const snd_pcm_stream_t stream) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_stream_name(const snd_pcm_stream_t stream) __attribute__((alias("glshim_snd_pcm_stream_name"))); +const char * snd_pcm_stream_name(const snd_pcm_stream_t stream) __attribute__((alias("glshim_snd_pcm_stream_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_description) && !defined(skip_index_snd_pcm_subformat_description) const char * glshim_snd_pcm_subformat_description(const snd_pcm_subformat_t subformat) { @@ -14672,7 +14672,7 @@ const char * glshim_snd_pcm_subformat_description(const snd_pcm_subformat_t subf syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_subformat_description(const snd_pcm_subformat_t subformat) __attribute__((alias("glshim_snd_pcm_subformat_description"))); +const char * snd_pcm_subformat_description(const snd_pcm_subformat_t subformat) __attribute__((alias("glshim_snd_pcm_subformat_description"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_mask_any) && !defined(skip_index_snd_pcm_subformat_mask_any) void glshim_snd_pcm_subformat_mask_any(snd_pcm_subformat_mask_t * mask) { @@ -14681,7 +14681,7 @@ void glshim_snd_pcm_subformat_mask_any(snd_pcm_subformat_mask_t * mask) { packed_data.args.a1 = (snd_pcm_subformat_mask_t *)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_subformat_mask_any(snd_pcm_subformat_mask_t * mask) __attribute__((alias("glshim_snd_pcm_subformat_mask_any"))); +void snd_pcm_subformat_mask_any(snd_pcm_subformat_mask_t * mask) __attribute__((alias("glshim_snd_pcm_subformat_mask_any"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_mask_copy) && !defined(skip_index_snd_pcm_subformat_mask_copy) void glshim_snd_pcm_subformat_mask_copy(snd_pcm_subformat_mask_t * dst, const snd_pcm_subformat_mask_t * src) { @@ -14691,7 +14691,7 @@ void glshim_snd_pcm_subformat_mask_copy(snd_pcm_subformat_mask_t * dst, const sn packed_data.args.a2 = (snd_pcm_subformat_mask_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_subformat_mask_copy(snd_pcm_subformat_mask_t * dst, const snd_pcm_subformat_mask_t * src) __attribute__((alias("glshim_snd_pcm_subformat_mask_copy"))); +void snd_pcm_subformat_mask_copy(snd_pcm_subformat_mask_t * dst, const snd_pcm_subformat_mask_t * src) __attribute__((alias("glshim_snd_pcm_subformat_mask_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_mask_empty) && !defined(skip_index_snd_pcm_subformat_mask_empty) int glshim_snd_pcm_subformat_mask_empty(const snd_pcm_subformat_mask_t * mask) { @@ -14702,7 +14702,7 @@ int glshim_snd_pcm_subformat_mask_empty(const snd_pcm_subformat_mask_t * mask) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_subformat_mask_empty(const snd_pcm_subformat_mask_t * mask) __attribute__((alias("glshim_snd_pcm_subformat_mask_empty"))); +int snd_pcm_subformat_mask_empty(const snd_pcm_subformat_mask_t * mask) __attribute__((alias("glshim_snd_pcm_subformat_mask_empty"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_mask_free) && !defined(skip_index_snd_pcm_subformat_mask_free) void glshim_snd_pcm_subformat_mask_free(snd_pcm_subformat_mask_t * obj) { @@ -14711,7 +14711,7 @@ void glshim_snd_pcm_subformat_mask_free(snd_pcm_subformat_mask_t * obj) { packed_data.args.a1 = (snd_pcm_subformat_mask_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_subformat_mask_free(snd_pcm_subformat_mask_t * obj) __attribute__((alias("glshim_snd_pcm_subformat_mask_free"))); +void snd_pcm_subformat_mask_free(snd_pcm_subformat_mask_t * obj) __attribute__((alias("glshim_snd_pcm_subformat_mask_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_mask_malloc) && !defined(skip_index_snd_pcm_subformat_mask_malloc) int glshim_snd_pcm_subformat_mask_malloc(snd_pcm_subformat_mask_t ** ptr) { @@ -14722,7 +14722,7 @@ int glshim_snd_pcm_subformat_mask_malloc(snd_pcm_subformat_mask_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_subformat_mask_malloc(snd_pcm_subformat_mask_t ** ptr) __attribute__((alias("glshim_snd_pcm_subformat_mask_malloc"))); +int snd_pcm_subformat_mask_malloc(snd_pcm_subformat_mask_t ** ptr) __attribute__((alias("glshim_snd_pcm_subformat_mask_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_mask_none) && !defined(skip_index_snd_pcm_subformat_mask_none) void glshim_snd_pcm_subformat_mask_none(snd_pcm_subformat_mask_t * mask) { @@ -14731,7 +14731,7 @@ void glshim_snd_pcm_subformat_mask_none(snd_pcm_subformat_mask_t * mask) { packed_data.args.a1 = (snd_pcm_subformat_mask_t *)mask; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_subformat_mask_none(snd_pcm_subformat_mask_t * mask) __attribute__((alias("glshim_snd_pcm_subformat_mask_none"))); +void snd_pcm_subformat_mask_none(snd_pcm_subformat_mask_t * mask) __attribute__((alias("glshim_snd_pcm_subformat_mask_none"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_mask_reset) && !defined(skip_index_snd_pcm_subformat_mask_reset) void glshim_snd_pcm_subformat_mask_reset(snd_pcm_subformat_mask_t * mask, snd_pcm_subformat_t val) { @@ -14741,7 +14741,7 @@ void glshim_snd_pcm_subformat_mask_reset(snd_pcm_subformat_mask_t * mask, snd_pc packed_data.args.a2 = (snd_pcm_subformat_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_subformat_mask_reset(snd_pcm_subformat_mask_t * mask, snd_pcm_subformat_t val) __attribute__((alias("glshim_snd_pcm_subformat_mask_reset"))); +void snd_pcm_subformat_mask_reset(snd_pcm_subformat_mask_t * mask, snd_pcm_subformat_t val) __attribute__((alias("glshim_snd_pcm_subformat_mask_reset"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_mask_set) && !defined(skip_index_snd_pcm_subformat_mask_set) void glshim_snd_pcm_subformat_mask_set(snd_pcm_subformat_mask_t * mask, snd_pcm_subformat_t val) { @@ -14751,7 +14751,7 @@ void glshim_snd_pcm_subformat_mask_set(snd_pcm_subformat_mask_t * mask, snd_pcm_ packed_data.args.a2 = (snd_pcm_subformat_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_subformat_mask_set(snd_pcm_subformat_mask_t * mask, snd_pcm_subformat_t val) __attribute__((alias("glshim_snd_pcm_subformat_mask_set"))); +void snd_pcm_subformat_mask_set(snd_pcm_subformat_mask_t * mask, snd_pcm_subformat_t val) __attribute__((alias("glshim_snd_pcm_subformat_mask_set"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_mask_sizeof) && !defined(skip_index_snd_pcm_subformat_mask_sizeof) size_t glshim_snd_pcm_subformat_mask_sizeof() { @@ -14761,7 +14761,7 @@ size_t glshim_snd_pcm_subformat_mask_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_pcm_subformat_mask_sizeof() __attribute__((alias("glshim_snd_pcm_subformat_mask_sizeof"))); +size_t snd_pcm_subformat_mask_sizeof() __attribute__((alias("glshim_snd_pcm_subformat_mask_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_mask_test) && !defined(skip_index_snd_pcm_subformat_mask_test) int glshim_snd_pcm_subformat_mask_test(const snd_pcm_subformat_mask_t * mask, snd_pcm_subformat_t val) { @@ -14773,7 +14773,7 @@ int glshim_snd_pcm_subformat_mask_test(const snd_pcm_subformat_mask_t * mask, sn syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_subformat_mask_test(const snd_pcm_subformat_mask_t * mask, snd_pcm_subformat_t val) __attribute__((alias("glshim_snd_pcm_subformat_mask_test"))); +int snd_pcm_subformat_mask_test(const snd_pcm_subformat_mask_t * mask, snd_pcm_subformat_t val) __attribute__((alias("glshim_snd_pcm_subformat_mask_test"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_subformat_name) && !defined(skip_index_snd_pcm_subformat_name) const char * glshim_snd_pcm_subformat_name(const snd_pcm_subformat_t subformat) { @@ -14784,7 +14784,7 @@ const char * glshim_snd_pcm_subformat_name(const snd_pcm_subformat_t subformat) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_subformat_name(const snd_pcm_subformat_t subformat) __attribute__((alias("glshim_snd_pcm_subformat_name"))); +const char * snd_pcm_subformat_name(const snd_pcm_subformat_t subformat) __attribute__((alias("glshim_snd_pcm_subformat_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params) && !defined(skip_index_snd_pcm_sw_params) int glshim_snd_pcm_sw_params(snd_pcm_t * pcm, snd_pcm_sw_params_t * params) { @@ -14796,7 +14796,7 @@ int glshim_snd_pcm_sw_params(snd_pcm_t * pcm, snd_pcm_sw_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params(snd_pcm_t * pcm, snd_pcm_sw_params_t * params) __attribute__((alias("glshim_snd_pcm_sw_params"))); +int snd_pcm_sw_params(snd_pcm_t * pcm, snd_pcm_sw_params_t * params) __attribute__((alias("glshim_snd_pcm_sw_params"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_copy) && !defined(skip_index_snd_pcm_sw_params_copy) void glshim_snd_pcm_sw_params_copy(snd_pcm_sw_params_t * dst, const snd_pcm_sw_params_t * src) { @@ -14806,7 +14806,7 @@ void glshim_snd_pcm_sw_params_copy(snd_pcm_sw_params_t * dst, const snd_pcm_sw_p packed_data.args.a2 = (snd_pcm_sw_params_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_sw_params_copy(snd_pcm_sw_params_t * dst, const snd_pcm_sw_params_t * src) __attribute__((alias("glshim_snd_pcm_sw_params_copy"))); +void snd_pcm_sw_params_copy(snd_pcm_sw_params_t * dst, const snd_pcm_sw_params_t * src) __attribute__((alias("glshim_snd_pcm_sw_params_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_current) && !defined(skip_index_snd_pcm_sw_params_current) int glshim_snd_pcm_sw_params_current(snd_pcm_t * pcm, snd_pcm_sw_params_t * params) { @@ -14818,7 +14818,7 @@ int glshim_snd_pcm_sw_params_current(snd_pcm_t * pcm, snd_pcm_sw_params_t * para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_current(snd_pcm_t * pcm, snd_pcm_sw_params_t * params) __attribute__((alias("glshim_snd_pcm_sw_params_current"))); +int snd_pcm_sw_params_current(snd_pcm_t * pcm, snd_pcm_sw_params_t * params) __attribute__((alias("glshim_snd_pcm_sw_params_current"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_dump) && !defined(skip_index_snd_pcm_sw_params_dump) int glshim_snd_pcm_sw_params_dump(snd_pcm_sw_params_t * params, snd_output_t * out) { @@ -14830,7 +14830,7 @@ int glshim_snd_pcm_sw_params_dump(snd_pcm_sw_params_t * params, snd_output_t * o syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_dump(snd_pcm_sw_params_t * params, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_sw_params_dump"))); +int snd_pcm_sw_params_dump(snd_pcm_sw_params_t * params, snd_output_t * out) __attribute__((alias("glshim_snd_pcm_sw_params_dump"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_free) && !defined(skip_index_snd_pcm_sw_params_free) void glshim_snd_pcm_sw_params_free(snd_pcm_sw_params_t * obj) { @@ -14839,7 +14839,7 @@ void glshim_snd_pcm_sw_params_free(snd_pcm_sw_params_t * obj) { packed_data.args.a1 = (snd_pcm_sw_params_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_pcm_sw_params_free(snd_pcm_sw_params_t * obj) __attribute__((alias("glshim_snd_pcm_sw_params_free"))); +void snd_pcm_sw_params_free(snd_pcm_sw_params_t * obj) __attribute__((alias("glshim_snd_pcm_sw_params_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_avail_min) && !defined(skip_index_snd_pcm_sw_params_get_avail_min) int glshim_snd_pcm_sw_params_get_avail_min(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) { @@ -14851,7 +14851,7 @@ int glshim_snd_pcm_sw_params_get_avail_min(const snd_pcm_sw_params_t * params, s syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_get_avail_min(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_avail_min"))); +int snd_pcm_sw_params_get_avail_min(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_avail_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_boundary) && !defined(skip_index_snd_pcm_sw_params_get_boundary) int glshim_snd_pcm_sw_params_get_boundary(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) { @@ -14863,7 +14863,7 @@ int glshim_snd_pcm_sw_params_get_boundary(const snd_pcm_sw_params_t * params, sn syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_get_boundary(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_boundary"))); +int snd_pcm_sw_params_get_boundary(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_boundary"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_silence_size) && !defined(skip_index_snd_pcm_sw_params_get_silence_size) int glshim_snd_pcm_sw_params_get_silence_size(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) { @@ -14875,7 +14875,7 @@ int glshim_snd_pcm_sw_params_get_silence_size(const snd_pcm_sw_params_t * params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_get_silence_size(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_silence_size"))); +int snd_pcm_sw_params_get_silence_size(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_silence_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_silence_threshold) && !defined(skip_index_snd_pcm_sw_params_get_silence_threshold) int glshim_snd_pcm_sw_params_get_silence_threshold(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) { @@ -14887,7 +14887,7 @@ int glshim_snd_pcm_sw_params_get_silence_threshold(const snd_pcm_sw_params_t * p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_get_silence_threshold(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_silence_threshold"))); +int snd_pcm_sw_params_get_silence_threshold(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_silence_threshold"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_sleep_min) && !defined(skip_index_snd_pcm_sw_params_get_sleep_min) int glshim_snd_pcm_sw_params_get_sleep_min(const snd_pcm_sw_params_t * params, unsigned int * val) { @@ -14899,7 +14899,7 @@ int glshim_snd_pcm_sw_params_get_sleep_min(const snd_pcm_sw_params_t * params, u syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_get_sleep_min(const snd_pcm_sw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_sleep_min"))); +int snd_pcm_sw_params_get_sleep_min(const snd_pcm_sw_params_t * params, unsigned int * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_sleep_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_start_mode) && !defined(skip_index_snd_pcm_sw_params_get_start_mode) snd_pcm_start_t glshim_snd_pcm_sw_params_get_start_mode(const snd_pcm_sw_params_t * params) { @@ -14910,7 +14910,7 @@ snd_pcm_start_t glshim_snd_pcm_sw_params_get_start_mode(const snd_pcm_sw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_start_t snd_pcm_sw_params_get_start_mode(const snd_pcm_sw_params_t * params) __attribute__((alias("glshim_snd_pcm_sw_params_get_start_mode"))); +snd_pcm_start_t snd_pcm_sw_params_get_start_mode(const snd_pcm_sw_params_t * params) __attribute__((alias("glshim_snd_pcm_sw_params_get_start_mode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_start_threshold) && !defined(skip_index_snd_pcm_sw_params_get_start_threshold) int glshim_snd_pcm_sw_params_get_start_threshold(const snd_pcm_sw_params_t * paramsm, snd_pcm_uframes_t * val) { @@ -14922,7 +14922,7 @@ int glshim_snd_pcm_sw_params_get_start_threshold(const snd_pcm_sw_params_t * par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_get_start_threshold(const snd_pcm_sw_params_t * paramsm, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_start_threshold"))); +int snd_pcm_sw_params_get_start_threshold(const snd_pcm_sw_params_t * paramsm, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_start_threshold"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_stop_threshold) && !defined(skip_index_snd_pcm_sw_params_get_stop_threshold) int glshim_snd_pcm_sw_params_get_stop_threshold(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) { @@ -14934,7 +14934,7 @@ int glshim_snd_pcm_sw_params_get_stop_threshold(const snd_pcm_sw_params_t * para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_get_stop_threshold(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_stop_threshold"))); +int snd_pcm_sw_params_get_stop_threshold(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_stop_threshold"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_tstamp_mode) && !defined(skip_index_snd_pcm_sw_params_get_tstamp_mode) int glshim_snd_pcm_sw_params_get_tstamp_mode(const snd_pcm_sw_params_t * params, snd_pcm_tstamp_t * val) { @@ -14946,7 +14946,7 @@ int glshim_snd_pcm_sw_params_get_tstamp_mode(const snd_pcm_sw_params_t * params, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_get_tstamp_mode(const snd_pcm_sw_params_t * params, snd_pcm_tstamp_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_tstamp_mode"))); +int snd_pcm_sw_params_get_tstamp_mode(const snd_pcm_sw_params_t * params, snd_pcm_tstamp_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_tstamp_mode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_xfer_align) && !defined(skip_index_snd_pcm_sw_params_get_xfer_align) int glshim_snd_pcm_sw_params_get_xfer_align(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) { @@ -14958,7 +14958,7 @@ int glshim_snd_pcm_sw_params_get_xfer_align(const snd_pcm_sw_params_t * params, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_get_xfer_align(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_xfer_align"))); +int snd_pcm_sw_params_get_xfer_align(const snd_pcm_sw_params_t * params, snd_pcm_uframes_t * val) __attribute__((alias("glshim_snd_pcm_sw_params_get_xfer_align"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_get_xrun_mode) && !defined(skip_index_snd_pcm_sw_params_get_xrun_mode) snd_pcm_xrun_t glshim_snd_pcm_sw_params_get_xrun_mode(const snd_pcm_sw_params_t * params) { @@ -14969,7 +14969,7 @@ snd_pcm_xrun_t glshim_snd_pcm_sw_params_get_xrun_mode(const snd_pcm_sw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_xrun_t snd_pcm_sw_params_get_xrun_mode(const snd_pcm_sw_params_t * params) __attribute__((alias("glshim_snd_pcm_sw_params_get_xrun_mode"))); +snd_pcm_xrun_t snd_pcm_sw_params_get_xrun_mode(const snd_pcm_sw_params_t * params) __attribute__((alias("glshim_snd_pcm_sw_params_get_xrun_mode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_malloc) && !defined(skip_index_snd_pcm_sw_params_malloc) int glshim_snd_pcm_sw_params_malloc(snd_pcm_sw_params_t ** ptr) { @@ -14980,7 +14980,7 @@ int glshim_snd_pcm_sw_params_malloc(snd_pcm_sw_params_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_malloc(snd_pcm_sw_params_t ** ptr) __attribute__((alias("glshim_snd_pcm_sw_params_malloc"))); +int snd_pcm_sw_params_malloc(snd_pcm_sw_params_t ** ptr) __attribute__((alias("glshim_snd_pcm_sw_params_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_set_avail_min) && !defined(skip_index_snd_pcm_sw_params_set_avail_min) int glshim_snd_pcm_sw_params_set_avail_min(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) { @@ -14993,7 +14993,7 @@ int glshim_snd_pcm_sw_params_set_avail_min(snd_pcm_t * pcm, snd_pcm_sw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_set_avail_min(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_avail_min"))); +int snd_pcm_sw_params_set_avail_min(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_avail_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_set_silence_size) && !defined(skip_index_snd_pcm_sw_params_set_silence_size) int glshim_snd_pcm_sw_params_set_silence_size(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) { @@ -15006,7 +15006,7 @@ int glshim_snd_pcm_sw_params_set_silence_size(snd_pcm_t * pcm, snd_pcm_sw_params syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_set_silence_size(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_silence_size"))); +int snd_pcm_sw_params_set_silence_size(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_silence_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_set_silence_threshold) && !defined(skip_index_snd_pcm_sw_params_set_silence_threshold) int glshim_snd_pcm_sw_params_set_silence_threshold(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) { @@ -15019,7 +15019,7 @@ int glshim_snd_pcm_sw_params_set_silence_threshold(snd_pcm_t * pcm, snd_pcm_sw_p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_set_silence_threshold(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_silence_threshold"))); +int snd_pcm_sw_params_set_silence_threshold(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_silence_threshold"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_set_sleep_min) && !defined(skip_index_snd_pcm_sw_params_set_sleep_min) int glshim_snd_pcm_sw_params_set_sleep_min(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, unsigned int val) { @@ -15032,7 +15032,7 @@ int glshim_snd_pcm_sw_params_set_sleep_min(snd_pcm_t * pcm, snd_pcm_sw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_set_sleep_min(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, unsigned int val) __attribute__((alias("glshim_snd_pcm_sw_params_set_sleep_min"))); +int snd_pcm_sw_params_set_sleep_min(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, unsigned int val) __attribute__((alias("glshim_snd_pcm_sw_params_set_sleep_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_set_start_mode) && !defined(skip_index_snd_pcm_sw_params_set_start_mode) int glshim_snd_pcm_sw_params_set_start_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_start_t val) { @@ -15045,7 +15045,7 @@ int glshim_snd_pcm_sw_params_set_start_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_set_start_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_start_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_start_mode"))); +int snd_pcm_sw_params_set_start_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_start_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_start_mode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_set_start_threshold) && !defined(skip_index_snd_pcm_sw_params_set_start_threshold) int glshim_snd_pcm_sw_params_set_start_threshold(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) { @@ -15058,7 +15058,7 @@ int glshim_snd_pcm_sw_params_set_start_threshold(snd_pcm_t * pcm, snd_pcm_sw_par syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_set_start_threshold(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_start_threshold"))); +int snd_pcm_sw_params_set_start_threshold(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_start_threshold"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_set_stop_threshold) && !defined(skip_index_snd_pcm_sw_params_set_stop_threshold) int glshim_snd_pcm_sw_params_set_stop_threshold(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) { @@ -15071,7 +15071,7 @@ int glshim_snd_pcm_sw_params_set_stop_threshold(snd_pcm_t * pcm, snd_pcm_sw_para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_set_stop_threshold(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_stop_threshold"))); +int snd_pcm_sw_params_set_stop_threshold(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_stop_threshold"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_set_tstamp_mode) && !defined(skip_index_snd_pcm_sw_params_set_tstamp_mode) int glshim_snd_pcm_sw_params_set_tstamp_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_tstamp_t val) { @@ -15084,7 +15084,7 @@ int glshim_snd_pcm_sw_params_set_tstamp_mode(snd_pcm_t * pcm, snd_pcm_sw_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_set_tstamp_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_tstamp_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_tstamp_mode"))); +int snd_pcm_sw_params_set_tstamp_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_tstamp_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_tstamp_mode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_set_xfer_align) && !defined(skip_index_snd_pcm_sw_params_set_xfer_align) int glshim_snd_pcm_sw_params_set_xfer_align(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) { @@ -15097,7 +15097,7 @@ int glshim_snd_pcm_sw_params_set_xfer_align(snd_pcm_t * pcm, snd_pcm_sw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_set_xfer_align(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_xfer_align"))); +int snd_pcm_sw_params_set_xfer_align(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_uframes_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_xfer_align"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_set_xrun_mode) && !defined(skip_index_snd_pcm_sw_params_set_xrun_mode) int glshim_snd_pcm_sw_params_set_xrun_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_xrun_t val) { @@ -15110,7 +15110,7 @@ int glshim_snd_pcm_sw_params_set_xrun_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_sw_params_set_xrun_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_xrun_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_xrun_mode"))); +int snd_pcm_sw_params_set_xrun_mode(snd_pcm_t * pcm, snd_pcm_sw_params_t * params, snd_pcm_xrun_t val) __attribute__((alias("glshim_snd_pcm_sw_params_set_xrun_mode"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_sw_params_sizeof) && !defined(skip_index_snd_pcm_sw_params_sizeof) size_t glshim_snd_pcm_sw_params_sizeof() { @@ -15120,7 +15120,7 @@ size_t glshim_snd_pcm_sw_params_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_pcm_sw_params_sizeof() __attribute__((alias("glshim_snd_pcm_sw_params_sizeof"))); +size_t snd_pcm_sw_params_sizeof() __attribute__((alias("glshim_snd_pcm_sw_params_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_tstamp_mode_name) && !defined(skip_index_snd_pcm_tstamp_mode_name) const char * glshim_snd_pcm_tstamp_mode_name(const snd_pcm_tstamp_t mode) { @@ -15131,7 +15131,7 @@ const char * glshim_snd_pcm_tstamp_mode_name(const snd_pcm_tstamp_t mode) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_tstamp_mode_name(const snd_pcm_tstamp_t mode) __attribute__((alias("glshim_snd_pcm_tstamp_mode_name"))); +const char * snd_pcm_tstamp_mode_name(const snd_pcm_tstamp_t mode) __attribute__((alias("glshim_snd_pcm_tstamp_mode_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_type) && !defined(skip_index_snd_pcm_type) snd_pcm_type_t glshim_snd_pcm_type(snd_pcm_t * pcm) { @@ -15142,7 +15142,7 @@ snd_pcm_type_t glshim_snd_pcm_type(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_type_t snd_pcm_type(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_type"))); +snd_pcm_type_t snd_pcm_type(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_type_name) && !defined(skip_index_snd_pcm_type_name) const char * glshim_snd_pcm_type_name(snd_pcm_type_t type) { @@ -15153,7 +15153,7 @@ const char * glshim_snd_pcm_type_name(snd_pcm_type_t type) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_type_name(snd_pcm_type_t type) __attribute__((alias("glshim_snd_pcm_type_name"))); +const char * snd_pcm_type_name(snd_pcm_type_t type) __attribute__((alias("glshim_snd_pcm_type_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_unlink) && !defined(skip_index_snd_pcm_unlink) int glshim_snd_pcm_unlink(snd_pcm_t * pcm) { @@ -15164,7 +15164,7 @@ int glshim_snd_pcm_unlink(snd_pcm_t * pcm) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_unlink(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_unlink"))); +int snd_pcm_unlink(snd_pcm_t * pcm) __attribute__((alias("glshim_snd_pcm_unlink"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_wait) && !defined(skip_index_snd_pcm_wait) int glshim_snd_pcm_wait(snd_pcm_t * pcm, int timeout) { @@ -15176,7 +15176,7 @@ int glshim_snd_pcm_wait(snd_pcm_t * pcm, int timeout) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_pcm_wait(snd_pcm_t * pcm, int timeout) __attribute__((alias("glshim_snd_pcm_wait"))); +int snd_pcm_wait(snd_pcm_t * pcm, int timeout) __attribute__((alias("glshim_snd_pcm_wait"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_writei) && !defined(skip_index_snd_pcm_writei) snd_pcm_sframes_t glshim_snd_pcm_writei(snd_pcm_t * pcm, const void * buffer, snd_pcm_uframes_t size) { @@ -15189,7 +15189,7 @@ snd_pcm_sframes_t glshim_snd_pcm_writei(snd_pcm_t * pcm, const void * buffer, sn syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_writei(snd_pcm_t * pcm, const void * buffer, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_writei"))); +snd_pcm_sframes_t snd_pcm_writei(snd_pcm_t * pcm, const void * buffer, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_writei"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_writen) && !defined(skip_index_snd_pcm_writen) snd_pcm_sframes_t glshim_snd_pcm_writen(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) { @@ -15202,7 +15202,7 @@ snd_pcm_sframes_t glshim_snd_pcm_writen(snd_pcm_t * pcm, void ** bufs, snd_pcm_u syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_pcm_sframes_t snd_pcm_writen(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_writen"))); +snd_pcm_sframes_t snd_pcm_writen(snd_pcm_t * pcm, void ** bufs, snd_pcm_uframes_t size) __attribute__((alias("glshim_snd_pcm_writen"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_pcm_xrun_mode_name) && !defined(skip_index_snd_pcm_xrun_mode_name) const char * glshim_snd_pcm_xrun_mode_name(snd_pcm_xrun_t mode) { @@ -15213,7 +15213,7 @@ const char * glshim_snd_pcm_xrun_mode_name(snd_pcm_xrun_t mode) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_pcm_xrun_mode_name(snd_pcm_xrun_t mode) __attribute__((alias("glshim_snd_pcm_xrun_mode_name"))); +const char * snd_pcm_xrun_mode_name(snd_pcm_xrun_t mode) __attribute__((alias("glshim_snd_pcm_xrun_mode_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_close) && !defined(skip_index_snd_rawmidi_close) int glshim_snd_rawmidi_close(snd_rawmidi_t * rmidi) { @@ -15224,7 +15224,7 @@ int glshim_snd_rawmidi_close(snd_rawmidi_t * rmidi) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_close(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_close"))); +int snd_rawmidi_close(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_drain) && !defined(skip_index_snd_rawmidi_drain) int glshim_snd_rawmidi_drain(snd_rawmidi_t * rmidi) { @@ -15235,7 +15235,7 @@ int glshim_snd_rawmidi_drain(snd_rawmidi_t * rmidi) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_drain(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_drain"))); +int snd_rawmidi_drain(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_drain"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_drop) && !defined(skip_index_snd_rawmidi_drop) int glshim_snd_rawmidi_drop(snd_rawmidi_t * rmidi) { @@ -15246,7 +15246,7 @@ int glshim_snd_rawmidi_drop(snd_rawmidi_t * rmidi) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_drop(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_drop"))); +int snd_rawmidi_drop(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_drop"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info) && !defined(skip_index_snd_rawmidi_info) int glshim_snd_rawmidi_info(snd_rawmidi_t * rmidi, snd_rawmidi_info_t * info) { @@ -15258,7 +15258,7 @@ int glshim_snd_rawmidi_info(snd_rawmidi_t * rmidi, snd_rawmidi_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_info(snd_rawmidi_t * rmidi, snd_rawmidi_info_t * info) __attribute__((alias("glshim_snd_rawmidi_info"))); +int snd_rawmidi_info(snd_rawmidi_t * rmidi, snd_rawmidi_info_t * info) __attribute__((alias("glshim_snd_rawmidi_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_copy) && !defined(skip_index_snd_rawmidi_info_copy) void glshim_snd_rawmidi_info_copy(snd_rawmidi_info_t * dst, const snd_rawmidi_info_t * src) { @@ -15268,7 +15268,7 @@ void glshim_snd_rawmidi_info_copy(snd_rawmidi_info_t * dst, const snd_rawmidi_in packed_data.args.a2 = (snd_rawmidi_info_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_rawmidi_info_copy(snd_rawmidi_info_t * dst, const snd_rawmidi_info_t * src) __attribute__((alias("glshim_snd_rawmidi_info_copy"))); +void snd_rawmidi_info_copy(snd_rawmidi_info_t * dst, const snd_rawmidi_info_t * src) __attribute__((alias("glshim_snd_rawmidi_info_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_free) && !defined(skip_index_snd_rawmidi_info_free) void glshim_snd_rawmidi_info_free(snd_rawmidi_info_t * obj) { @@ -15277,7 +15277,7 @@ void glshim_snd_rawmidi_info_free(snd_rawmidi_info_t * obj) { packed_data.args.a1 = (snd_rawmidi_info_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_rawmidi_info_free(snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_free"))); +void snd_rawmidi_info_free(snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_get_card) && !defined(skip_index_snd_rawmidi_info_get_card) int glshim_snd_rawmidi_info_get_card(const snd_rawmidi_info_t * obj) { @@ -15288,7 +15288,7 @@ int glshim_snd_rawmidi_info_get_card(const snd_rawmidi_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_info_get_card(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_card"))); +int snd_rawmidi_info_get_card(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_card"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_get_device) && !defined(skip_index_snd_rawmidi_info_get_device) unsigned int glshim_snd_rawmidi_info_get_device(const snd_rawmidi_info_t * obj) { @@ -15299,7 +15299,7 @@ unsigned int glshim_snd_rawmidi_info_get_device(const snd_rawmidi_info_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_rawmidi_info_get_device(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_device"))); +unsigned int snd_rawmidi_info_get_device(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_get_flags) && !defined(skip_index_snd_rawmidi_info_get_flags) unsigned int glshim_snd_rawmidi_info_get_flags(const snd_rawmidi_info_t * obj) { @@ -15310,7 +15310,7 @@ unsigned int glshim_snd_rawmidi_info_get_flags(const snd_rawmidi_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_rawmidi_info_get_flags(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_flags"))); +unsigned int snd_rawmidi_info_get_flags(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_flags"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_get_id) && !defined(skip_index_snd_rawmidi_info_get_id) const char * glshim_snd_rawmidi_info_get_id(const snd_rawmidi_info_t * obj) { @@ -15321,7 +15321,7 @@ const char * glshim_snd_rawmidi_info_get_id(const snd_rawmidi_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_rawmidi_info_get_id(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_id"))); +const char * snd_rawmidi_info_get_id(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_get_name) && !defined(skip_index_snd_rawmidi_info_get_name) const char * glshim_snd_rawmidi_info_get_name(const snd_rawmidi_info_t * obj) { @@ -15332,7 +15332,7 @@ const char * glshim_snd_rawmidi_info_get_name(const snd_rawmidi_info_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_rawmidi_info_get_name(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_name"))); +const char * snd_rawmidi_info_get_name(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_get_stream) && !defined(skip_index_snd_rawmidi_info_get_stream) snd_rawmidi_stream_t glshim_snd_rawmidi_info_get_stream(const snd_rawmidi_info_t * obj) { @@ -15343,7 +15343,7 @@ snd_rawmidi_stream_t glshim_snd_rawmidi_info_get_stream(const snd_rawmidi_info_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_rawmidi_stream_t snd_rawmidi_info_get_stream(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_stream"))); +snd_rawmidi_stream_t snd_rawmidi_info_get_stream(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_stream"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_get_subdevice) && !defined(skip_index_snd_rawmidi_info_get_subdevice) unsigned int glshim_snd_rawmidi_info_get_subdevice(const snd_rawmidi_info_t * obj) { @@ -15354,7 +15354,7 @@ unsigned int glshim_snd_rawmidi_info_get_subdevice(const snd_rawmidi_info_t * ob syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_rawmidi_info_get_subdevice(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_subdevice"))); +unsigned int snd_rawmidi_info_get_subdevice(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_get_subdevice_name) && !defined(skip_index_snd_rawmidi_info_get_subdevice_name) const char * glshim_snd_rawmidi_info_get_subdevice_name(const snd_rawmidi_info_t * obj) { @@ -15365,7 +15365,7 @@ const char * glshim_snd_rawmidi_info_get_subdevice_name(const snd_rawmidi_info_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_rawmidi_info_get_subdevice_name(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_subdevice_name"))); +const char * snd_rawmidi_info_get_subdevice_name(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_subdevice_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_get_subdevices_avail) && !defined(skip_index_snd_rawmidi_info_get_subdevices_avail) unsigned int glshim_snd_rawmidi_info_get_subdevices_avail(const snd_rawmidi_info_t * obj) { @@ -15376,7 +15376,7 @@ unsigned int glshim_snd_rawmidi_info_get_subdevices_avail(const snd_rawmidi_info syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_rawmidi_info_get_subdevices_avail(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_subdevices_avail"))); +unsigned int snd_rawmidi_info_get_subdevices_avail(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_subdevices_avail"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_get_subdevices_count) && !defined(skip_index_snd_rawmidi_info_get_subdevices_count) unsigned int glshim_snd_rawmidi_info_get_subdevices_count(const snd_rawmidi_info_t * obj) { @@ -15387,7 +15387,7 @@ unsigned int glshim_snd_rawmidi_info_get_subdevices_count(const snd_rawmidi_info syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_rawmidi_info_get_subdevices_count(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_subdevices_count"))); +unsigned int snd_rawmidi_info_get_subdevices_count(const snd_rawmidi_info_t * obj) __attribute__((alias("glshim_snd_rawmidi_info_get_subdevices_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_malloc) && !defined(skip_index_snd_rawmidi_info_malloc) int glshim_snd_rawmidi_info_malloc(snd_rawmidi_info_t ** ptr) { @@ -15398,7 +15398,7 @@ int glshim_snd_rawmidi_info_malloc(snd_rawmidi_info_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_info_malloc(snd_rawmidi_info_t ** ptr) __attribute__((alias("glshim_snd_rawmidi_info_malloc"))); +int snd_rawmidi_info_malloc(snd_rawmidi_info_t ** ptr) __attribute__((alias("glshim_snd_rawmidi_info_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_set_device) && !defined(skip_index_snd_rawmidi_info_set_device) void glshim_snd_rawmidi_info_set_device(snd_rawmidi_info_t * obj, unsigned int val) { @@ -15408,7 +15408,7 @@ void glshim_snd_rawmidi_info_set_device(snd_rawmidi_info_t * obj, unsigned int v packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_rawmidi_info_set_device(snd_rawmidi_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_rawmidi_info_set_device"))); +void snd_rawmidi_info_set_device(snd_rawmidi_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_rawmidi_info_set_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_set_stream) && !defined(skip_index_snd_rawmidi_info_set_stream) void glshim_snd_rawmidi_info_set_stream(snd_rawmidi_info_t * obj, snd_rawmidi_stream_t val) { @@ -15418,7 +15418,7 @@ void glshim_snd_rawmidi_info_set_stream(snd_rawmidi_info_t * obj, snd_rawmidi_st packed_data.args.a2 = (snd_rawmidi_stream_t)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_rawmidi_info_set_stream(snd_rawmidi_info_t * obj, snd_rawmidi_stream_t val) __attribute__((alias("glshim_snd_rawmidi_info_set_stream"))); +void snd_rawmidi_info_set_stream(snd_rawmidi_info_t * obj, snd_rawmidi_stream_t val) __attribute__((alias("glshim_snd_rawmidi_info_set_stream"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_set_subdevice) && !defined(skip_index_snd_rawmidi_info_set_subdevice) void glshim_snd_rawmidi_info_set_subdevice(snd_rawmidi_info_t * obj, unsigned int val) { @@ -15428,7 +15428,7 @@ void glshim_snd_rawmidi_info_set_subdevice(snd_rawmidi_info_t * obj, unsigned in packed_data.args.a2 = (unsigned int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_rawmidi_info_set_subdevice(snd_rawmidi_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_rawmidi_info_set_subdevice"))); +void snd_rawmidi_info_set_subdevice(snd_rawmidi_info_t * obj, unsigned int val) __attribute__((alias("glshim_snd_rawmidi_info_set_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_info_sizeof) && !defined(skip_index_snd_rawmidi_info_sizeof) size_t glshim_snd_rawmidi_info_sizeof() { @@ -15438,7 +15438,7 @@ size_t glshim_snd_rawmidi_info_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_rawmidi_info_sizeof() __attribute__((alias("glshim_snd_rawmidi_info_sizeof"))); +size_t snd_rawmidi_info_sizeof() __attribute__((alias("glshim_snd_rawmidi_info_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_name) && !defined(skip_index_snd_rawmidi_name) const char * glshim_snd_rawmidi_name(snd_rawmidi_t * rmidi) { @@ -15449,7 +15449,7 @@ const char * glshim_snd_rawmidi_name(snd_rawmidi_t * rmidi) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_rawmidi_name(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_name"))); +const char * snd_rawmidi_name(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_nonblock) && !defined(skip_index_snd_rawmidi_nonblock) int glshim_snd_rawmidi_nonblock(snd_rawmidi_t * rmidi, int nonblock) { @@ -15461,7 +15461,7 @@ int glshim_snd_rawmidi_nonblock(snd_rawmidi_t * rmidi, int nonblock) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_nonblock(snd_rawmidi_t * rmidi, int nonblock) __attribute__((alias("glshim_snd_rawmidi_nonblock"))); +int snd_rawmidi_nonblock(snd_rawmidi_t * rmidi, int nonblock) __attribute__((alias("glshim_snd_rawmidi_nonblock"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_open) && !defined(skip_index_snd_rawmidi_open) int glshim_snd_rawmidi_open(snd_rawmidi_t ** in_rmidi, snd_rawmidi_t ** out_rmidi, const char * name, int mode) { @@ -15475,7 +15475,7 @@ int glshim_snd_rawmidi_open(snd_rawmidi_t ** in_rmidi, snd_rawmidi_t ** out_rmid syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_open(snd_rawmidi_t ** in_rmidi, snd_rawmidi_t ** out_rmidi, const char * name, int mode) __attribute__((alias("glshim_snd_rawmidi_open"))); +int snd_rawmidi_open(snd_rawmidi_t ** in_rmidi, snd_rawmidi_t ** out_rmidi, const char * name, int mode) __attribute__((alias("glshim_snd_rawmidi_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_open_lconf) && !defined(skip_index_snd_rawmidi_open_lconf) int glshim_snd_rawmidi_open_lconf(snd_rawmidi_t ** in_rmidi, snd_rawmidi_t ** out_rmidi, const char * name, int mode, snd_config_t * lconf) { @@ -15490,7 +15490,7 @@ int glshim_snd_rawmidi_open_lconf(snd_rawmidi_t ** in_rmidi, snd_rawmidi_t ** ou syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_open_lconf(snd_rawmidi_t ** in_rmidi, snd_rawmidi_t ** out_rmidi, const char * name, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_rawmidi_open_lconf"))); +int snd_rawmidi_open_lconf(snd_rawmidi_t ** in_rmidi, snd_rawmidi_t ** out_rmidi, const char * name, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_rawmidi_open_lconf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params) && !defined(skip_index_snd_rawmidi_params) int glshim_snd_rawmidi_params(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params) { @@ -15502,7 +15502,7 @@ int glshim_snd_rawmidi_params(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_params(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params) __attribute__((alias("glshim_snd_rawmidi_params"))); +int snd_rawmidi_params(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params) __attribute__((alias("glshim_snd_rawmidi_params"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_copy) && !defined(skip_index_snd_rawmidi_params_copy) void glshim_snd_rawmidi_params_copy(snd_rawmidi_params_t * dst, const snd_rawmidi_params_t * src) { @@ -15512,7 +15512,7 @@ void glshim_snd_rawmidi_params_copy(snd_rawmidi_params_t * dst, const snd_rawmid packed_data.args.a2 = (snd_rawmidi_params_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_rawmidi_params_copy(snd_rawmidi_params_t * dst, const snd_rawmidi_params_t * src) __attribute__((alias("glshim_snd_rawmidi_params_copy"))); +void snd_rawmidi_params_copy(snd_rawmidi_params_t * dst, const snd_rawmidi_params_t * src) __attribute__((alias("glshim_snd_rawmidi_params_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_current) && !defined(skip_index_snd_rawmidi_params_current) int glshim_snd_rawmidi_params_current(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params) { @@ -15524,7 +15524,7 @@ int glshim_snd_rawmidi_params_current(snd_rawmidi_t * rmidi, snd_rawmidi_params_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_params_current(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params) __attribute__((alias("glshim_snd_rawmidi_params_current"))); +int snd_rawmidi_params_current(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params) __attribute__((alias("glshim_snd_rawmidi_params_current"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_free) && !defined(skip_index_snd_rawmidi_params_free) void glshim_snd_rawmidi_params_free(snd_rawmidi_params_t * obj) { @@ -15533,7 +15533,7 @@ void glshim_snd_rawmidi_params_free(snd_rawmidi_params_t * obj) { packed_data.args.a1 = (snd_rawmidi_params_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_rawmidi_params_free(snd_rawmidi_params_t * obj) __attribute__((alias("glshim_snd_rawmidi_params_free"))); +void snd_rawmidi_params_free(snd_rawmidi_params_t * obj) __attribute__((alias("glshim_snd_rawmidi_params_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_get_avail_min) && !defined(skip_index_snd_rawmidi_params_get_avail_min) size_t glshim_snd_rawmidi_params_get_avail_min(const snd_rawmidi_params_t * params) { @@ -15544,7 +15544,7 @@ size_t glshim_snd_rawmidi_params_get_avail_min(const snd_rawmidi_params_t * para syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_rawmidi_params_get_avail_min(const snd_rawmidi_params_t * params) __attribute__((alias("glshim_snd_rawmidi_params_get_avail_min"))); +size_t snd_rawmidi_params_get_avail_min(const snd_rawmidi_params_t * params) __attribute__((alias("glshim_snd_rawmidi_params_get_avail_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_get_buffer_size) && !defined(skip_index_snd_rawmidi_params_get_buffer_size) size_t glshim_snd_rawmidi_params_get_buffer_size(const snd_rawmidi_params_t * params) { @@ -15555,7 +15555,7 @@ size_t glshim_snd_rawmidi_params_get_buffer_size(const snd_rawmidi_params_t * pa syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_rawmidi_params_get_buffer_size(const snd_rawmidi_params_t * params) __attribute__((alias("glshim_snd_rawmidi_params_get_buffer_size"))); +size_t snd_rawmidi_params_get_buffer_size(const snd_rawmidi_params_t * params) __attribute__((alias("glshim_snd_rawmidi_params_get_buffer_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_get_no_active_sensing) && !defined(skip_index_snd_rawmidi_params_get_no_active_sensing) int glshim_snd_rawmidi_params_get_no_active_sensing(const snd_rawmidi_params_t * params) { @@ -15566,7 +15566,7 @@ int glshim_snd_rawmidi_params_get_no_active_sensing(const snd_rawmidi_params_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_params_get_no_active_sensing(const snd_rawmidi_params_t * params) __attribute__((alias("glshim_snd_rawmidi_params_get_no_active_sensing"))); +int snd_rawmidi_params_get_no_active_sensing(const snd_rawmidi_params_t * params) __attribute__((alias("glshim_snd_rawmidi_params_get_no_active_sensing"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_malloc) && !defined(skip_index_snd_rawmidi_params_malloc) int glshim_snd_rawmidi_params_malloc(snd_rawmidi_params_t ** ptr) { @@ -15577,7 +15577,7 @@ int glshim_snd_rawmidi_params_malloc(snd_rawmidi_params_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_params_malloc(snd_rawmidi_params_t ** ptr) __attribute__((alias("glshim_snd_rawmidi_params_malloc"))); +int snd_rawmidi_params_malloc(snd_rawmidi_params_t ** ptr) __attribute__((alias("glshim_snd_rawmidi_params_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_set_avail_min) && !defined(skip_index_snd_rawmidi_params_set_avail_min) int glshim_snd_rawmidi_params_set_avail_min(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params, size_t val) { @@ -15590,7 +15590,7 @@ int glshim_snd_rawmidi_params_set_avail_min(snd_rawmidi_t * rmidi, snd_rawmidi_p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_params_set_avail_min(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params, size_t val) __attribute__((alias("glshim_snd_rawmidi_params_set_avail_min"))); +int snd_rawmidi_params_set_avail_min(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params, size_t val) __attribute__((alias("glshim_snd_rawmidi_params_set_avail_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_set_buffer_size) && !defined(skip_index_snd_rawmidi_params_set_buffer_size) int glshim_snd_rawmidi_params_set_buffer_size(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params, size_t val) { @@ -15603,7 +15603,7 @@ int glshim_snd_rawmidi_params_set_buffer_size(snd_rawmidi_t * rmidi, snd_rawmidi syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_params_set_buffer_size(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params, size_t val) __attribute__((alias("glshim_snd_rawmidi_params_set_buffer_size"))); +int snd_rawmidi_params_set_buffer_size(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params, size_t val) __attribute__((alias("glshim_snd_rawmidi_params_set_buffer_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_set_no_active_sensing) && !defined(skip_index_snd_rawmidi_params_set_no_active_sensing) int glshim_snd_rawmidi_params_set_no_active_sensing(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params, int val) { @@ -15616,7 +15616,7 @@ int glshim_snd_rawmidi_params_set_no_active_sensing(snd_rawmidi_t * rmidi, snd_r syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_params_set_no_active_sensing(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params, int val) __attribute__((alias("glshim_snd_rawmidi_params_set_no_active_sensing"))); +int snd_rawmidi_params_set_no_active_sensing(snd_rawmidi_t * rmidi, snd_rawmidi_params_t * params, int val) __attribute__((alias("glshim_snd_rawmidi_params_set_no_active_sensing"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_params_sizeof) && !defined(skip_index_snd_rawmidi_params_sizeof) size_t glshim_snd_rawmidi_params_sizeof() { @@ -15626,7 +15626,7 @@ size_t glshim_snd_rawmidi_params_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_rawmidi_params_sizeof() __attribute__((alias("glshim_snd_rawmidi_params_sizeof"))); +size_t snd_rawmidi_params_sizeof() __attribute__((alias("glshim_snd_rawmidi_params_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_poll_descriptors) && !defined(skip_index_snd_rawmidi_poll_descriptors) int glshim_snd_rawmidi_poll_descriptors(snd_rawmidi_t * rmidi, struct pollfd * pfds, unsigned int space) { @@ -15639,7 +15639,7 @@ int glshim_snd_rawmidi_poll_descriptors(snd_rawmidi_t * rmidi, struct pollfd * p syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_poll_descriptors(snd_rawmidi_t * rmidi, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_rawmidi_poll_descriptors"))); +int snd_rawmidi_poll_descriptors(snd_rawmidi_t * rmidi, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_rawmidi_poll_descriptors"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_poll_descriptors_count) && !defined(skip_index_snd_rawmidi_poll_descriptors_count) int glshim_snd_rawmidi_poll_descriptors_count(snd_rawmidi_t * rmidi) { @@ -15650,7 +15650,7 @@ int glshim_snd_rawmidi_poll_descriptors_count(snd_rawmidi_t * rmidi) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_poll_descriptors_count(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_poll_descriptors_count"))); +int snd_rawmidi_poll_descriptors_count(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_poll_descriptors_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_poll_descriptors_revents) && !defined(skip_index_snd_rawmidi_poll_descriptors_revents) int glshim_snd_rawmidi_poll_descriptors_revents(snd_rawmidi_t * rawmidi, struct pollfd * pfds, unsigned int nfds, unsigned short * revent) { @@ -15664,7 +15664,7 @@ int glshim_snd_rawmidi_poll_descriptors_revents(snd_rawmidi_t * rawmidi, struct syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_poll_descriptors_revents(snd_rawmidi_t * rawmidi, struct pollfd * pfds, unsigned int nfds, unsigned short * revent) __attribute__((alias("glshim_snd_rawmidi_poll_descriptors_revents"))); +int snd_rawmidi_poll_descriptors_revents(snd_rawmidi_t * rawmidi, struct pollfd * pfds, unsigned int nfds, unsigned short * revent) __attribute__((alias("glshim_snd_rawmidi_poll_descriptors_revents"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_read) && !defined(skip_index_snd_rawmidi_read) ssize_t glshim_snd_rawmidi_read(snd_rawmidi_t * rmidi, void * buffer, size_t size) { @@ -15677,7 +15677,7 @@ ssize_t glshim_snd_rawmidi_read(snd_rawmidi_t * rmidi, void * buffer, size_t siz syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -ssize_t snd_rawmidi_read(snd_rawmidi_t * rmidi, void * buffer, size_t size) __attribute__((alias("glshim_snd_rawmidi_read"))); +ssize_t snd_rawmidi_read(snd_rawmidi_t * rmidi, void * buffer, size_t size) __attribute__((alias("glshim_snd_rawmidi_read"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_status) && !defined(skip_index_snd_rawmidi_status) int glshim_snd_rawmidi_status(snd_rawmidi_t * rmidi, snd_rawmidi_status_t * status) { @@ -15689,7 +15689,7 @@ int glshim_snd_rawmidi_status(snd_rawmidi_t * rmidi, snd_rawmidi_status_t * stat syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_status(snd_rawmidi_t * rmidi, snd_rawmidi_status_t * status) __attribute__((alias("glshim_snd_rawmidi_status"))); +int snd_rawmidi_status(snd_rawmidi_t * rmidi, snd_rawmidi_status_t * status) __attribute__((alias("glshim_snd_rawmidi_status"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_status_copy) && !defined(skip_index_snd_rawmidi_status_copy) void glshim_snd_rawmidi_status_copy(snd_rawmidi_status_t * dst, const snd_rawmidi_status_t * src) { @@ -15699,7 +15699,7 @@ void glshim_snd_rawmidi_status_copy(snd_rawmidi_status_t * dst, const snd_rawmid packed_data.args.a2 = (snd_rawmidi_status_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_rawmidi_status_copy(snd_rawmidi_status_t * dst, const snd_rawmidi_status_t * src) __attribute__((alias("glshim_snd_rawmidi_status_copy"))); +void snd_rawmidi_status_copy(snd_rawmidi_status_t * dst, const snd_rawmidi_status_t * src) __attribute__((alias("glshim_snd_rawmidi_status_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_status_free) && !defined(skip_index_snd_rawmidi_status_free) void glshim_snd_rawmidi_status_free(snd_rawmidi_status_t * obj) { @@ -15708,7 +15708,7 @@ void glshim_snd_rawmidi_status_free(snd_rawmidi_status_t * obj) { packed_data.args.a1 = (snd_rawmidi_status_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_rawmidi_status_free(snd_rawmidi_status_t * obj) __attribute__((alias("glshim_snd_rawmidi_status_free"))); +void snd_rawmidi_status_free(snd_rawmidi_status_t * obj) __attribute__((alias("glshim_snd_rawmidi_status_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_status_get_avail) && !defined(skip_index_snd_rawmidi_status_get_avail) size_t glshim_snd_rawmidi_status_get_avail(const snd_rawmidi_status_t * obj) { @@ -15719,7 +15719,7 @@ size_t glshim_snd_rawmidi_status_get_avail(const snd_rawmidi_status_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_rawmidi_status_get_avail(const snd_rawmidi_status_t * obj) __attribute__((alias("glshim_snd_rawmidi_status_get_avail"))); +size_t snd_rawmidi_status_get_avail(const snd_rawmidi_status_t * obj) __attribute__((alias("glshim_snd_rawmidi_status_get_avail"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_status_get_tstamp) && !defined(skip_index_snd_rawmidi_status_get_tstamp) void glshim_snd_rawmidi_status_get_tstamp(const snd_rawmidi_status_t * obj, snd_htimestamp_t * ptr) { @@ -15729,7 +15729,7 @@ void glshim_snd_rawmidi_status_get_tstamp(const snd_rawmidi_status_t * obj, snd_ packed_data.args.a2 = (snd_htimestamp_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_rawmidi_status_get_tstamp(const snd_rawmidi_status_t * obj, snd_htimestamp_t * ptr) __attribute__((alias("glshim_snd_rawmidi_status_get_tstamp"))); +void snd_rawmidi_status_get_tstamp(const snd_rawmidi_status_t * obj, snd_htimestamp_t * ptr) __attribute__((alias("glshim_snd_rawmidi_status_get_tstamp"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_status_get_xruns) && !defined(skip_index_snd_rawmidi_status_get_xruns) size_t glshim_snd_rawmidi_status_get_xruns(const snd_rawmidi_status_t * obj) { @@ -15740,7 +15740,7 @@ size_t glshim_snd_rawmidi_status_get_xruns(const snd_rawmidi_status_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_rawmidi_status_get_xruns(const snd_rawmidi_status_t * obj) __attribute__((alias("glshim_snd_rawmidi_status_get_xruns"))); +size_t snd_rawmidi_status_get_xruns(const snd_rawmidi_status_t * obj) __attribute__((alias("glshim_snd_rawmidi_status_get_xruns"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_status_malloc) && !defined(skip_index_snd_rawmidi_status_malloc) int glshim_snd_rawmidi_status_malloc(snd_rawmidi_status_t ** ptr) { @@ -15751,7 +15751,7 @@ int glshim_snd_rawmidi_status_malloc(snd_rawmidi_status_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_rawmidi_status_malloc(snd_rawmidi_status_t ** ptr) __attribute__((alias("glshim_snd_rawmidi_status_malloc"))); +int snd_rawmidi_status_malloc(snd_rawmidi_status_t ** ptr) __attribute__((alias("glshim_snd_rawmidi_status_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_status_sizeof) && !defined(skip_index_snd_rawmidi_status_sizeof) size_t glshim_snd_rawmidi_status_sizeof() { @@ -15761,7 +15761,7 @@ size_t glshim_snd_rawmidi_status_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_rawmidi_status_sizeof() __attribute__((alias("glshim_snd_rawmidi_status_sizeof"))); +size_t snd_rawmidi_status_sizeof() __attribute__((alias("glshim_snd_rawmidi_status_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_stream) && !defined(skip_index_snd_rawmidi_stream) snd_rawmidi_stream_t glshim_snd_rawmidi_stream(snd_rawmidi_t * rawmidi) { @@ -15772,7 +15772,7 @@ snd_rawmidi_stream_t glshim_snd_rawmidi_stream(snd_rawmidi_t * rawmidi) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_rawmidi_stream_t snd_rawmidi_stream(snd_rawmidi_t * rawmidi) __attribute__((alias("glshim_snd_rawmidi_stream"))); +snd_rawmidi_stream_t snd_rawmidi_stream(snd_rawmidi_t * rawmidi) __attribute__((alias("glshim_snd_rawmidi_stream"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_type) && !defined(skip_index_snd_rawmidi_type) snd_rawmidi_type_t glshim_snd_rawmidi_type(snd_rawmidi_t * rmidi) { @@ -15783,7 +15783,7 @@ snd_rawmidi_type_t glshim_snd_rawmidi_type(snd_rawmidi_t * rmidi) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_rawmidi_type_t snd_rawmidi_type(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_type"))); +snd_rawmidi_type_t snd_rawmidi_type(snd_rawmidi_t * rmidi) __attribute__((alias("glshim_snd_rawmidi_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_rawmidi_write) && !defined(skip_index_snd_rawmidi_write) ssize_t glshim_snd_rawmidi_write(snd_rawmidi_t * rmidi, const void * buffer, size_t size) { @@ -15796,7 +15796,7 @@ ssize_t glshim_snd_rawmidi_write(snd_rawmidi_t * rmidi, const void * buffer, siz syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -ssize_t snd_rawmidi_write(snd_rawmidi_t * rmidi, const void * buffer, size_t size) __attribute__((alias("glshim_snd_rawmidi_write"))); +ssize_t snd_rawmidi_write(snd_rawmidi_t * rmidi, const void * buffer, size_t size) __attribute__((alias("glshim_snd_rawmidi_write"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_sctl_build) && !defined(skip_index_snd_sctl_build) int glshim_snd_sctl_build(snd_sctl_t ** ctl, snd_ctl_t * handle, snd_config_t * config, snd_config_t * private_data, int mode) { @@ -15811,7 +15811,7 @@ int glshim_snd_sctl_build(snd_sctl_t ** ctl, snd_ctl_t * handle, snd_config_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_sctl_build(snd_sctl_t ** ctl, snd_ctl_t * handle, snd_config_t * config, snd_config_t * private_data, int mode) __attribute__((alias("glshim_snd_sctl_build"))); +int snd_sctl_build(snd_sctl_t ** ctl, snd_ctl_t * handle, snd_config_t * config, snd_config_t * private_data, int mode) __attribute__((alias("glshim_snd_sctl_build"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_sctl_free) && !defined(skip_index_snd_sctl_free) int glshim_snd_sctl_free(snd_sctl_t * handle) { @@ -15822,7 +15822,7 @@ int glshim_snd_sctl_free(snd_sctl_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_sctl_free(snd_sctl_t * handle) __attribute__((alias("glshim_snd_sctl_free"))); +int snd_sctl_free(snd_sctl_t * handle) __attribute__((alias("glshim_snd_sctl_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_sctl_install) && !defined(skip_index_snd_sctl_install) int glshim_snd_sctl_install(snd_sctl_t * handle) { @@ -15833,7 +15833,7 @@ int glshim_snd_sctl_install(snd_sctl_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_sctl_install(snd_sctl_t * handle) __attribute__((alias("glshim_snd_sctl_install"))); +int snd_sctl_install(snd_sctl_t * handle) __attribute__((alias("glshim_snd_sctl_install"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_sctl_remove) && !defined(skip_index_snd_sctl_remove) int glshim_snd_sctl_remove(snd_sctl_t * handle) { @@ -15844,7 +15844,7 @@ int glshim_snd_sctl_remove(snd_sctl_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_sctl_remove(snd_sctl_t * handle) __attribute__((alias("glshim_snd_sctl_remove"))); +int snd_sctl_remove(snd_sctl_t * handle) __attribute__((alias("glshim_snd_sctl_remove"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_alloc_named_queue) && !defined(skip_index_snd_seq_alloc_named_queue) int glshim_snd_seq_alloc_named_queue(snd_seq_t * seq, const char * name) { @@ -15856,7 +15856,7 @@ int glshim_snd_seq_alloc_named_queue(snd_seq_t * seq, const char * name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_alloc_named_queue(snd_seq_t * seq, const char * name) __attribute__((alias("glshim_snd_seq_alloc_named_queue"))); +int snd_seq_alloc_named_queue(snd_seq_t * seq, const char * name) __attribute__((alias("glshim_snd_seq_alloc_named_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_alloc_queue) && !defined(skip_index_snd_seq_alloc_queue) int glshim_snd_seq_alloc_queue(snd_seq_t * handle) { @@ -15867,7 +15867,7 @@ int glshim_snd_seq_alloc_queue(snd_seq_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_alloc_queue(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_alloc_queue"))); +int snd_seq_alloc_queue(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_alloc_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_change_bit) && !defined(skip_index_snd_seq_change_bit) int glshim_snd_seq_change_bit(int nr, void * array) { @@ -15879,7 +15879,7 @@ int glshim_snd_seq_change_bit(int nr, void * array) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_change_bit(int nr, void * array) __attribute__((alias("glshim_snd_seq_change_bit"))); +int snd_seq_change_bit(int nr, void * array) __attribute__((alias("glshim_snd_seq_change_bit"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_id) && !defined(skip_index_snd_seq_client_id) int glshim_snd_seq_client_id(snd_seq_t * handle) { @@ -15890,7 +15890,7 @@ int glshim_snd_seq_client_id(snd_seq_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_client_id(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_client_id"))); +int snd_seq_client_id(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_client_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_copy) && !defined(skip_index_snd_seq_client_info_copy) void glshim_snd_seq_client_info_copy(snd_seq_client_info_t * dst, const snd_seq_client_info_t * src) { @@ -15900,7 +15900,7 @@ void glshim_snd_seq_client_info_copy(snd_seq_client_info_t * dst, const snd_seq_ packed_data.args.a2 = (snd_seq_client_info_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_info_copy(snd_seq_client_info_t * dst, const snd_seq_client_info_t * src) __attribute__((alias("glshim_snd_seq_client_info_copy"))); +void snd_seq_client_info_copy(snd_seq_client_info_t * dst, const snd_seq_client_info_t * src) __attribute__((alias("glshim_snd_seq_client_info_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_free) && !defined(skip_index_snd_seq_client_info_free) void glshim_snd_seq_client_info_free(snd_seq_client_info_t * ptr) { @@ -15909,7 +15909,7 @@ void glshim_snd_seq_client_info_free(snd_seq_client_info_t * ptr) { packed_data.args.a1 = (snd_seq_client_info_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_info_free(snd_seq_client_info_t * ptr) __attribute__((alias("glshim_snd_seq_client_info_free"))); +void snd_seq_client_info_free(snd_seq_client_info_t * ptr) __attribute__((alias("glshim_snd_seq_client_info_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_get_broadcast_filter) && !defined(skip_index_snd_seq_client_info_get_broadcast_filter) int glshim_snd_seq_client_info_get_broadcast_filter(const snd_seq_client_info_t * info) { @@ -15920,7 +15920,7 @@ int glshim_snd_seq_client_info_get_broadcast_filter(const snd_seq_client_info_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_client_info_get_broadcast_filter(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_broadcast_filter"))); +int snd_seq_client_info_get_broadcast_filter(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_broadcast_filter"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_get_client) && !defined(skip_index_snd_seq_client_info_get_client) int glshim_snd_seq_client_info_get_client(const snd_seq_client_info_t * info) { @@ -15931,7 +15931,7 @@ int glshim_snd_seq_client_info_get_client(const snd_seq_client_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_client_info_get_client(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_client"))); +int snd_seq_client_info_get_client(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_client"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_get_error_bounce) && !defined(skip_index_snd_seq_client_info_get_error_bounce) int glshim_snd_seq_client_info_get_error_bounce(const snd_seq_client_info_t * info) { @@ -15942,7 +15942,7 @@ int glshim_snd_seq_client_info_get_error_bounce(const snd_seq_client_info_t * in syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_client_info_get_error_bounce(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_error_bounce"))); +int snd_seq_client_info_get_error_bounce(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_error_bounce"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_get_event_filter) && !defined(skip_index_snd_seq_client_info_get_event_filter) const unsigned char * glshim_snd_seq_client_info_get_event_filter(const snd_seq_client_info_t * info) { @@ -15953,7 +15953,7 @@ const unsigned char * glshim_snd_seq_client_info_get_event_filter(const snd_seq_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const unsigned char * snd_seq_client_info_get_event_filter(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_event_filter"))); +const unsigned char * snd_seq_client_info_get_event_filter(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_event_filter"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_get_event_lost) && !defined(skip_index_snd_seq_client_info_get_event_lost) int glshim_snd_seq_client_info_get_event_lost(const snd_seq_client_info_t * info) { @@ -15964,7 +15964,7 @@ int glshim_snd_seq_client_info_get_event_lost(const snd_seq_client_info_t * info syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_client_info_get_event_lost(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_event_lost"))); +int snd_seq_client_info_get_event_lost(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_event_lost"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_get_name) && !defined(skip_index_snd_seq_client_info_get_name) const char * glshim_snd_seq_client_info_get_name(snd_seq_client_info_t * info) { @@ -15975,7 +15975,7 @@ const char * glshim_snd_seq_client_info_get_name(snd_seq_client_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_seq_client_info_get_name(snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_name"))); +const char * snd_seq_client_info_get_name(snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_get_num_ports) && !defined(skip_index_snd_seq_client_info_get_num_ports) int glshim_snd_seq_client_info_get_num_ports(const snd_seq_client_info_t * info) { @@ -15986,7 +15986,7 @@ int glshim_snd_seq_client_info_get_num_ports(const snd_seq_client_info_t * info) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_client_info_get_num_ports(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_num_ports"))); +int snd_seq_client_info_get_num_ports(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_num_ports"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_get_type) && !defined(skip_index_snd_seq_client_info_get_type) snd_seq_client_type_t glshim_snd_seq_client_info_get_type(const snd_seq_client_info_t * info) { @@ -15997,7 +15997,7 @@ snd_seq_client_type_t glshim_snd_seq_client_info_get_type(const snd_seq_client_i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_seq_client_type_t snd_seq_client_info_get_type(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_type"))); +snd_seq_client_type_t snd_seq_client_info_get_type(const snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_client_info_get_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_malloc) && !defined(skip_index_snd_seq_client_info_malloc) int glshim_snd_seq_client_info_malloc(snd_seq_client_info_t ** ptr) { @@ -16008,7 +16008,7 @@ int glshim_snd_seq_client_info_malloc(snd_seq_client_info_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_client_info_malloc(snd_seq_client_info_t ** ptr) __attribute__((alias("glshim_snd_seq_client_info_malloc"))); +int snd_seq_client_info_malloc(snd_seq_client_info_t ** ptr) __attribute__((alias("glshim_snd_seq_client_info_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_set_broadcast_filter) && !defined(skip_index_snd_seq_client_info_set_broadcast_filter) void glshim_snd_seq_client_info_set_broadcast_filter(snd_seq_client_info_t * info, int val) { @@ -16018,7 +16018,7 @@ void glshim_snd_seq_client_info_set_broadcast_filter(snd_seq_client_info_t * inf packed_data.args.a2 = (int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_info_set_broadcast_filter(snd_seq_client_info_t * info, int val) __attribute__((alias("glshim_snd_seq_client_info_set_broadcast_filter"))); +void snd_seq_client_info_set_broadcast_filter(snd_seq_client_info_t * info, int val) __attribute__((alias("glshim_snd_seq_client_info_set_broadcast_filter"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_set_client) && !defined(skip_index_snd_seq_client_info_set_client) void glshim_snd_seq_client_info_set_client(snd_seq_client_info_t * info, int client) { @@ -16028,7 +16028,7 @@ void glshim_snd_seq_client_info_set_client(snd_seq_client_info_t * info, int cli packed_data.args.a2 = (int)client; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_info_set_client(snd_seq_client_info_t * info, int client) __attribute__((alias("glshim_snd_seq_client_info_set_client"))); +void snd_seq_client_info_set_client(snd_seq_client_info_t * info, int client) __attribute__((alias("glshim_snd_seq_client_info_set_client"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_set_error_bounce) && !defined(skip_index_snd_seq_client_info_set_error_bounce) void glshim_snd_seq_client_info_set_error_bounce(snd_seq_client_info_t * info, int val) { @@ -16038,7 +16038,7 @@ void glshim_snd_seq_client_info_set_error_bounce(snd_seq_client_info_t * info, i packed_data.args.a2 = (int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_info_set_error_bounce(snd_seq_client_info_t * info, int val) __attribute__((alias("glshim_snd_seq_client_info_set_error_bounce"))); +void snd_seq_client_info_set_error_bounce(snd_seq_client_info_t * info, int val) __attribute__((alias("glshim_snd_seq_client_info_set_error_bounce"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_set_event_filter) && !defined(skip_index_snd_seq_client_info_set_event_filter) void glshim_snd_seq_client_info_set_event_filter(snd_seq_client_info_t * info, unsigned char * filter) { @@ -16048,7 +16048,7 @@ void glshim_snd_seq_client_info_set_event_filter(snd_seq_client_info_t * info, u packed_data.args.a2 = (unsigned char *)filter; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_info_set_event_filter(snd_seq_client_info_t * info, unsigned char * filter) __attribute__((alias("glshim_snd_seq_client_info_set_event_filter"))); +void snd_seq_client_info_set_event_filter(snd_seq_client_info_t * info, unsigned char * filter) __attribute__((alias("glshim_snd_seq_client_info_set_event_filter"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_set_name) && !defined(skip_index_snd_seq_client_info_set_name) void glshim_snd_seq_client_info_set_name(snd_seq_client_info_t * info, const char * name) { @@ -16058,7 +16058,7 @@ void glshim_snd_seq_client_info_set_name(snd_seq_client_info_t * info, const cha packed_data.args.a2 = (char *)name; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_info_set_name(snd_seq_client_info_t * info, const char * name) __attribute__((alias("glshim_snd_seq_client_info_set_name"))); +void snd_seq_client_info_set_name(snd_seq_client_info_t * info, const char * name) __attribute__((alias("glshim_snd_seq_client_info_set_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_info_sizeof) && !defined(skip_index_snd_seq_client_info_sizeof) size_t glshim_snd_seq_client_info_sizeof() { @@ -16068,7 +16068,7 @@ size_t glshim_snd_seq_client_info_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_client_info_sizeof() __attribute__((alias("glshim_snd_seq_client_info_sizeof"))); +size_t snd_seq_client_info_sizeof() __attribute__((alias("glshim_snd_seq_client_info_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_copy) && !defined(skip_index_snd_seq_client_pool_copy) void glshim_snd_seq_client_pool_copy(snd_seq_client_pool_t * dst, const snd_seq_client_pool_t * src) { @@ -16078,7 +16078,7 @@ void glshim_snd_seq_client_pool_copy(snd_seq_client_pool_t * dst, const snd_seq_ packed_data.args.a2 = (snd_seq_client_pool_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_pool_copy(snd_seq_client_pool_t * dst, const snd_seq_client_pool_t * src) __attribute__((alias("glshim_snd_seq_client_pool_copy"))); +void snd_seq_client_pool_copy(snd_seq_client_pool_t * dst, const snd_seq_client_pool_t * src) __attribute__((alias("glshim_snd_seq_client_pool_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_free) && !defined(skip_index_snd_seq_client_pool_free) void glshim_snd_seq_client_pool_free(snd_seq_client_pool_t * ptr) { @@ -16087,7 +16087,7 @@ void glshim_snd_seq_client_pool_free(snd_seq_client_pool_t * ptr) { packed_data.args.a1 = (snd_seq_client_pool_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_pool_free(snd_seq_client_pool_t * ptr) __attribute__((alias("glshim_snd_seq_client_pool_free"))); +void snd_seq_client_pool_free(snd_seq_client_pool_t * ptr) __attribute__((alias("glshim_snd_seq_client_pool_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_get_client) && !defined(skip_index_snd_seq_client_pool_get_client) int glshim_snd_seq_client_pool_get_client(const snd_seq_client_pool_t * info) { @@ -16098,7 +16098,7 @@ int glshim_snd_seq_client_pool_get_client(const snd_seq_client_pool_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_client_pool_get_client(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_client"))); +int snd_seq_client_pool_get_client(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_client"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_get_input_free) && !defined(skip_index_snd_seq_client_pool_get_input_free) size_t glshim_snd_seq_client_pool_get_input_free(const snd_seq_client_pool_t * info) { @@ -16109,7 +16109,7 @@ size_t glshim_snd_seq_client_pool_get_input_free(const snd_seq_client_pool_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_client_pool_get_input_free(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_input_free"))); +size_t snd_seq_client_pool_get_input_free(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_input_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_get_input_pool) && !defined(skip_index_snd_seq_client_pool_get_input_pool) size_t glshim_snd_seq_client_pool_get_input_pool(const snd_seq_client_pool_t * info) { @@ -16120,7 +16120,7 @@ size_t glshim_snd_seq_client_pool_get_input_pool(const snd_seq_client_pool_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_client_pool_get_input_pool(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_input_pool"))); +size_t snd_seq_client_pool_get_input_pool(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_input_pool"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_get_output_free) && !defined(skip_index_snd_seq_client_pool_get_output_free) size_t glshim_snd_seq_client_pool_get_output_free(const snd_seq_client_pool_t * info) { @@ -16131,7 +16131,7 @@ size_t glshim_snd_seq_client_pool_get_output_free(const snd_seq_client_pool_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_client_pool_get_output_free(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_output_free"))); +size_t snd_seq_client_pool_get_output_free(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_output_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_get_output_pool) && !defined(skip_index_snd_seq_client_pool_get_output_pool) size_t glshim_snd_seq_client_pool_get_output_pool(const snd_seq_client_pool_t * info) { @@ -16142,7 +16142,7 @@ size_t glshim_snd_seq_client_pool_get_output_pool(const snd_seq_client_pool_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_client_pool_get_output_pool(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_output_pool"))); +size_t snd_seq_client_pool_get_output_pool(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_output_pool"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_get_output_room) && !defined(skip_index_snd_seq_client_pool_get_output_room) size_t glshim_snd_seq_client_pool_get_output_room(const snd_seq_client_pool_t * info) { @@ -16153,7 +16153,7 @@ size_t glshim_snd_seq_client_pool_get_output_room(const snd_seq_client_pool_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_client_pool_get_output_room(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_output_room"))); +size_t snd_seq_client_pool_get_output_room(const snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_client_pool_get_output_room"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_malloc) && !defined(skip_index_snd_seq_client_pool_malloc) int glshim_snd_seq_client_pool_malloc(snd_seq_client_pool_t ** ptr) { @@ -16164,7 +16164,7 @@ int glshim_snd_seq_client_pool_malloc(snd_seq_client_pool_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_client_pool_malloc(snd_seq_client_pool_t ** ptr) __attribute__((alias("glshim_snd_seq_client_pool_malloc"))); +int snd_seq_client_pool_malloc(snd_seq_client_pool_t ** ptr) __attribute__((alias("glshim_snd_seq_client_pool_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_set_input_pool) && !defined(skip_index_snd_seq_client_pool_set_input_pool) void glshim_snd_seq_client_pool_set_input_pool(snd_seq_client_pool_t * info, size_t size) { @@ -16174,7 +16174,7 @@ void glshim_snd_seq_client_pool_set_input_pool(snd_seq_client_pool_t * info, siz packed_data.args.a2 = (size_t)size; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_pool_set_input_pool(snd_seq_client_pool_t * info, size_t size) __attribute__((alias("glshim_snd_seq_client_pool_set_input_pool"))); +void snd_seq_client_pool_set_input_pool(snd_seq_client_pool_t * info, size_t size) __attribute__((alias("glshim_snd_seq_client_pool_set_input_pool"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_set_output_pool) && !defined(skip_index_snd_seq_client_pool_set_output_pool) void glshim_snd_seq_client_pool_set_output_pool(snd_seq_client_pool_t * info, size_t size) { @@ -16184,7 +16184,7 @@ void glshim_snd_seq_client_pool_set_output_pool(snd_seq_client_pool_t * info, si packed_data.args.a2 = (size_t)size; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_pool_set_output_pool(snd_seq_client_pool_t * info, size_t size) __attribute__((alias("glshim_snd_seq_client_pool_set_output_pool"))); +void snd_seq_client_pool_set_output_pool(snd_seq_client_pool_t * info, size_t size) __attribute__((alias("glshim_snd_seq_client_pool_set_output_pool"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_set_output_room) && !defined(skip_index_snd_seq_client_pool_set_output_room) void glshim_snd_seq_client_pool_set_output_room(snd_seq_client_pool_t * info, size_t size) { @@ -16194,7 +16194,7 @@ void glshim_snd_seq_client_pool_set_output_room(snd_seq_client_pool_t * info, si packed_data.args.a2 = (size_t)size; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_client_pool_set_output_room(snd_seq_client_pool_t * info, size_t size) __attribute__((alias("glshim_snd_seq_client_pool_set_output_room"))); +void snd_seq_client_pool_set_output_room(snd_seq_client_pool_t * info, size_t size) __attribute__((alias("glshim_snd_seq_client_pool_set_output_room"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_client_pool_sizeof) && !defined(skip_index_snd_seq_client_pool_sizeof) size_t glshim_snd_seq_client_pool_sizeof() { @@ -16204,7 +16204,7 @@ size_t glshim_snd_seq_client_pool_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_client_pool_sizeof() __attribute__((alias("glshim_snd_seq_client_pool_sizeof"))); +size_t snd_seq_client_pool_sizeof() __attribute__((alias("glshim_snd_seq_client_pool_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_close) && !defined(skip_index_snd_seq_close) int glshim_snd_seq_close(snd_seq_t * handle) { @@ -16215,7 +16215,7 @@ int glshim_snd_seq_close(snd_seq_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_close(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_close"))); +int snd_seq_close(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_connect_from) && !defined(skip_index_snd_seq_connect_from) int glshim_snd_seq_connect_from(snd_seq_t * seq, int myport, int src_client, int src_port) { @@ -16229,7 +16229,7 @@ int glshim_snd_seq_connect_from(snd_seq_t * seq, int myport, int src_client, int syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_connect_from(snd_seq_t * seq, int myport, int src_client, int src_port) __attribute__((alias("glshim_snd_seq_connect_from"))); +int snd_seq_connect_from(snd_seq_t * seq, int myport, int src_client, int src_port) __attribute__((alias("glshim_snd_seq_connect_from"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_connect_to) && !defined(skip_index_snd_seq_connect_to) int glshim_snd_seq_connect_to(snd_seq_t * seq, int myport, int dest_client, int dest_port) { @@ -16243,7 +16243,7 @@ int glshim_snd_seq_connect_to(snd_seq_t * seq, int myport, int dest_client, int syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_connect_to(snd_seq_t * seq, int myport, int dest_client, int dest_port) __attribute__((alias("glshim_snd_seq_connect_to"))); +int snd_seq_connect_to(snd_seq_t * seq, int myport, int dest_client, int dest_port) __attribute__((alias("glshim_snd_seq_connect_to"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_control_queue) && !defined(skip_index_snd_seq_control_queue) int glshim_snd_seq_control_queue(snd_seq_t * seq, int q, int type, int value, snd_seq_event_t * ev) { @@ -16258,7 +16258,7 @@ int glshim_snd_seq_control_queue(snd_seq_t * seq, int q, int type, int value, sn syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_control_queue(snd_seq_t * seq, int q, int type, int value, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_control_queue"))); +int snd_seq_control_queue(snd_seq_t * seq, int q, int type, int value, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_control_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_create_port) && !defined(skip_index_snd_seq_create_port) int glshim_snd_seq_create_port(snd_seq_t * handle, snd_seq_port_info_t * info) { @@ -16270,7 +16270,7 @@ int glshim_snd_seq_create_port(snd_seq_t * handle, snd_seq_port_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_create_port(snd_seq_t * handle, snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_create_port"))); +int snd_seq_create_port(snd_seq_t * handle, snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_create_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_create_queue) && !defined(skip_index_snd_seq_create_queue) int glshim_snd_seq_create_queue(snd_seq_t * seq, snd_seq_queue_info_t * info) { @@ -16282,7 +16282,7 @@ int glshim_snd_seq_create_queue(snd_seq_t * seq, snd_seq_queue_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_create_queue(snd_seq_t * seq, snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_create_queue"))); +int snd_seq_create_queue(snd_seq_t * seq, snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_create_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_create_simple_port) && !defined(skip_index_snd_seq_create_simple_port) int glshim_snd_seq_create_simple_port(snd_seq_t * seq, const char * name, unsigned int caps, unsigned int type) { @@ -16296,7 +16296,7 @@ int glshim_snd_seq_create_simple_port(snd_seq_t * seq, const char * name, unsign syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_create_simple_port(snd_seq_t * seq, const char * name, unsigned int caps, unsigned int type) __attribute__((alias("glshim_snd_seq_create_simple_port"))); +int snd_seq_create_simple_port(snd_seq_t * seq, const char * name, unsigned int caps, unsigned int type) __attribute__((alias("glshim_snd_seq_create_simple_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_delete_port) && !defined(skip_index_snd_seq_delete_port) int glshim_snd_seq_delete_port(snd_seq_t * handle, int port) { @@ -16308,7 +16308,7 @@ int glshim_snd_seq_delete_port(snd_seq_t * handle, int port) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_delete_port(snd_seq_t * handle, int port) __attribute__((alias("glshim_snd_seq_delete_port"))); +int snd_seq_delete_port(snd_seq_t * handle, int port) __attribute__((alias("glshim_snd_seq_delete_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_delete_simple_port) && !defined(skip_index_snd_seq_delete_simple_port) int glshim_snd_seq_delete_simple_port(snd_seq_t * seq, int port) { @@ -16320,7 +16320,7 @@ int glshim_snd_seq_delete_simple_port(snd_seq_t * seq, int port) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_delete_simple_port(snd_seq_t * seq, int port) __attribute__((alias("glshim_snd_seq_delete_simple_port"))); +int snd_seq_delete_simple_port(snd_seq_t * seq, int port) __attribute__((alias("glshim_snd_seq_delete_simple_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_disconnect_from) && !defined(skip_index_snd_seq_disconnect_from) int glshim_snd_seq_disconnect_from(snd_seq_t * seq, int myport, int src_client, int src_port) { @@ -16334,7 +16334,7 @@ int glshim_snd_seq_disconnect_from(snd_seq_t * seq, int myport, int src_client, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_disconnect_from(snd_seq_t * seq, int myport, int src_client, int src_port) __attribute__((alias("glshim_snd_seq_disconnect_from"))); +int snd_seq_disconnect_from(snd_seq_t * seq, int myport, int src_client, int src_port) __attribute__((alias("glshim_snd_seq_disconnect_from"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_disconnect_to) && !defined(skip_index_snd_seq_disconnect_to) int glshim_snd_seq_disconnect_to(snd_seq_t * seq, int myport, int dest_client, int dest_port) { @@ -16348,7 +16348,7 @@ int glshim_snd_seq_disconnect_to(snd_seq_t * seq, int myport, int dest_client, i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_disconnect_to(snd_seq_t * seq, int myport, int dest_client, int dest_port) __attribute__((alias("glshim_snd_seq_disconnect_to"))); +int snd_seq_disconnect_to(snd_seq_t * seq, int myport, int dest_client, int dest_port) __attribute__((alias("glshim_snd_seq_disconnect_to"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_drain_output) && !defined(skip_index_snd_seq_drain_output) int glshim_snd_seq_drain_output(snd_seq_t * handle) { @@ -16359,7 +16359,7 @@ int glshim_snd_seq_drain_output(snd_seq_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_drain_output(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_drain_output"))); +int snd_seq_drain_output(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_drain_output"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_drop_input) && !defined(skip_index_snd_seq_drop_input) int glshim_snd_seq_drop_input(snd_seq_t * handle) { @@ -16370,7 +16370,7 @@ int glshim_snd_seq_drop_input(snd_seq_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_drop_input(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_drop_input"))); +int snd_seq_drop_input(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_drop_input"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_drop_input_buffer) && !defined(skip_index_snd_seq_drop_input_buffer) int glshim_snd_seq_drop_input_buffer(snd_seq_t * handle) { @@ -16381,7 +16381,7 @@ int glshim_snd_seq_drop_input_buffer(snd_seq_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_drop_input_buffer(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_drop_input_buffer"))); +int snd_seq_drop_input_buffer(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_drop_input_buffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_drop_output) && !defined(skip_index_snd_seq_drop_output) int glshim_snd_seq_drop_output(snd_seq_t * handle) { @@ -16392,7 +16392,7 @@ int glshim_snd_seq_drop_output(snd_seq_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_drop_output(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_drop_output"))); +int snd_seq_drop_output(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_drop_output"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_drop_output_buffer) && !defined(skip_index_snd_seq_drop_output_buffer) int glshim_snd_seq_drop_output_buffer(snd_seq_t * handle) { @@ -16403,7 +16403,7 @@ int glshim_snd_seq_drop_output_buffer(snd_seq_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_drop_output_buffer(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_drop_output_buffer"))); +int snd_seq_drop_output_buffer(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_drop_output_buffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_event_input) && !defined(skip_index_snd_seq_event_input) int glshim_snd_seq_event_input(snd_seq_t * handle, snd_seq_event_t ** ev) { @@ -16415,7 +16415,7 @@ int glshim_snd_seq_event_input(snd_seq_t * handle, snd_seq_event_t ** ev) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_event_input(snd_seq_t * handle, snd_seq_event_t ** ev) __attribute__((alias("glshim_snd_seq_event_input"))); +int snd_seq_event_input(snd_seq_t * handle, snd_seq_event_t ** ev) __attribute__((alias("glshim_snd_seq_event_input"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_event_input_pending) && !defined(skip_index_snd_seq_event_input_pending) int glshim_snd_seq_event_input_pending(snd_seq_t * seq, int fetch_sequencer) { @@ -16427,7 +16427,7 @@ int glshim_snd_seq_event_input_pending(snd_seq_t * seq, int fetch_sequencer) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_event_input_pending(snd_seq_t * seq, int fetch_sequencer) __attribute__((alias("glshim_snd_seq_event_input_pending"))); +int snd_seq_event_input_pending(snd_seq_t * seq, int fetch_sequencer) __attribute__((alias("glshim_snd_seq_event_input_pending"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_event_length) && !defined(skip_index_snd_seq_event_length) ssize_t glshim_snd_seq_event_length(snd_seq_event_t * ev) { @@ -16438,7 +16438,7 @@ ssize_t glshim_snd_seq_event_length(snd_seq_event_t * ev) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -ssize_t snd_seq_event_length(snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_event_length"))); +ssize_t snd_seq_event_length(snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_event_length"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_event_output) && !defined(skip_index_snd_seq_event_output) int glshim_snd_seq_event_output(snd_seq_t * handle, snd_seq_event_t * ev) { @@ -16450,7 +16450,7 @@ int glshim_snd_seq_event_output(snd_seq_t * handle, snd_seq_event_t * ev) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_event_output(snd_seq_t * handle, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_event_output"))); +int snd_seq_event_output(snd_seq_t * handle, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_event_output"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_event_output_buffer) && !defined(skip_index_snd_seq_event_output_buffer) int glshim_snd_seq_event_output_buffer(snd_seq_t * handle, snd_seq_event_t * ev) { @@ -16462,7 +16462,7 @@ int glshim_snd_seq_event_output_buffer(snd_seq_t * handle, snd_seq_event_t * ev) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_event_output_buffer(snd_seq_t * handle, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_event_output_buffer"))); +int snd_seq_event_output_buffer(snd_seq_t * handle, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_event_output_buffer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_event_output_direct) && !defined(skip_index_snd_seq_event_output_direct) int glshim_snd_seq_event_output_direct(snd_seq_t * handle, snd_seq_event_t * ev) { @@ -16474,7 +16474,7 @@ int glshim_snd_seq_event_output_direct(snd_seq_t * handle, snd_seq_event_t * ev) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_event_output_direct(snd_seq_t * handle, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_event_output_direct"))); +int snd_seq_event_output_direct(snd_seq_t * handle, snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_event_output_direct"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_event_output_pending) && !defined(skip_index_snd_seq_event_output_pending) int glshim_snd_seq_event_output_pending(snd_seq_t * seq) { @@ -16485,7 +16485,7 @@ int glshim_snd_seq_event_output_pending(snd_seq_t * seq) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_event_output_pending(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_event_output_pending"))); +int snd_seq_event_output_pending(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_event_output_pending"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_extract_output) && !defined(skip_index_snd_seq_extract_output) int glshim_snd_seq_extract_output(snd_seq_t * handle, snd_seq_event_t ** ev) { @@ -16497,7 +16497,7 @@ int glshim_snd_seq_extract_output(snd_seq_t * handle, snd_seq_event_t ** ev) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_extract_output(snd_seq_t * handle, snd_seq_event_t ** ev) __attribute__((alias("glshim_snd_seq_extract_output"))); +int snd_seq_extract_output(snd_seq_t * handle, snd_seq_event_t ** ev) __attribute__((alias("glshim_snd_seq_extract_output"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_free_event) && !defined(skip_index_snd_seq_free_event) int glshim_snd_seq_free_event(snd_seq_event_t * ev) { @@ -16508,7 +16508,7 @@ int glshim_snd_seq_free_event(snd_seq_event_t * ev) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_free_event(snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_free_event"))); +int snd_seq_free_event(snd_seq_event_t * ev) __attribute__((alias("glshim_snd_seq_free_event"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_free_queue) && !defined(skip_index_snd_seq_free_queue) int glshim_snd_seq_free_queue(snd_seq_t * handle, int q) { @@ -16520,7 +16520,7 @@ int glshim_snd_seq_free_queue(snd_seq_t * handle, int q) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_free_queue(snd_seq_t * handle, int q) __attribute__((alias("glshim_snd_seq_free_queue"))); +int snd_seq_free_queue(snd_seq_t * handle, int q) __attribute__((alias("glshim_snd_seq_free_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_any_client_info) && !defined(skip_index_snd_seq_get_any_client_info) int glshim_snd_seq_get_any_client_info(snd_seq_t * handle, int client, snd_seq_client_info_t * info) { @@ -16533,7 +16533,7 @@ int glshim_snd_seq_get_any_client_info(snd_seq_t * handle, int client, snd_seq_c syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_any_client_info(snd_seq_t * handle, int client, snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_get_any_client_info"))); +int snd_seq_get_any_client_info(snd_seq_t * handle, int client, snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_get_any_client_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_any_port_info) && !defined(skip_index_snd_seq_get_any_port_info) int glshim_snd_seq_get_any_port_info(snd_seq_t * handle, int client, int port, snd_seq_port_info_t * info) { @@ -16547,7 +16547,7 @@ int glshim_snd_seq_get_any_port_info(snd_seq_t * handle, int client, int port, s syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_any_port_info(snd_seq_t * handle, int client, int port, snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_get_any_port_info"))); +int snd_seq_get_any_port_info(snd_seq_t * handle, int client, int port, snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_get_any_port_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_bit) && !defined(skip_index_snd_seq_get_bit) int glshim_snd_seq_get_bit(int nr, void * array) { @@ -16559,7 +16559,7 @@ int glshim_snd_seq_get_bit(int nr, void * array) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_bit(int nr, void * array) __attribute__((alias("glshim_snd_seq_get_bit"))); +int snd_seq_get_bit(int nr, void * array) __attribute__((alias("glshim_snd_seq_get_bit"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_client_info) && !defined(skip_index_snd_seq_get_client_info) int glshim_snd_seq_get_client_info(snd_seq_t * handle, snd_seq_client_info_t * info) { @@ -16571,7 +16571,7 @@ int glshim_snd_seq_get_client_info(snd_seq_t * handle, snd_seq_client_info_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_client_info(snd_seq_t * handle, snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_get_client_info"))); +int snd_seq_get_client_info(snd_seq_t * handle, snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_get_client_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_client_pool) && !defined(skip_index_snd_seq_get_client_pool) int glshim_snd_seq_get_client_pool(snd_seq_t * handle, snd_seq_client_pool_t * info) { @@ -16583,7 +16583,7 @@ int glshim_snd_seq_get_client_pool(snd_seq_t * handle, snd_seq_client_pool_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_client_pool(snd_seq_t * handle, snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_get_client_pool"))); +int snd_seq_get_client_pool(snd_seq_t * handle, snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_get_client_pool"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_input_buffer_size) && !defined(skip_index_snd_seq_get_input_buffer_size) size_t glshim_snd_seq_get_input_buffer_size(snd_seq_t * handle) { @@ -16594,7 +16594,7 @@ size_t glshim_snd_seq_get_input_buffer_size(snd_seq_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_get_input_buffer_size(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_get_input_buffer_size"))); +size_t snd_seq_get_input_buffer_size(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_get_input_buffer_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_output_buffer_size) && !defined(skip_index_snd_seq_get_output_buffer_size) size_t glshim_snd_seq_get_output_buffer_size(snd_seq_t * handle) { @@ -16605,7 +16605,7 @@ size_t glshim_snd_seq_get_output_buffer_size(snd_seq_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_get_output_buffer_size(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_get_output_buffer_size"))); +size_t snd_seq_get_output_buffer_size(snd_seq_t * handle) __attribute__((alias("glshim_snd_seq_get_output_buffer_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_port_info) && !defined(skip_index_snd_seq_get_port_info) int glshim_snd_seq_get_port_info(snd_seq_t * handle, int port, snd_seq_port_info_t * info) { @@ -16618,7 +16618,7 @@ int glshim_snd_seq_get_port_info(snd_seq_t * handle, int port, snd_seq_port_info syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_port_info(snd_seq_t * handle, int port, snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_get_port_info"))); +int snd_seq_get_port_info(snd_seq_t * handle, int port, snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_get_port_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_port_subscription) && !defined(skip_index_snd_seq_get_port_subscription) int glshim_snd_seq_get_port_subscription(snd_seq_t * handle, snd_seq_port_subscribe_t * sub) { @@ -16630,7 +16630,7 @@ int glshim_snd_seq_get_port_subscription(snd_seq_t * handle, snd_seq_port_subscr syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_port_subscription(snd_seq_t * handle, snd_seq_port_subscribe_t * sub) __attribute__((alias("glshim_snd_seq_get_port_subscription"))); +int snd_seq_get_port_subscription(snd_seq_t * handle, snd_seq_port_subscribe_t * sub) __attribute__((alias("glshim_snd_seq_get_port_subscription"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_queue_info) && !defined(skip_index_snd_seq_get_queue_info) int glshim_snd_seq_get_queue_info(snd_seq_t * seq, int q, snd_seq_queue_info_t * info) { @@ -16643,7 +16643,7 @@ int glshim_snd_seq_get_queue_info(snd_seq_t * seq, int q, snd_seq_queue_info_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_queue_info(snd_seq_t * seq, int q, snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_get_queue_info"))); +int snd_seq_get_queue_info(snd_seq_t * seq, int q, snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_get_queue_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_queue_status) && !defined(skip_index_snd_seq_get_queue_status) int glshim_snd_seq_get_queue_status(snd_seq_t * handle, int q, snd_seq_queue_status_t * status) { @@ -16656,7 +16656,7 @@ int glshim_snd_seq_get_queue_status(snd_seq_t * handle, int q, snd_seq_queue_sta syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_queue_status(snd_seq_t * handle, int q, snd_seq_queue_status_t * status) __attribute__((alias("glshim_snd_seq_get_queue_status"))); +int snd_seq_get_queue_status(snd_seq_t * handle, int q, snd_seq_queue_status_t * status) __attribute__((alias("glshim_snd_seq_get_queue_status"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_queue_tempo) && !defined(skip_index_snd_seq_get_queue_tempo) int glshim_snd_seq_get_queue_tempo(snd_seq_t * handle, int q, snd_seq_queue_tempo_t * tempo) { @@ -16669,7 +16669,7 @@ int glshim_snd_seq_get_queue_tempo(snd_seq_t * handle, int q, snd_seq_queue_temp syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_queue_tempo(snd_seq_t * handle, int q, snd_seq_queue_tempo_t * tempo) __attribute__((alias("glshim_snd_seq_get_queue_tempo"))); +int snd_seq_get_queue_tempo(snd_seq_t * handle, int q, snd_seq_queue_tempo_t * tempo) __attribute__((alias("glshim_snd_seq_get_queue_tempo"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_queue_timer) && !defined(skip_index_snd_seq_get_queue_timer) int glshim_snd_seq_get_queue_timer(snd_seq_t * handle, int q, snd_seq_queue_timer_t * timer) { @@ -16682,7 +16682,7 @@ int glshim_snd_seq_get_queue_timer(snd_seq_t * handle, int q, snd_seq_queue_time syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_queue_timer(snd_seq_t * handle, int q, snd_seq_queue_timer_t * timer) __attribute__((alias("glshim_snd_seq_get_queue_timer"))); +int snd_seq_get_queue_timer(snd_seq_t * handle, int q, snd_seq_queue_timer_t * timer) __attribute__((alias("glshim_snd_seq_get_queue_timer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_get_queue_usage) && !defined(skip_index_snd_seq_get_queue_usage) int glshim_snd_seq_get_queue_usage(snd_seq_t * handle, int q) { @@ -16694,7 +16694,7 @@ int glshim_snd_seq_get_queue_usage(snd_seq_t * handle, int q) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_get_queue_usage(snd_seq_t * handle, int q) __attribute__((alias("glshim_snd_seq_get_queue_usage"))); +int snd_seq_get_queue_usage(snd_seq_t * handle, int q) __attribute__((alias("glshim_snd_seq_get_queue_usage"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_name) && !defined(skip_index_snd_seq_name) const char * glshim_snd_seq_name(snd_seq_t * seq) { @@ -16705,7 +16705,7 @@ const char * glshim_snd_seq_name(snd_seq_t * seq) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_seq_name(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_name"))); +const char * snd_seq_name(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_nonblock) && !defined(skip_index_snd_seq_nonblock) int glshim_snd_seq_nonblock(snd_seq_t * handle, int nonblock) { @@ -16717,7 +16717,7 @@ int glshim_snd_seq_nonblock(snd_seq_t * handle, int nonblock) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_nonblock(snd_seq_t * handle, int nonblock) __attribute__((alias("glshim_snd_seq_nonblock"))); +int snd_seq_nonblock(snd_seq_t * handle, int nonblock) __attribute__((alias("glshim_snd_seq_nonblock"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_open) && !defined(skip_index_snd_seq_open) int glshim_snd_seq_open(snd_seq_t ** handle, const char * name, int streams, int mode) { @@ -16731,7 +16731,7 @@ int glshim_snd_seq_open(snd_seq_t ** handle, const char * name, int streams, int syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_open(snd_seq_t ** handle, const char * name, int streams, int mode) __attribute__((alias("glshim_snd_seq_open"))); +int snd_seq_open(snd_seq_t ** handle, const char * name, int streams, int mode) __attribute__((alias("glshim_snd_seq_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_open_lconf) && !defined(skip_index_snd_seq_open_lconf) int glshim_snd_seq_open_lconf(snd_seq_t ** handle, const char * name, int streams, int mode, snd_config_t * lconf) { @@ -16746,7 +16746,7 @@ int glshim_snd_seq_open_lconf(snd_seq_t ** handle, const char * name, int stream syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_open_lconf(snd_seq_t ** handle, const char * name, int streams, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_seq_open_lconf"))); +int snd_seq_open_lconf(snd_seq_t ** handle, const char * name, int streams, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_seq_open_lconf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_parse_address) && !defined(skip_index_snd_seq_parse_address) int glshim_snd_seq_parse_address(snd_seq_t * seq, snd_seq_addr_t * addr, const char * arg) { @@ -16759,7 +16759,7 @@ int glshim_snd_seq_parse_address(snd_seq_t * seq, snd_seq_addr_t * addr, const c syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_parse_address(snd_seq_t * seq, snd_seq_addr_t * addr, const char * arg) __attribute__((alias("glshim_snd_seq_parse_address"))); +int snd_seq_parse_address(snd_seq_t * seq, snd_seq_addr_t * addr, const char * arg) __attribute__((alias("glshim_snd_seq_parse_address"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_poll_descriptors) && !defined(skip_index_snd_seq_poll_descriptors) int glshim_snd_seq_poll_descriptors(snd_seq_t * handle, struct pollfd * pfds, unsigned int space, short events) { @@ -16773,7 +16773,7 @@ int glshim_snd_seq_poll_descriptors(snd_seq_t * handle, struct pollfd * pfds, un syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_poll_descriptors(snd_seq_t * handle, struct pollfd * pfds, unsigned int space, short events) __attribute__((alias("glshim_snd_seq_poll_descriptors"))); +int snd_seq_poll_descriptors(snd_seq_t * handle, struct pollfd * pfds, unsigned int space, short events) __attribute__((alias("glshim_snd_seq_poll_descriptors"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_poll_descriptors_count) && !defined(skip_index_snd_seq_poll_descriptors_count) int glshim_snd_seq_poll_descriptors_count(snd_seq_t * handle, short events) { @@ -16785,7 +16785,7 @@ int glshim_snd_seq_poll_descriptors_count(snd_seq_t * handle, short events) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_poll_descriptors_count(snd_seq_t * handle, short events) __attribute__((alias("glshim_snd_seq_poll_descriptors_count"))); +int snd_seq_poll_descriptors_count(snd_seq_t * handle, short events) __attribute__((alias("glshim_snd_seq_poll_descriptors_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_poll_descriptors_revents) && !defined(skip_index_snd_seq_poll_descriptors_revents) int glshim_snd_seq_poll_descriptors_revents(snd_seq_t * seq, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) { @@ -16799,7 +16799,7 @@ int glshim_snd_seq_poll_descriptors_revents(snd_seq_t * seq, struct pollfd * pfd syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_poll_descriptors_revents(snd_seq_t * seq, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_seq_poll_descriptors_revents"))); +int snd_seq_poll_descriptors_revents(snd_seq_t * seq, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_seq_poll_descriptors_revents"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_copy) && !defined(skip_index_snd_seq_port_info_copy) void glshim_snd_seq_port_info_copy(snd_seq_port_info_t * dst, const snd_seq_port_info_t * src) { @@ -16809,7 +16809,7 @@ void glshim_snd_seq_port_info_copy(snd_seq_port_info_t * dst, const snd_seq_port packed_data.args.a2 = (snd_seq_port_info_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_copy(snd_seq_port_info_t * dst, const snd_seq_port_info_t * src) __attribute__((alias("glshim_snd_seq_port_info_copy"))); +void snd_seq_port_info_copy(snd_seq_port_info_t * dst, const snd_seq_port_info_t * src) __attribute__((alias("glshim_snd_seq_port_info_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_free) && !defined(skip_index_snd_seq_port_info_free) void glshim_snd_seq_port_info_free(snd_seq_port_info_t * ptr) { @@ -16818,7 +16818,7 @@ void glshim_snd_seq_port_info_free(snd_seq_port_info_t * ptr) { packed_data.args.a1 = (snd_seq_port_info_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_free(snd_seq_port_info_t * ptr) __attribute__((alias("glshim_snd_seq_port_info_free"))); +void snd_seq_port_info_free(snd_seq_port_info_t * ptr) __attribute__((alias("glshim_snd_seq_port_info_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_addr) && !defined(skip_index_snd_seq_port_info_get_addr) const snd_seq_addr_t * glshim_snd_seq_port_info_get_addr(const snd_seq_port_info_t * info) { @@ -16829,7 +16829,7 @@ const snd_seq_addr_t * glshim_snd_seq_port_info_get_addr(const snd_seq_port_info syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const snd_seq_addr_t * snd_seq_port_info_get_addr(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_addr"))); +const snd_seq_addr_t * snd_seq_port_info_get_addr(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_addr"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_capability) && !defined(skip_index_snd_seq_port_info_get_capability) unsigned int glshim_snd_seq_port_info_get_capability(const snd_seq_port_info_t * info) { @@ -16840,7 +16840,7 @@ unsigned int glshim_snd_seq_port_info_get_capability(const snd_seq_port_info_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_seq_port_info_get_capability(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_capability"))); +unsigned int snd_seq_port_info_get_capability(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_capability"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_client) && !defined(skip_index_snd_seq_port_info_get_client) int glshim_snd_seq_port_info_get_client(const snd_seq_port_info_t * info) { @@ -16851,7 +16851,7 @@ int glshim_snd_seq_port_info_get_client(const snd_seq_port_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_client(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_client"))); +int snd_seq_port_info_get_client(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_client"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_midi_channels) && !defined(skip_index_snd_seq_port_info_get_midi_channels) int glshim_snd_seq_port_info_get_midi_channels(const snd_seq_port_info_t * info) { @@ -16862,7 +16862,7 @@ int glshim_snd_seq_port_info_get_midi_channels(const snd_seq_port_info_t * info) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_midi_channels(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_midi_channels"))); +int snd_seq_port_info_get_midi_channels(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_midi_channels"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_midi_voices) && !defined(skip_index_snd_seq_port_info_get_midi_voices) int glshim_snd_seq_port_info_get_midi_voices(const snd_seq_port_info_t * info) { @@ -16873,7 +16873,7 @@ int glshim_snd_seq_port_info_get_midi_voices(const snd_seq_port_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_midi_voices(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_midi_voices"))); +int snd_seq_port_info_get_midi_voices(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_midi_voices"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_name) && !defined(skip_index_snd_seq_port_info_get_name) const char * glshim_snd_seq_port_info_get_name(const snd_seq_port_info_t * info) { @@ -16884,7 +16884,7 @@ const char * glshim_snd_seq_port_info_get_name(const snd_seq_port_info_t * info) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_seq_port_info_get_name(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_name"))); +const char * snd_seq_port_info_get_name(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_port) && !defined(skip_index_snd_seq_port_info_get_port) int glshim_snd_seq_port_info_get_port(const snd_seq_port_info_t * info) { @@ -16895,7 +16895,7 @@ int glshim_snd_seq_port_info_get_port(const snd_seq_port_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_port(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_port"))); +int snd_seq_port_info_get_port(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_port_specified) && !defined(skip_index_snd_seq_port_info_get_port_specified) int glshim_snd_seq_port_info_get_port_specified(const snd_seq_port_info_t * info) { @@ -16906,7 +16906,7 @@ int glshim_snd_seq_port_info_get_port_specified(const snd_seq_port_info_t * info syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_port_specified(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_port_specified"))); +int snd_seq_port_info_get_port_specified(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_port_specified"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_read_use) && !defined(skip_index_snd_seq_port_info_get_read_use) int glshim_snd_seq_port_info_get_read_use(const snd_seq_port_info_t * info) { @@ -16917,7 +16917,7 @@ int glshim_snd_seq_port_info_get_read_use(const snd_seq_port_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_read_use(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_read_use"))); +int snd_seq_port_info_get_read_use(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_read_use"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_synth_voices) && !defined(skip_index_snd_seq_port_info_get_synth_voices) int glshim_snd_seq_port_info_get_synth_voices(const snd_seq_port_info_t * info) { @@ -16928,7 +16928,7 @@ int glshim_snd_seq_port_info_get_synth_voices(const snd_seq_port_info_t * info) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_synth_voices(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_synth_voices"))); +int snd_seq_port_info_get_synth_voices(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_synth_voices"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_timestamp_queue) && !defined(skip_index_snd_seq_port_info_get_timestamp_queue) int glshim_snd_seq_port_info_get_timestamp_queue(const snd_seq_port_info_t * info) { @@ -16939,7 +16939,7 @@ int glshim_snd_seq_port_info_get_timestamp_queue(const snd_seq_port_info_t * inf syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_timestamp_queue(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_timestamp_queue"))); +int snd_seq_port_info_get_timestamp_queue(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_timestamp_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_timestamp_real) && !defined(skip_index_snd_seq_port_info_get_timestamp_real) int glshim_snd_seq_port_info_get_timestamp_real(const snd_seq_port_info_t * info) { @@ -16950,7 +16950,7 @@ int glshim_snd_seq_port_info_get_timestamp_real(const snd_seq_port_info_t * info syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_timestamp_real(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_timestamp_real"))); +int snd_seq_port_info_get_timestamp_real(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_timestamp_real"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_timestamping) && !defined(skip_index_snd_seq_port_info_get_timestamping) int glshim_snd_seq_port_info_get_timestamping(const snd_seq_port_info_t * info) { @@ -16961,7 +16961,7 @@ int glshim_snd_seq_port_info_get_timestamping(const snd_seq_port_info_t * info) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_timestamping(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_timestamping"))); +int snd_seq_port_info_get_timestamping(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_timestamping"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_type) && !defined(skip_index_snd_seq_port_info_get_type) unsigned int glshim_snd_seq_port_info_get_type(const snd_seq_port_info_t * info) { @@ -16972,7 +16972,7 @@ unsigned int glshim_snd_seq_port_info_get_type(const snd_seq_port_info_t * info) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_seq_port_info_get_type(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_type"))); +unsigned int snd_seq_port_info_get_type(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_get_write_use) && !defined(skip_index_snd_seq_port_info_get_write_use) int glshim_snd_seq_port_info_get_write_use(const snd_seq_port_info_t * info) { @@ -16983,7 +16983,7 @@ int glshim_snd_seq_port_info_get_write_use(const snd_seq_port_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_get_write_use(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_write_use"))); +int snd_seq_port_info_get_write_use(const snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_port_info_get_write_use"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_malloc) && !defined(skip_index_snd_seq_port_info_malloc) int glshim_snd_seq_port_info_malloc(snd_seq_port_info_t ** ptr) { @@ -16994,7 +16994,7 @@ int glshim_snd_seq_port_info_malloc(snd_seq_port_info_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_info_malloc(snd_seq_port_info_t ** ptr) __attribute__((alias("glshim_snd_seq_port_info_malloc"))); +int snd_seq_port_info_malloc(snd_seq_port_info_t ** ptr) __attribute__((alias("glshim_snd_seq_port_info_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_addr) && !defined(skip_index_snd_seq_port_info_set_addr) void glshim_snd_seq_port_info_set_addr(snd_seq_port_info_t * info, const snd_seq_addr_t * addr) { @@ -17004,7 +17004,7 @@ void glshim_snd_seq_port_info_set_addr(snd_seq_port_info_t * info, const snd_seq packed_data.args.a2 = (snd_seq_addr_t *)addr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_addr(snd_seq_port_info_t * info, const snd_seq_addr_t * addr) __attribute__((alias("glshim_snd_seq_port_info_set_addr"))); +void snd_seq_port_info_set_addr(snd_seq_port_info_t * info, const snd_seq_addr_t * addr) __attribute__((alias("glshim_snd_seq_port_info_set_addr"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_capability) && !defined(skip_index_snd_seq_port_info_set_capability) void glshim_snd_seq_port_info_set_capability(snd_seq_port_info_t * info, unsigned int capability) { @@ -17014,7 +17014,7 @@ void glshim_snd_seq_port_info_set_capability(snd_seq_port_info_t * info, unsigne packed_data.args.a2 = (unsigned int)capability; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_capability(snd_seq_port_info_t * info, unsigned int capability) __attribute__((alias("glshim_snd_seq_port_info_set_capability"))); +void snd_seq_port_info_set_capability(snd_seq_port_info_t * info, unsigned int capability) __attribute__((alias("glshim_snd_seq_port_info_set_capability"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_client) && !defined(skip_index_snd_seq_port_info_set_client) void glshim_snd_seq_port_info_set_client(snd_seq_port_info_t * info, int client) { @@ -17024,7 +17024,7 @@ void glshim_snd_seq_port_info_set_client(snd_seq_port_info_t * info, int client) packed_data.args.a2 = (int)client; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_client(snd_seq_port_info_t * info, int client) __attribute__((alias("glshim_snd_seq_port_info_set_client"))); +void snd_seq_port_info_set_client(snd_seq_port_info_t * info, int client) __attribute__((alias("glshim_snd_seq_port_info_set_client"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_midi_channels) && !defined(skip_index_snd_seq_port_info_set_midi_channels) void glshim_snd_seq_port_info_set_midi_channels(snd_seq_port_info_t * info, int channels) { @@ -17034,7 +17034,7 @@ void glshim_snd_seq_port_info_set_midi_channels(snd_seq_port_info_t * info, int packed_data.args.a2 = (int)channels; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_midi_channels(snd_seq_port_info_t * info, int channels) __attribute__((alias("glshim_snd_seq_port_info_set_midi_channels"))); +void snd_seq_port_info_set_midi_channels(snd_seq_port_info_t * info, int channels) __attribute__((alias("glshim_snd_seq_port_info_set_midi_channels"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_midi_voices) && !defined(skip_index_snd_seq_port_info_set_midi_voices) void glshim_snd_seq_port_info_set_midi_voices(snd_seq_port_info_t * info, int voices) { @@ -17044,7 +17044,7 @@ void glshim_snd_seq_port_info_set_midi_voices(snd_seq_port_info_t * info, int vo packed_data.args.a2 = (int)voices; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_midi_voices(snd_seq_port_info_t * info, int voices) __attribute__((alias("glshim_snd_seq_port_info_set_midi_voices"))); +void snd_seq_port_info_set_midi_voices(snd_seq_port_info_t * info, int voices) __attribute__((alias("glshim_snd_seq_port_info_set_midi_voices"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_name) && !defined(skip_index_snd_seq_port_info_set_name) void glshim_snd_seq_port_info_set_name(snd_seq_port_info_t * info, const char * name) { @@ -17054,7 +17054,7 @@ void glshim_snd_seq_port_info_set_name(snd_seq_port_info_t * info, const char * packed_data.args.a2 = (char *)name; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_name(snd_seq_port_info_t * info, const char * name) __attribute__((alias("glshim_snd_seq_port_info_set_name"))); +void snd_seq_port_info_set_name(snd_seq_port_info_t * info, const char * name) __attribute__((alias("glshim_snd_seq_port_info_set_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_port) && !defined(skip_index_snd_seq_port_info_set_port) void glshim_snd_seq_port_info_set_port(snd_seq_port_info_t * info, int port) { @@ -17064,7 +17064,7 @@ void glshim_snd_seq_port_info_set_port(snd_seq_port_info_t * info, int port) { packed_data.args.a2 = (int)port; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_port(snd_seq_port_info_t * info, int port) __attribute__((alias("glshim_snd_seq_port_info_set_port"))); +void snd_seq_port_info_set_port(snd_seq_port_info_t * info, int port) __attribute__((alias("glshim_snd_seq_port_info_set_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_port_specified) && !defined(skip_index_snd_seq_port_info_set_port_specified) void glshim_snd_seq_port_info_set_port_specified(snd_seq_port_info_t * info, int val) { @@ -17074,7 +17074,7 @@ void glshim_snd_seq_port_info_set_port_specified(snd_seq_port_info_t * info, int packed_data.args.a2 = (int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_port_specified(snd_seq_port_info_t * info, int val) __attribute__((alias("glshim_snd_seq_port_info_set_port_specified"))); +void snd_seq_port_info_set_port_specified(snd_seq_port_info_t * info, int val) __attribute__((alias("glshim_snd_seq_port_info_set_port_specified"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_synth_voices) && !defined(skip_index_snd_seq_port_info_set_synth_voices) void glshim_snd_seq_port_info_set_synth_voices(snd_seq_port_info_t * info, int voices) { @@ -17084,7 +17084,7 @@ void glshim_snd_seq_port_info_set_synth_voices(snd_seq_port_info_t * info, int v packed_data.args.a2 = (int)voices; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_synth_voices(snd_seq_port_info_t * info, int voices) __attribute__((alias("glshim_snd_seq_port_info_set_synth_voices"))); +void snd_seq_port_info_set_synth_voices(snd_seq_port_info_t * info, int voices) __attribute__((alias("glshim_snd_seq_port_info_set_synth_voices"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_timestamp_queue) && !defined(skip_index_snd_seq_port_info_set_timestamp_queue) void glshim_snd_seq_port_info_set_timestamp_queue(snd_seq_port_info_t * info, int queue) { @@ -17094,7 +17094,7 @@ void glshim_snd_seq_port_info_set_timestamp_queue(snd_seq_port_info_t * info, in packed_data.args.a2 = (int)queue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_timestamp_queue(snd_seq_port_info_t * info, int queue) __attribute__((alias("glshim_snd_seq_port_info_set_timestamp_queue"))); +void snd_seq_port_info_set_timestamp_queue(snd_seq_port_info_t * info, int queue) __attribute__((alias("glshim_snd_seq_port_info_set_timestamp_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_timestamp_real) && !defined(skip_index_snd_seq_port_info_set_timestamp_real) void glshim_snd_seq_port_info_set_timestamp_real(snd_seq_port_info_t * info, int realtime) { @@ -17104,7 +17104,7 @@ void glshim_snd_seq_port_info_set_timestamp_real(snd_seq_port_info_t * info, int packed_data.args.a2 = (int)realtime; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_timestamp_real(snd_seq_port_info_t * info, int realtime) __attribute__((alias("glshim_snd_seq_port_info_set_timestamp_real"))); +void snd_seq_port_info_set_timestamp_real(snd_seq_port_info_t * info, int realtime) __attribute__((alias("glshim_snd_seq_port_info_set_timestamp_real"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_timestamping) && !defined(skip_index_snd_seq_port_info_set_timestamping) void glshim_snd_seq_port_info_set_timestamping(snd_seq_port_info_t * info, int enable) { @@ -17114,7 +17114,7 @@ void glshim_snd_seq_port_info_set_timestamping(snd_seq_port_info_t * info, int e packed_data.args.a2 = (int)enable; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_timestamping(snd_seq_port_info_t * info, int enable) __attribute__((alias("glshim_snd_seq_port_info_set_timestamping"))); +void snd_seq_port_info_set_timestamping(snd_seq_port_info_t * info, int enable) __attribute__((alias("glshim_snd_seq_port_info_set_timestamping"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_set_type) && !defined(skip_index_snd_seq_port_info_set_type) void glshim_snd_seq_port_info_set_type(snd_seq_port_info_t * info, unsigned int type) { @@ -17124,7 +17124,7 @@ void glshim_snd_seq_port_info_set_type(snd_seq_port_info_t * info, unsigned int packed_data.args.a2 = (unsigned int)type; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_info_set_type(snd_seq_port_info_t * info, unsigned int type) __attribute__((alias("glshim_snd_seq_port_info_set_type"))); +void snd_seq_port_info_set_type(snd_seq_port_info_t * info, unsigned int type) __attribute__((alias("glshim_snd_seq_port_info_set_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_info_sizeof) && !defined(skip_index_snd_seq_port_info_sizeof) size_t glshim_snd_seq_port_info_sizeof() { @@ -17134,7 +17134,7 @@ size_t glshim_snd_seq_port_info_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_port_info_sizeof() __attribute__((alias("glshim_snd_seq_port_info_sizeof"))); +size_t snd_seq_port_info_sizeof() __attribute__((alias("glshim_snd_seq_port_info_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_copy) && !defined(skip_index_snd_seq_port_subscribe_copy) void glshim_snd_seq_port_subscribe_copy(snd_seq_port_subscribe_t * dst, const snd_seq_port_subscribe_t * src) { @@ -17144,7 +17144,7 @@ void glshim_snd_seq_port_subscribe_copy(snd_seq_port_subscribe_t * dst, const sn packed_data.args.a2 = (snd_seq_port_subscribe_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_subscribe_copy(snd_seq_port_subscribe_t * dst, const snd_seq_port_subscribe_t * src) __attribute__((alias("glshim_snd_seq_port_subscribe_copy"))); +void snd_seq_port_subscribe_copy(snd_seq_port_subscribe_t * dst, const snd_seq_port_subscribe_t * src) __attribute__((alias("glshim_snd_seq_port_subscribe_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_free) && !defined(skip_index_snd_seq_port_subscribe_free) void glshim_snd_seq_port_subscribe_free(snd_seq_port_subscribe_t * ptr) { @@ -17153,7 +17153,7 @@ void glshim_snd_seq_port_subscribe_free(snd_seq_port_subscribe_t * ptr) { packed_data.args.a1 = (snd_seq_port_subscribe_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_subscribe_free(snd_seq_port_subscribe_t * ptr) __attribute__((alias("glshim_snd_seq_port_subscribe_free"))); +void snd_seq_port_subscribe_free(snd_seq_port_subscribe_t * ptr) __attribute__((alias("glshim_snd_seq_port_subscribe_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_get_dest) && !defined(skip_index_snd_seq_port_subscribe_get_dest) const snd_seq_addr_t * glshim_snd_seq_port_subscribe_get_dest(const snd_seq_port_subscribe_t * info) { @@ -17164,7 +17164,7 @@ const snd_seq_addr_t * glshim_snd_seq_port_subscribe_get_dest(const snd_seq_port syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const snd_seq_addr_t * snd_seq_port_subscribe_get_dest(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_dest"))); +const snd_seq_addr_t * snd_seq_port_subscribe_get_dest(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_dest"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_get_exclusive) && !defined(skip_index_snd_seq_port_subscribe_get_exclusive) int glshim_snd_seq_port_subscribe_get_exclusive(const snd_seq_port_subscribe_t * info) { @@ -17175,7 +17175,7 @@ int glshim_snd_seq_port_subscribe_get_exclusive(const snd_seq_port_subscribe_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_subscribe_get_exclusive(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_exclusive"))); +int snd_seq_port_subscribe_get_exclusive(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_exclusive"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_get_queue) && !defined(skip_index_snd_seq_port_subscribe_get_queue) int glshim_snd_seq_port_subscribe_get_queue(const snd_seq_port_subscribe_t * info) { @@ -17186,7 +17186,7 @@ int glshim_snd_seq_port_subscribe_get_queue(const snd_seq_port_subscribe_t * inf syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_subscribe_get_queue(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_queue"))); +int snd_seq_port_subscribe_get_queue(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_get_sender) && !defined(skip_index_snd_seq_port_subscribe_get_sender) const snd_seq_addr_t * glshim_snd_seq_port_subscribe_get_sender(const snd_seq_port_subscribe_t * info) { @@ -17197,7 +17197,7 @@ const snd_seq_addr_t * glshim_snd_seq_port_subscribe_get_sender(const snd_seq_po syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const snd_seq_addr_t * snd_seq_port_subscribe_get_sender(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_sender"))); +const snd_seq_addr_t * snd_seq_port_subscribe_get_sender(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_sender"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_get_time_real) && !defined(skip_index_snd_seq_port_subscribe_get_time_real) int glshim_snd_seq_port_subscribe_get_time_real(const snd_seq_port_subscribe_t * info) { @@ -17208,7 +17208,7 @@ int glshim_snd_seq_port_subscribe_get_time_real(const snd_seq_port_subscribe_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_subscribe_get_time_real(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_time_real"))); +int snd_seq_port_subscribe_get_time_real(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_time_real"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_get_time_update) && !defined(skip_index_snd_seq_port_subscribe_get_time_update) int glshim_snd_seq_port_subscribe_get_time_update(const snd_seq_port_subscribe_t * info) { @@ -17219,7 +17219,7 @@ int glshim_snd_seq_port_subscribe_get_time_update(const snd_seq_port_subscribe_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_subscribe_get_time_update(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_time_update"))); +int snd_seq_port_subscribe_get_time_update(const snd_seq_port_subscribe_t * info) __attribute__((alias("glshim_snd_seq_port_subscribe_get_time_update"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_malloc) && !defined(skip_index_snd_seq_port_subscribe_malloc) int glshim_snd_seq_port_subscribe_malloc(snd_seq_port_subscribe_t ** ptr) { @@ -17230,7 +17230,7 @@ int glshim_snd_seq_port_subscribe_malloc(snd_seq_port_subscribe_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_port_subscribe_malloc(snd_seq_port_subscribe_t ** ptr) __attribute__((alias("glshim_snd_seq_port_subscribe_malloc"))); +int snd_seq_port_subscribe_malloc(snd_seq_port_subscribe_t ** ptr) __attribute__((alias("glshim_snd_seq_port_subscribe_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_set_dest) && !defined(skip_index_snd_seq_port_subscribe_set_dest) void glshim_snd_seq_port_subscribe_set_dest(snd_seq_port_subscribe_t * info, const snd_seq_addr_t * addr) { @@ -17240,7 +17240,7 @@ void glshim_snd_seq_port_subscribe_set_dest(snd_seq_port_subscribe_t * info, con packed_data.args.a2 = (snd_seq_addr_t *)addr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_subscribe_set_dest(snd_seq_port_subscribe_t * info, const snd_seq_addr_t * addr) __attribute__((alias("glshim_snd_seq_port_subscribe_set_dest"))); +void snd_seq_port_subscribe_set_dest(snd_seq_port_subscribe_t * info, const snd_seq_addr_t * addr) __attribute__((alias("glshim_snd_seq_port_subscribe_set_dest"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_set_exclusive) && !defined(skip_index_snd_seq_port_subscribe_set_exclusive) void glshim_snd_seq_port_subscribe_set_exclusive(snd_seq_port_subscribe_t * info, int val) { @@ -17250,7 +17250,7 @@ void glshim_snd_seq_port_subscribe_set_exclusive(snd_seq_port_subscribe_t * info packed_data.args.a2 = (int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_subscribe_set_exclusive(snd_seq_port_subscribe_t * info, int val) __attribute__((alias("glshim_snd_seq_port_subscribe_set_exclusive"))); +void snd_seq_port_subscribe_set_exclusive(snd_seq_port_subscribe_t * info, int val) __attribute__((alias("glshim_snd_seq_port_subscribe_set_exclusive"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_set_queue) && !defined(skip_index_snd_seq_port_subscribe_set_queue) void glshim_snd_seq_port_subscribe_set_queue(snd_seq_port_subscribe_t * info, int q) { @@ -17260,7 +17260,7 @@ void glshim_snd_seq_port_subscribe_set_queue(snd_seq_port_subscribe_t * info, in packed_data.args.a2 = (int)q; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_subscribe_set_queue(snd_seq_port_subscribe_t * info, int q) __attribute__((alias("glshim_snd_seq_port_subscribe_set_queue"))); +void snd_seq_port_subscribe_set_queue(snd_seq_port_subscribe_t * info, int q) __attribute__((alias("glshim_snd_seq_port_subscribe_set_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_set_sender) && !defined(skip_index_snd_seq_port_subscribe_set_sender) void glshim_snd_seq_port_subscribe_set_sender(snd_seq_port_subscribe_t * info, const snd_seq_addr_t * addr) { @@ -17270,7 +17270,7 @@ void glshim_snd_seq_port_subscribe_set_sender(snd_seq_port_subscribe_t * info, c packed_data.args.a2 = (snd_seq_addr_t *)addr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_subscribe_set_sender(snd_seq_port_subscribe_t * info, const snd_seq_addr_t * addr) __attribute__((alias("glshim_snd_seq_port_subscribe_set_sender"))); +void snd_seq_port_subscribe_set_sender(snd_seq_port_subscribe_t * info, const snd_seq_addr_t * addr) __attribute__((alias("glshim_snd_seq_port_subscribe_set_sender"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_set_time_real) && !defined(skip_index_snd_seq_port_subscribe_set_time_real) void glshim_snd_seq_port_subscribe_set_time_real(snd_seq_port_subscribe_t * info, int val) { @@ -17280,7 +17280,7 @@ void glshim_snd_seq_port_subscribe_set_time_real(snd_seq_port_subscribe_t * info packed_data.args.a2 = (int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_subscribe_set_time_real(snd_seq_port_subscribe_t * info, int val) __attribute__((alias("glshim_snd_seq_port_subscribe_set_time_real"))); +void snd_seq_port_subscribe_set_time_real(snd_seq_port_subscribe_t * info, int val) __attribute__((alias("glshim_snd_seq_port_subscribe_set_time_real"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_set_time_update) && !defined(skip_index_snd_seq_port_subscribe_set_time_update) void glshim_snd_seq_port_subscribe_set_time_update(snd_seq_port_subscribe_t * info, int val) { @@ -17290,7 +17290,7 @@ void glshim_snd_seq_port_subscribe_set_time_update(snd_seq_port_subscribe_t * in packed_data.args.a2 = (int)val; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_port_subscribe_set_time_update(snd_seq_port_subscribe_t * info, int val) __attribute__((alias("glshim_snd_seq_port_subscribe_set_time_update"))); +void snd_seq_port_subscribe_set_time_update(snd_seq_port_subscribe_t * info, int val) __attribute__((alias("glshim_snd_seq_port_subscribe_set_time_update"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_port_subscribe_sizeof) && !defined(skip_index_snd_seq_port_subscribe_sizeof) size_t glshim_snd_seq_port_subscribe_sizeof() { @@ -17300,7 +17300,7 @@ size_t glshim_snd_seq_port_subscribe_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_port_subscribe_sizeof() __attribute__((alias("glshim_snd_seq_port_subscribe_sizeof"))); +size_t snd_seq_port_subscribe_sizeof() __attribute__((alias("glshim_snd_seq_port_subscribe_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_named_queue) && !defined(skip_index_snd_seq_query_named_queue) int glshim_snd_seq_query_named_queue(snd_seq_t * seq, const char * name) { @@ -17312,7 +17312,7 @@ int glshim_snd_seq_query_named_queue(snd_seq_t * seq, const char * name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_named_queue(snd_seq_t * seq, const char * name) __attribute__((alias("glshim_snd_seq_query_named_queue"))); +int snd_seq_query_named_queue(snd_seq_t * seq, const char * name) __attribute__((alias("glshim_snd_seq_query_named_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_next_client) && !defined(skip_index_snd_seq_query_next_client) int glshim_snd_seq_query_next_client(snd_seq_t * handle, snd_seq_client_info_t * info) { @@ -17324,7 +17324,7 @@ int glshim_snd_seq_query_next_client(snd_seq_t * handle, snd_seq_client_info_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_next_client(snd_seq_t * handle, snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_query_next_client"))); +int snd_seq_query_next_client(snd_seq_t * handle, snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_query_next_client"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_next_port) && !defined(skip_index_snd_seq_query_next_port) int glshim_snd_seq_query_next_port(snd_seq_t * handle, snd_seq_port_info_t * info) { @@ -17336,7 +17336,7 @@ int glshim_snd_seq_query_next_port(snd_seq_t * handle, snd_seq_port_info_t * inf syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_next_port(snd_seq_t * handle, snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_query_next_port"))); +int snd_seq_query_next_port(snd_seq_t * handle, snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_query_next_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_port_subscribers) && !defined(skip_index_snd_seq_query_port_subscribers) int glshim_snd_seq_query_port_subscribers(snd_seq_t * seq, snd_seq_query_subscribe_t * subs) { @@ -17348,7 +17348,7 @@ int glshim_snd_seq_query_port_subscribers(snd_seq_t * seq, snd_seq_query_subscri syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_port_subscribers(snd_seq_t * seq, snd_seq_query_subscribe_t * subs) __attribute__((alias("glshim_snd_seq_query_port_subscribers"))); +int snd_seq_query_port_subscribers(snd_seq_t * seq, snd_seq_query_subscribe_t * subs) __attribute__((alias("glshim_snd_seq_query_port_subscribers"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_copy) && !defined(skip_index_snd_seq_query_subscribe_copy) void glshim_snd_seq_query_subscribe_copy(snd_seq_query_subscribe_t * dst, const snd_seq_query_subscribe_t * src) { @@ -17358,7 +17358,7 @@ void glshim_snd_seq_query_subscribe_copy(snd_seq_query_subscribe_t * dst, const packed_data.args.a2 = (snd_seq_query_subscribe_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_query_subscribe_copy(snd_seq_query_subscribe_t * dst, const snd_seq_query_subscribe_t * src) __attribute__((alias("glshim_snd_seq_query_subscribe_copy"))); +void snd_seq_query_subscribe_copy(snd_seq_query_subscribe_t * dst, const snd_seq_query_subscribe_t * src) __attribute__((alias("glshim_snd_seq_query_subscribe_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_free) && !defined(skip_index_snd_seq_query_subscribe_free) void glshim_snd_seq_query_subscribe_free(snd_seq_query_subscribe_t * ptr) { @@ -17367,7 +17367,7 @@ void glshim_snd_seq_query_subscribe_free(snd_seq_query_subscribe_t * ptr) { packed_data.args.a1 = (snd_seq_query_subscribe_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_query_subscribe_free(snd_seq_query_subscribe_t * ptr) __attribute__((alias("glshim_snd_seq_query_subscribe_free"))); +void snd_seq_query_subscribe_free(snd_seq_query_subscribe_t * ptr) __attribute__((alias("glshim_snd_seq_query_subscribe_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_addr) && !defined(skip_index_snd_seq_query_subscribe_get_addr) const snd_seq_addr_t * glshim_snd_seq_query_subscribe_get_addr(const snd_seq_query_subscribe_t * info) { @@ -17378,7 +17378,7 @@ const snd_seq_addr_t * glshim_snd_seq_query_subscribe_get_addr(const snd_seq_que syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const snd_seq_addr_t * snd_seq_query_subscribe_get_addr(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_addr"))); +const snd_seq_addr_t * snd_seq_query_subscribe_get_addr(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_addr"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_client) && !defined(skip_index_snd_seq_query_subscribe_get_client) int glshim_snd_seq_query_subscribe_get_client(const snd_seq_query_subscribe_t * info) { @@ -17389,7 +17389,7 @@ int glshim_snd_seq_query_subscribe_get_client(const snd_seq_query_subscribe_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_subscribe_get_client(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_client"))); +int snd_seq_query_subscribe_get_client(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_client"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_exclusive) && !defined(skip_index_snd_seq_query_subscribe_get_exclusive) int glshim_snd_seq_query_subscribe_get_exclusive(const snd_seq_query_subscribe_t * info) { @@ -17400,7 +17400,7 @@ int glshim_snd_seq_query_subscribe_get_exclusive(const snd_seq_query_subscribe_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_subscribe_get_exclusive(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_exclusive"))); +int snd_seq_query_subscribe_get_exclusive(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_exclusive"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_index) && !defined(skip_index_snd_seq_query_subscribe_get_index) int glshim_snd_seq_query_subscribe_get_index(const snd_seq_query_subscribe_t * info) { @@ -17411,7 +17411,7 @@ int glshim_snd_seq_query_subscribe_get_index(const snd_seq_query_subscribe_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_subscribe_get_index(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_index"))); +int snd_seq_query_subscribe_get_index(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_num_subs) && !defined(skip_index_snd_seq_query_subscribe_get_num_subs) int glshim_snd_seq_query_subscribe_get_num_subs(const snd_seq_query_subscribe_t * info) { @@ -17422,7 +17422,7 @@ int glshim_snd_seq_query_subscribe_get_num_subs(const snd_seq_query_subscribe_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_subscribe_get_num_subs(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_num_subs"))); +int snd_seq_query_subscribe_get_num_subs(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_num_subs"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_port) && !defined(skip_index_snd_seq_query_subscribe_get_port) int glshim_snd_seq_query_subscribe_get_port(const snd_seq_query_subscribe_t * info) { @@ -17433,7 +17433,7 @@ int glshim_snd_seq_query_subscribe_get_port(const snd_seq_query_subscribe_t * in syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_subscribe_get_port(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_port"))); +int snd_seq_query_subscribe_get_port(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_queue) && !defined(skip_index_snd_seq_query_subscribe_get_queue) int glshim_snd_seq_query_subscribe_get_queue(const snd_seq_query_subscribe_t * info) { @@ -17444,7 +17444,7 @@ int glshim_snd_seq_query_subscribe_get_queue(const snd_seq_query_subscribe_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_subscribe_get_queue(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_queue"))); +int snd_seq_query_subscribe_get_queue(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_root) && !defined(skip_index_snd_seq_query_subscribe_get_root) const snd_seq_addr_t * glshim_snd_seq_query_subscribe_get_root(const snd_seq_query_subscribe_t * info) { @@ -17455,7 +17455,7 @@ const snd_seq_addr_t * glshim_snd_seq_query_subscribe_get_root(const snd_seq_que syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const snd_seq_addr_t * snd_seq_query_subscribe_get_root(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_root"))); +const snd_seq_addr_t * snd_seq_query_subscribe_get_root(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_root"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_time_real) && !defined(skip_index_snd_seq_query_subscribe_get_time_real) int glshim_snd_seq_query_subscribe_get_time_real(const snd_seq_query_subscribe_t * info) { @@ -17466,7 +17466,7 @@ int glshim_snd_seq_query_subscribe_get_time_real(const snd_seq_query_subscribe_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_subscribe_get_time_real(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_time_real"))); +int snd_seq_query_subscribe_get_time_real(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_time_real"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_time_update) && !defined(skip_index_snd_seq_query_subscribe_get_time_update) int glshim_snd_seq_query_subscribe_get_time_update(const snd_seq_query_subscribe_t * info) { @@ -17477,7 +17477,7 @@ int glshim_snd_seq_query_subscribe_get_time_update(const snd_seq_query_subscribe syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_subscribe_get_time_update(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_time_update"))); +int snd_seq_query_subscribe_get_time_update(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_time_update"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_get_type) && !defined(skip_index_snd_seq_query_subscribe_get_type) snd_seq_query_subs_type_t glshim_snd_seq_query_subscribe_get_type(const snd_seq_query_subscribe_t * info) { @@ -17488,7 +17488,7 @@ snd_seq_query_subs_type_t glshim_snd_seq_query_subscribe_get_type(const snd_seq_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_seq_query_subs_type_t snd_seq_query_subscribe_get_type(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_type"))); +snd_seq_query_subs_type_t snd_seq_query_subscribe_get_type(const snd_seq_query_subscribe_t * info) __attribute__((alias("glshim_snd_seq_query_subscribe_get_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_malloc) && !defined(skip_index_snd_seq_query_subscribe_malloc) int glshim_snd_seq_query_subscribe_malloc(snd_seq_query_subscribe_t ** ptr) { @@ -17499,7 +17499,7 @@ int glshim_snd_seq_query_subscribe_malloc(snd_seq_query_subscribe_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_query_subscribe_malloc(snd_seq_query_subscribe_t ** ptr) __attribute__((alias("glshim_snd_seq_query_subscribe_malloc"))); +int snd_seq_query_subscribe_malloc(snd_seq_query_subscribe_t ** ptr) __attribute__((alias("glshim_snd_seq_query_subscribe_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_set_client) && !defined(skip_index_snd_seq_query_subscribe_set_client) void glshim_snd_seq_query_subscribe_set_client(snd_seq_query_subscribe_t * info, int client) { @@ -17509,7 +17509,7 @@ void glshim_snd_seq_query_subscribe_set_client(snd_seq_query_subscribe_t * info, packed_data.args.a2 = (int)client; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_query_subscribe_set_client(snd_seq_query_subscribe_t * info, int client) __attribute__((alias("glshim_snd_seq_query_subscribe_set_client"))); +void snd_seq_query_subscribe_set_client(snd_seq_query_subscribe_t * info, int client) __attribute__((alias("glshim_snd_seq_query_subscribe_set_client"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_set_index) && !defined(skip_index_snd_seq_query_subscribe_set_index) void glshim_snd_seq_query_subscribe_set_index(snd_seq_query_subscribe_t * info, int _index) { @@ -17519,7 +17519,7 @@ void glshim_snd_seq_query_subscribe_set_index(snd_seq_query_subscribe_t * info, packed_data.args.a2 = (int)_index; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_query_subscribe_set_index(snd_seq_query_subscribe_t * info, int _index) __attribute__((alias("glshim_snd_seq_query_subscribe_set_index"))); +void snd_seq_query_subscribe_set_index(snd_seq_query_subscribe_t * info, int _index) __attribute__((alias("glshim_snd_seq_query_subscribe_set_index"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_set_port) && !defined(skip_index_snd_seq_query_subscribe_set_port) void glshim_snd_seq_query_subscribe_set_port(snd_seq_query_subscribe_t * info, int port) { @@ -17529,7 +17529,7 @@ void glshim_snd_seq_query_subscribe_set_port(snd_seq_query_subscribe_t * info, i packed_data.args.a2 = (int)port; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_query_subscribe_set_port(snd_seq_query_subscribe_t * info, int port) __attribute__((alias("glshim_snd_seq_query_subscribe_set_port"))); +void snd_seq_query_subscribe_set_port(snd_seq_query_subscribe_t * info, int port) __attribute__((alias("glshim_snd_seq_query_subscribe_set_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_set_root) && !defined(skip_index_snd_seq_query_subscribe_set_root) void glshim_snd_seq_query_subscribe_set_root(snd_seq_query_subscribe_t * info, const snd_seq_addr_t * addr) { @@ -17539,7 +17539,7 @@ void glshim_snd_seq_query_subscribe_set_root(snd_seq_query_subscribe_t * info, c packed_data.args.a2 = (snd_seq_addr_t *)addr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_query_subscribe_set_root(snd_seq_query_subscribe_t * info, const snd_seq_addr_t * addr) __attribute__((alias("glshim_snd_seq_query_subscribe_set_root"))); +void snd_seq_query_subscribe_set_root(snd_seq_query_subscribe_t * info, const snd_seq_addr_t * addr) __attribute__((alias("glshim_snd_seq_query_subscribe_set_root"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_set_type) && !defined(skip_index_snd_seq_query_subscribe_set_type) void glshim_snd_seq_query_subscribe_set_type(snd_seq_query_subscribe_t * info, snd_seq_query_subs_type_t type) { @@ -17549,7 +17549,7 @@ void glshim_snd_seq_query_subscribe_set_type(snd_seq_query_subscribe_t * info, s packed_data.args.a2 = (snd_seq_query_subs_type_t)type; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_query_subscribe_set_type(snd_seq_query_subscribe_t * info, snd_seq_query_subs_type_t type) __attribute__((alias("glshim_snd_seq_query_subscribe_set_type"))); +void snd_seq_query_subscribe_set_type(snd_seq_query_subscribe_t * info, snd_seq_query_subs_type_t type) __attribute__((alias("glshim_snd_seq_query_subscribe_set_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_query_subscribe_sizeof) && !defined(skip_index_snd_seq_query_subscribe_sizeof) size_t glshim_snd_seq_query_subscribe_sizeof() { @@ -17559,7 +17559,7 @@ size_t glshim_snd_seq_query_subscribe_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_query_subscribe_sizeof() __attribute__((alias("glshim_snd_seq_query_subscribe_sizeof"))); +size_t snd_seq_query_subscribe_sizeof() __attribute__((alias("glshim_snd_seq_query_subscribe_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_copy) && !defined(skip_index_snd_seq_queue_info_copy) void glshim_snd_seq_queue_info_copy(snd_seq_queue_info_t * dst, const snd_seq_queue_info_t * src) { @@ -17569,7 +17569,7 @@ void glshim_snd_seq_queue_info_copy(snd_seq_queue_info_t * dst, const snd_seq_qu packed_data.args.a2 = (snd_seq_queue_info_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_info_copy(snd_seq_queue_info_t * dst, const snd_seq_queue_info_t * src) __attribute__((alias("glshim_snd_seq_queue_info_copy"))); +void snd_seq_queue_info_copy(snd_seq_queue_info_t * dst, const snd_seq_queue_info_t * src) __attribute__((alias("glshim_snd_seq_queue_info_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_free) && !defined(skip_index_snd_seq_queue_info_free) void glshim_snd_seq_queue_info_free(snd_seq_queue_info_t * ptr) { @@ -17578,7 +17578,7 @@ void glshim_snd_seq_queue_info_free(snd_seq_queue_info_t * ptr) { packed_data.args.a1 = (snd_seq_queue_info_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_info_free(snd_seq_queue_info_t * ptr) __attribute__((alias("glshim_snd_seq_queue_info_free"))); +void snd_seq_queue_info_free(snd_seq_queue_info_t * ptr) __attribute__((alias("glshim_snd_seq_queue_info_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_get_flags) && !defined(skip_index_snd_seq_queue_info_get_flags) unsigned int glshim_snd_seq_queue_info_get_flags(const snd_seq_queue_info_t * info) { @@ -17589,7 +17589,7 @@ unsigned int glshim_snd_seq_queue_info_get_flags(const snd_seq_queue_info_t * in syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_seq_queue_info_get_flags(const snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_queue_info_get_flags"))); +unsigned int snd_seq_queue_info_get_flags(const snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_queue_info_get_flags"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_get_locked) && !defined(skip_index_snd_seq_queue_info_get_locked) int glshim_snd_seq_queue_info_get_locked(const snd_seq_queue_info_t * info) { @@ -17600,7 +17600,7 @@ int glshim_snd_seq_queue_info_get_locked(const snd_seq_queue_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_info_get_locked(const snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_queue_info_get_locked"))); +int snd_seq_queue_info_get_locked(const snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_queue_info_get_locked"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_get_name) && !defined(skip_index_snd_seq_queue_info_get_name) const char * glshim_snd_seq_queue_info_get_name(const snd_seq_queue_info_t * info) { @@ -17611,7 +17611,7 @@ const char * glshim_snd_seq_queue_info_get_name(const snd_seq_queue_info_t * inf syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_seq_queue_info_get_name(const snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_queue_info_get_name"))); +const char * snd_seq_queue_info_get_name(const snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_queue_info_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_get_owner) && !defined(skip_index_snd_seq_queue_info_get_owner) int glshim_snd_seq_queue_info_get_owner(const snd_seq_queue_info_t * info) { @@ -17622,7 +17622,7 @@ int glshim_snd_seq_queue_info_get_owner(const snd_seq_queue_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_info_get_owner(const snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_queue_info_get_owner"))); +int snd_seq_queue_info_get_owner(const snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_queue_info_get_owner"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_get_queue) && !defined(skip_index_snd_seq_queue_info_get_queue) int glshim_snd_seq_queue_info_get_queue(const snd_seq_queue_info_t * info) { @@ -17633,7 +17633,7 @@ int glshim_snd_seq_queue_info_get_queue(const snd_seq_queue_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_info_get_queue(const snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_queue_info_get_queue"))); +int snd_seq_queue_info_get_queue(const snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_queue_info_get_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_malloc) && !defined(skip_index_snd_seq_queue_info_malloc) int glshim_snd_seq_queue_info_malloc(snd_seq_queue_info_t ** ptr) { @@ -17644,7 +17644,7 @@ int glshim_snd_seq_queue_info_malloc(snd_seq_queue_info_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_info_malloc(snd_seq_queue_info_t ** ptr) __attribute__((alias("glshim_snd_seq_queue_info_malloc"))); +int snd_seq_queue_info_malloc(snd_seq_queue_info_t ** ptr) __attribute__((alias("glshim_snd_seq_queue_info_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_set_flags) && !defined(skip_index_snd_seq_queue_info_set_flags) void glshim_snd_seq_queue_info_set_flags(snd_seq_queue_info_t * info, unsigned int flags) { @@ -17654,7 +17654,7 @@ void glshim_snd_seq_queue_info_set_flags(snd_seq_queue_info_t * info, unsigned i packed_data.args.a2 = (unsigned int)flags; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_info_set_flags(snd_seq_queue_info_t * info, unsigned int flags) __attribute__((alias("glshim_snd_seq_queue_info_set_flags"))); +void snd_seq_queue_info_set_flags(snd_seq_queue_info_t * info, unsigned int flags) __attribute__((alias("glshim_snd_seq_queue_info_set_flags"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_set_locked) && !defined(skip_index_snd_seq_queue_info_set_locked) void glshim_snd_seq_queue_info_set_locked(snd_seq_queue_info_t * info, int locked) { @@ -17664,7 +17664,7 @@ void glshim_snd_seq_queue_info_set_locked(snd_seq_queue_info_t * info, int locke packed_data.args.a2 = (int)locked; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_info_set_locked(snd_seq_queue_info_t * info, int locked) __attribute__((alias("glshim_snd_seq_queue_info_set_locked"))); +void snd_seq_queue_info_set_locked(snd_seq_queue_info_t * info, int locked) __attribute__((alias("glshim_snd_seq_queue_info_set_locked"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_set_name) && !defined(skip_index_snd_seq_queue_info_set_name) void glshim_snd_seq_queue_info_set_name(snd_seq_queue_info_t * info, const char * name) { @@ -17674,7 +17674,7 @@ void glshim_snd_seq_queue_info_set_name(snd_seq_queue_info_t * info, const char packed_data.args.a2 = (char *)name; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_info_set_name(snd_seq_queue_info_t * info, const char * name) __attribute__((alias("glshim_snd_seq_queue_info_set_name"))); +void snd_seq_queue_info_set_name(snd_seq_queue_info_t * info, const char * name) __attribute__((alias("glshim_snd_seq_queue_info_set_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_set_owner) && !defined(skip_index_snd_seq_queue_info_set_owner) void glshim_snd_seq_queue_info_set_owner(snd_seq_queue_info_t * info, int owner) { @@ -17684,7 +17684,7 @@ void glshim_snd_seq_queue_info_set_owner(snd_seq_queue_info_t * info, int owner) packed_data.args.a2 = (int)owner; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_info_set_owner(snd_seq_queue_info_t * info, int owner) __attribute__((alias("glshim_snd_seq_queue_info_set_owner"))); +void snd_seq_queue_info_set_owner(snd_seq_queue_info_t * info, int owner) __attribute__((alias("glshim_snd_seq_queue_info_set_owner"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_info_sizeof) && !defined(skip_index_snd_seq_queue_info_sizeof) size_t glshim_snd_seq_queue_info_sizeof() { @@ -17694,7 +17694,7 @@ size_t glshim_snd_seq_queue_info_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_queue_info_sizeof() __attribute__((alias("glshim_snd_seq_queue_info_sizeof"))); +size_t snd_seq_queue_info_sizeof() __attribute__((alias("glshim_snd_seq_queue_info_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_status_copy) && !defined(skip_index_snd_seq_queue_status_copy) void glshim_snd_seq_queue_status_copy(snd_seq_queue_status_t * dst, const snd_seq_queue_status_t * src) { @@ -17704,7 +17704,7 @@ void glshim_snd_seq_queue_status_copy(snd_seq_queue_status_t * dst, const snd_se packed_data.args.a2 = (snd_seq_queue_status_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_status_copy(snd_seq_queue_status_t * dst, const snd_seq_queue_status_t * src) __attribute__((alias("glshim_snd_seq_queue_status_copy"))); +void snd_seq_queue_status_copy(snd_seq_queue_status_t * dst, const snd_seq_queue_status_t * src) __attribute__((alias("glshim_snd_seq_queue_status_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_status_free) && !defined(skip_index_snd_seq_queue_status_free) void glshim_snd_seq_queue_status_free(snd_seq_queue_status_t * ptr) { @@ -17713,7 +17713,7 @@ void glshim_snd_seq_queue_status_free(snd_seq_queue_status_t * ptr) { packed_data.args.a1 = (snd_seq_queue_status_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_status_free(snd_seq_queue_status_t * ptr) __attribute__((alias("glshim_snd_seq_queue_status_free"))); +void snd_seq_queue_status_free(snd_seq_queue_status_t * ptr) __attribute__((alias("glshim_snd_seq_queue_status_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_status_get_events) && !defined(skip_index_snd_seq_queue_status_get_events) int glshim_snd_seq_queue_status_get_events(const snd_seq_queue_status_t * info) { @@ -17724,7 +17724,7 @@ int glshim_snd_seq_queue_status_get_events(const snd_seq_queue_status_t * info) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_status_get_events(const snd_seq_queue_status_t * info) __attribute__((alias("glshim_snd_seq_queue_status_get_events"))); +int snd_seq_queue_status_get_events(const snd_seq_queue_status_t * info) __attribute__((alias("glshim_snd_seq_queue_status_get_events"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_status_get_queue) && !defined(skip_index_snd_seq_queue_status_get_queue) int glshim_snd_seq_queue_status_get_queue(const snd_seq_queue_status_t * info) { @@ -17735,7 +17735,7 @@ int glshim_snd_seq_queue_status_get_queue(const snd_seq_queue_status_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_status_get_queue(const snd_seq_queue_status_t * info) __attribute__((alias("glshim_snd_seq_queue_status_get_queue"))); +int snd_seq_queue_status_get_queue(const snd_seq_queue_status_t * info) __attribute__((alias("glshim_snd_seq_queue_status_get_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_status_get_real_time) && !defined(skip_index_snd_seq_queue_status_get_real_time) const snd_seq_real_time_t * glshim_snd_seq_queue_status_get_real_time(const snd_seq_queue_status_t * info) { @@ -17746,7 +17746,7 @@ const snd_seq_real_time_t * glshim_snd_seq_queue_status_get_real_time(const snd_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const snd_seq_real_time_t * snd_seq_queue_status_get_real_time(const snd_seq_queue_status_t * info) __attribute__((alias("glshim_snd_seq_queue_status_get_real_time"))); +const snd_seq_real_time_t * snd_seq_queue_status_get_real_time(const snd_seq_queue_status_t * info) __attribute__((alias("glshim_snd_seq_queue_status_get_real_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_status_get_status) && !defined(skip_index_snd_seq_queue_status_get_status) unsigned int glshim_snd_seq_queue_status_get_status(const snd_seq_queue_status_t * info) { @@ -17757,7 +17757,7 @@ unsigned int glshim_snd_seq_queue_status_get_status(const snd_seq_queue_status_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_seq_queue_status_get_status(const snd_seq_queue_status_t * info) __attribute__((alias("glshim_snd_seq_queue_status_get_status"))); +unsigned int snd_seq_queue_status_get_status(const snd_seq_queue_status_t * info) __attribute__((alias("glshim_snd_seq_queue_status_get_status"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_status_get_tick_time) && !defined(skip_index_snd_seq_queue_status_get_tick_time) snd_seq_tick_time_t glshim_snd_seq_queue_status_get_tick_time(const snd_seq_queue_status_t * info) { @@ -17768,7 +17768,7 @@ snd_seq_tick_time_t glshim_snd_seq_queue_status_get_tick_time(const snd_seq_queu syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_seq_tick_time_t snd_seq_queue_status_get_tick_time(const snd_seq_queue_status_t * info) __attribute__((alias("glshim_snd_seq_queue_status_get_tick_time"))); +snd_seq_tick_time_t snd_seq_queue_status_get_tick_time(const snd_seq_queue_status_t * info) __attribute__((alias("glshim_snd_seq_queue_status_get_tick_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_status_malloc) && !defined(skip_index_snd_seq_queue_status_malloc) int glshim_snd_seq_queue_status_malloc(snd_seq_queue_status_t ** ptr) { @@ -17779,7 +17779,7 @@ int glshim_snd_seq_queue_status_malloc(snd_seq_queue_status_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_status_malloc(snd_seq_queue_status_t ** ptr) __attribute__((alias("glshim_snd_seq_queue_status_malloc"))); +int snd_seq_queue_status_malloc(snd_seq_queue_status_t ** ptr) __attribute__((alias("glshim_snd_seq_queue_status_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_status_sizeof) && !defined(skip_index_snd_seq_queue_status_sizeof) size_t glshim_snd_seq_queue_status_sizeof() { @@ -17789,7 +17789,7 @@ size_t glshim_snd_seq_queue_status_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_queue_status_sizeof() __attribute__((alias("glshim_snd_seq_queue_status_sizeof"))); +size_t snd_seq_queue_status_sizeof() __attribute__((alias("glshim_snd_seq_queue_status_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_copy) && !defined(skip_index_snd_seq_queue_tempo_copy) void glshim_snd_seq_queue_tempo_copy(snd_seq_queue_tempo_t * dst, const snd_seq_queue_tempo_t * src) { @@ -17799,7 +17799,7 @@ void glshim_snd_seq_queue_tempo_copy(snd_seq_queue_tempo_t * dst, const snd_seq_ packed_data.args.a2 = (snd_seq_queue_tempo_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_tempo_copy(snd_seq_queue_tempo_t * dst, const snd_seq_queue_tempo_t * src) __attribute__((alias("glshim_snd_seq_queue_tempo_copy"))); +void snd_seq_queue_tempo_copy(snd_seq_queue_tempo_t * dst, const snd_seq_queue_tempo_t * src) __attribute__((alias("glshim_snd_seq_queue_tempo_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_free) && !defined(skip_index_snd_seq_queue_tempo_free) void glshim_snd_seq_queue_tempo_free(snd_seq_queue_tempo_t * ptr) { @@ -17808,7 +17808,7 @@ void glshim_snd_seq_queue_tempo_free(snd_seq_queue_tempo_t * ptr) { packed_data.args.a1 = (snd_seq_queue_tempo_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_tempo_free(snd_seq_queue_tempo_t * ptr) __attribute__((alias("glshim_snd_seq_queue_tempo_free"))); +void snd_seq_queue_tempo_free(snd_seq_queue_tempo_t * ptr) __attribute__((alias("glshim_snd_seq_queue_tempo_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_get_ppq) && !defined(skip_index_snd_seq_queue_tempo_get_ppq) int glshim_snd_seq_queue_tempo_get_ppq(const snd_seq_queue_tempo_t * info) { @@ -17819,7 +17819,7 @@ int glshim_snd_seq_queue_tempo_get_ppq(const snd_seq_queue_tempo_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_tempo_get_ppq(const snd_seq_queue_tempo_t * info) __attribute__((alias("glshim_snd_seq_queue_tempo_get_ppq"))); +int snd_seq_queue_tempo_get_ppq(const snd_seq_queue_tempo_t * info) __attribute__((alias("glshim_snd_seq_queue_tempo_get_ppq"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_get_queue) && !defined(skip_index_snd_seq_queue_tempo_get_queue) int glshim_snd_seq_queue_tempo_get_queue(const snd_seq_queue_tempo_t * info) { @@ -17830,7 +17830,7 @@ int glshim_snd_seq_queue_tempo_get_queue(const snd_seq_queue_tempo_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_tempo_get_queue(const snd_seq_queue_tempo_t * info) __attribute__((alias("glshim_snd_seq_queue_tempo_get_queue"))); +int snd_seq_queue_tempo_get_queue(const snd_seq_queue_tempo_t * info) __attribute__((alias("glshim_snd_seq_queue_tempo_get_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_get_skew) && !defined(skip_index_snd_seq_queue_tempo_get_skew) unsigned int glshim_snd_seq_queue_tempo_get_skew(const snd_seq_queue_tempo_t * info) { @@ -17841,7 +17841,7 @@ unsigned int glshim_snd_seq_queue_tempo_get_skew(const snd_seq_queue_tempo_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_seq_queue_tempo_get_skew(const snd_seq_queue_tempo_t * info) __attribute__((alias("glshim_snd_seq_queue_tempo_get_skew"))); +unsigned int snd_seq_queue_tempo_get_skew(const snd_seq_queue_tempo_t * info) __attribute__((alias("glshim_snd_seq_queue_tempo_get_skew"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_get_skew_base) && !defined(skip_index_snd_seq_queue_tempo_get_skew_base) unsigned int glshim_snd_seq_queue_tempo_get_skew_base(const snd_seq_queue_tempo_t * info) { @@ -17852,7 +17852,7 @@ unsigned int glshim_snd_seq_queue_tempo_get_skew_base(const snd_seq_queue_tempo_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_seq_queue_tempo_get_skew_base(const snd_seq_queue_tempo_t * info) __attribute__((alias("glshim_snd_seq_queue_tempo_get_skew_base"))); +unsigned int snd_seq_queue_tempo_get_skew_base(const snd_seq_queue_tempo_t * info) __attribute__((alias("glshim_snd_seq_queue_tempo_get_skew_base"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_get_tempo) && !defined(skip_index_snd_seq_queue_tempo_get_tempo) unsigned int glshim_snd_seq_queue_tempo_get_tempo(const snd_seq_queue_tempo_t * info) { @@ -17863,7 +17863,7 @@ unsigned int glshim_snd_seq_queue_tempo_get_tempo(const snd_seq_queue_tempo_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_seq_queue_tempo_get_tempo(const snd_seq_queue_tempo_t * info) __attribute__((alias("glshim_snd_seq_queue_tempo_get_tempo"))); +unsigned int snd_seq_queue_tempo_get_tempo(const snd_seq_queue_tempo_t * info) __attribute__((alias("glshim_snd_seq_queue_tempo_get_tempo"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_malloc) && !defined(skip_index_snd_seq_queue_tempo_malloc) int glshim_snd_seq_queue_tempo_malloc(snd_seq_queue_tempo_t ** ptr) { @@ -17874,7 +17874,7 @@ int glshim_snd_seq_queue_tempo_malloc(snd_seq_queue_tempo_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_tempo_malloc(snd_seq_queue_tempo_t ** ptr) __attribute__((alias("glshim_snd_seq_queue_tempo_malloc"))); +int snd_seq_queue_tempo_malloc(snd_seq_queue_tempo_t ** ptr) __attribute__((alias("glshim_snd_seq_queue_tempo_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_set_ppq) && !defined(skip_index_snd_seq_queue_tempo_set_ppq) void glshim_snd_seq_queue_tempo_set_ppq(snd_seq_queue_tempo_t * info, int ppq) { @@ -17884,7 +17884,7 @@ void glshim_snd_seq_queue_tempo_set_ppq(snd_seq_queue_tempo_t * info, int ppq) { packed_data.args.a2 = (int)ppq; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_tempo_set_ppq(snd_seq_queue_tempo_t * info, int ppq) __attribute__((alias("glshim_snd_seq_queue_tempo_set_ppq"))); +void snd_seq_queue_tempo_set_ppq(snd_seq_queue_tempo_t * info, int ppq) __attribute__((alias("glshim_snd_seq_queue_tempo_set_ppq"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_set_skew) && !defined(skip_index_snd_seq_queue_tempo_set_skew) void glshim_snd_seq_queue_tempo_set_skew(snd_seq_queue_tempo_t * info, unsigned int skew) { @@ -17894,7 +17894,7 @@ void glshim_snd_seq_queue_tempo_set_skew(snd_seq_queue_tempo_t * info, unsigned packed_data.args.a2 = (unsigned int)skew; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_tempo_set_skew(snd_seq_queue_tempo_t * info, unsigned int skew) __attribute__((alias("glshim_snd_seq_queue_tempo_set_skew"))); +void snd_seq_queue_tempo_set_skew(snd_seq_queue_tempo_t * info, unsigned int skew) __attribute__((alias("glshim_snd_seq_queue_tempo_set_skew"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_set_skew_base) && !defined(skip_index_snd_seq_queue_tempo_set_skew_base) void glshim_snd_seq_queue_tempo_set_skew_base(snd_seq_queue_tempo_t * info, unsigned int base) { @@ -17904,7 +17904,7 @@ void glshim_snd_seq_queue_tempo_set_skew_base(snd_seq_queue_tempo_t * info, unsi packed_data.args.a2 = (unsigned int)base; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_tempo_set_skew_base(snd_seq_queue_tempo_t * info, unsigned int base) __attribute__((alias("glshim_snd_seq_queue_tempo_set_skew_base"))); +void snd_seq_queue_tempo_set_skew_base(snd_seq_queue_tempo_t * info, unsigned int base) __attribute__((alias("glshim_snd_seq_queue_tempo_set_skew_base"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_set_tempo) && !defined(skip_index_snd_seq_queue_tempo_set_tempo) void glshim_snd_seq_queue_tempo_set_tempo(snd_seq_queue_tempo_t * info, unsigned int tempo) { @@ -17914,7 +17914,7 @@ void glshim_snd_seq_queue_tempo_set_tempo(snd_seq_queue_tempo_t * info, unsigned packed_data.args.a2 = (unsigned int)tempo; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_tempo_set_tempo(snd_seq_queue_tempo_t * info, unsigned int tempo) __attribute__((alias("glshim_snd_seq_queue_tempo_set_tempo"))); +void snd_seq_queue_tempo_set_tempo(snd_seq_queue_tempo_t * info, unsigned int tempo) __attribute__((alias("glshim_snd_seq_queue_tempo_set_tempo"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_tempo_sizeof) && !defined(skip_index_snd_seq_queue_tempo_sizeof) size_t glshim_snd_seq_queue_tempo_sizeof() { @@ -17924,7 +17924,7 @@ size_t glshim_snd_seq_queue_tempo_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_queue_tempo_sizeof() __attribute__((alias("glshim_snd_seq_queue_tempo_sizeof"))); +size_t snd_seq_queue_tempo_sizeof() __attribute__((alias("glshim_snd_seq_queue_tempo_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_copy) && !defined(skip_index_snd_seq_queue_timer_copy) void glshim_snd_seq_queue_timer_copy(snd_seq_queue_timer_t * dst, const snd_seq_queue_timer_t * src) { @@ -17934,7 +17934,7 @@ void glshim_snd_seq_queue_timer_copy(snd_seq_queue_timer_t * dst, const snd_seq_ packed_data.args.a2 = (snd_seq_queue_timer_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_timer_copy(snd_seq_queue_timer_t * dst, const snd_seq_queue_timer_t * src) __attribute__((alias("glshim_snd_seq_queue_timer_copy"))); +void snd_seq_queue_timer_copy(snd_seq_queue_timer_t * dst, const snd_seq_queue_timer_t * src) __attribute__((alias("glshim_snd_seq_queue_timer_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_free) && !defined(skip_index_snd_seq_queue_timer_free) void glshim_snd_seq_queue_timer_free(snd_seq_queue_timer_t * ptr) { @@ -17943,7 +17943,7 @@ void glshim_snd_seq_queue_timer_free(snd_seq_queue_timer_t * ptr) { packed_data.args.a1 = (snd_seq_queue_timer_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_timer_free(snd_seq_queue_timer_t * ptr) __attribute__((alias("glshim_snd_seq_queue_timer_free"))); +void snd_seq_queue_timer_free(snd_seq_queue_timer_t * ptr) __attribute__((alias("glshim_snd_seq_queue_timer_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_get_id) && !defined(skip_index_snd_seq_queue_timer_get_id) const snd_timer_id_t * glshim_snd_seq_queue_timer_get_id(const snd_seq_queue_timer_t * info) { @@ -17954,7 +17954,7 @@ const snd_timer_id_t * glshim_snd_seq_queue_timer_get_id(const snd_seq_queue_tim syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const snd_timer_id_t * snd_seq_queue_timer_get_id(const snd_seq_queue_timer_t * info) __attribute__((alias("glshim_snd_seq_queue_timer_get_id"))); +const snd_timer_id_t * snd_seq_queue_timer_get_id(const snd_seq_queue_timer_t * info) __attribute__((alias("glshim_snd_seq_queue_timer_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_get_queue) && !defined(skip_index_snd_seq_queue_timer_get_queue) int glshim_snd_seq_queue_timer_get_queue(const snd_seq_queue_timer_t * info) { @@ -17965,7 +17965,7 @@ int glshim_snd_seq_queue_timer_get_queue(const snd_seq_queue_timer_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_timer_get_queue(const snd_seq_queue_timer_t * info) __attribute__((alias("glshim_snd_seq_queue_timer_get_queue"))); +int snd_seq_queue_timer_get_queue(const snd_seq_queue_timer_t * info) __attribute__((alias("glshim_snd_seq_queue_timer_get_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_get_resolution) && !defined(skip_index_snd_seq_queue_timer_get_resolution) unsigned int glshim_snd_seq_queue_timer_get_resolution(const snd_seq_queue_timer_t * info) { @@ -17976,7 +17976,7 @@ unsigned int glshim_snd_seq_queue_timer_get_resolution(const snd_seq_queue_timer syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_seq_queue_timer_get_resolution(const snd_seq_queue_timer_t * info) __attribute__((alias("glshim_snd_seq_queue_timer_get_resolution"))); +unsigned int snd_seq_queue_timer_get_resolution(const snd_seq_queue_timer_t * info) __attribute__((alias("glshim_snd_seq_queue_timer_get_resolution"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_get_type) && !defined(skip_index_snd_seq_queue_timer_get_type) snd_seq_queue_timer_type_t glshim_snd_seq_queue_timer_get_type(const snd_seq_queue_timer_t * info) { @@ -17987,7 +17987,7 @@ snd_seq_queue_timer_type_t glshim_snd_seq_queue_timer_get_type(const snd_seq_que syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_seq_queue_timer_type_t snd_seq_queue_timer_get_type(const snd_seq_queue_timer_t * info) __attribute__((alias("glshim_snd_seq_queue_timer_get_type"))); +snd_seq_queue_timer_type_t snd_seq_queue_timer_get_type(const snd_seq_queue_timer_t * info) __attribute__((alias("glshim_snd_seq_queue_timer_get_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_malloc) && !defined(skip_index_snd_seq_queue_timer_malloc) int glshim_snd_seq_queue_timer_malloc(snd_seq_queue_timer_t ** ptr) { @@ -17998,7 +17998,7 @@ int glshim_snd_seq_queue_timer_malloc(snd_seq_queue_timer_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_queue_timer_malloc(snd_seq_queue_timer_t ** ptr) __attribute__((alias("glshim_snd_seq_queue_timer_malloc"))); +int snd_seq_queue_timer_malloc(snd_seq_queue_timer_t ** ptr) __attribute__((alias("glshim_snd_seq_queue_timer_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_set_id) && !defined(skip_index_snd_seq_queue_timer_set_id) void glshim_snd_seq_queue_timer_set_id(snd_seq_queue_timer_t * info, const snd_timer_id_t * id) { @@ -18008,7 +18008,7 @@ void glshim_snd_seq_queue_timer_set_id(snd_seq_queue_timer_t * info, const snd_t packed_data.args.a2 = (snd_timer_id_t *)id; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_timer_set_id(snd_seq_queue_timer_t * info, const snd_timer_id_t * id) __attribute__((alias("glshim_snd_seq_queue_timer_set_id"))); +void snd_seq_queue_timer_set_id(snd_seq_queue_timer_t * info, const snd_timer_id_t * id) __attribute__((alias("glshim_snd_seq_queue_timer_set_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_set_resolution) && !defined(skip_index_snd_seq_queue_timer_set_resolution) void glshim_snd_seq_queue_timer_set_resolution(snd_seq_queue_timer_t * info, unsigned int resolution) { @@ -18018,7 +18018,7 @@ void glshim_snd_seq_queue_timer_set_resolution(snd_seq_queue_timer_t * info, uns packed_data.args.a2 = (unsigned int)resolution; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_timer_set_resolution(snd_seq_queue_timer_t * info, unsigned int resolution) __attribute__((alias("glshim_snd_seq_queue_timer_set_resolution"))); +void snd_seq_queue_timer_set_resolution(snd_seq_queue_timer_t * info, unsigned int resolution) __attribute__((alias("glshim_snd_seq_queue_timer_set_resolution"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_set_type) && !defined(skip_index_snd_seq_queue_timer_set_type) void glshim_snd_seq_queue_timer_set_type(snd_seq_queue_timer_t * info, snd_seq_queue_timer_type_t type) { @@ -18028,7 +18028,7 @@ void glshim_snd_seq_queue_timer_set_type(snd_seq_queue_timer_t * info, snd_seq_q packed_data.args.a2 = (snd_seq_queue_timer_type_t)type; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_queue_timer_set_type(snd_seq_queue_timer_t * info, snd_seq_queue_timer_type_t type) __attribute__((alias("glshim_snd_seq_queue_timer_set_type"))); +void snd_seq_queue_timer_set_type(snd_seq_queue_timer_t * info, snd_seq_queue_timer_type_t type) __attribute__((alias("glshim_snd_seq_queue_timer_set_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_queue_timer_sizeof) && !defined(skip_index_snd_seq_queue_timer_sizeof) size_t glshim_snd_seq_queue_timer_sizeof() { @@ -18038,7 +18038,7 @@ size_t glshim_snd_seq_queue_timer_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_queue_timer_sizeof() __attribute__((alias("glshim_snd_seq_queue_timer_sizeof"))); +size_t snd_seq_queue_timer_sizeof() __attribute__((alias("glshim_snd_seq_queue_timer_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events) && !defined(skip_index_snd_seq_remove_events) int glshim_snd_seq_remove_events(snd_seq_t * handle, snd_seq_remove_events_t * info) { @@ -18050,7 +18050,7 @@ int glshim_snd_seq_remove_events(snd_seq_t * handle, snd_seq_remove_events_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_remove_events(snd_seq_t * handle, snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events"))); +int snd_seq_remove_events(snd_seq_t * handle, snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_copy) && !defined(skip_index_snd_seq_remove_events_copy) void glshim_snd_seq_remove_events_copy(snd_seq_remove_events_t * dst, const snd_seq_remove_events_t * src) { @@ -18060,7 +18060,7 @@ void glshim_snd_seq_remove_events_copy(snd_seq_remove_events_t * dst, const snd_ packed_data.args.a2 = (snd_seq_remove_events_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_remove_events_copy(snd_seq_remove_events_t * dst, const snd_seq_remove_events_t * src) __attribute__((alias("glshim_snd_seq_remove_events_copy"))); +void snd_seq_remove_events_copy(snd_seq_remove_events_t * dst, const snd_seq_remove_events_t * src) __attribute__((alias("glshim_snd_seq_remove_events_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_free) && !defined(skip_index_snd_seq_remove_events_free) void glshim_snd_seq_remove_events_free(snd_seq_remove_events_t * ptr) { @@ -18069,7 +18069,7 @@ void glshim_snd_seq_remove_events_free(snd_seq_remove_events_t * ptr) { packed_data.args.a1 = (snd_seq_remove_events_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_remove_events_free(snd_seq_remove_events_t * ptr) __attribute__((alias("glshim_snd_seq_remove_events_free"))); +void snd_seq_remove_events_free(snd_seq_remove_events_t * ptr) __attribute__((alias("glshim_snd_seq_remove_events_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_get_channel) && !defined(skip_index_snd_seq_remove_events_get_channel) int glshim_snd_seq_remove_events_get_channel(const snd_seq_remove_events_t * info) { @@ -18080,7 +18080,7 @@ int glshim_snd_seq_remove_events_get_channel(const snd_seq_remove_events_t * inf syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_remove_events_get_channel(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_channel"))); +int snd_seq_remove_events_get_channel(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_channel"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_get_condition) && !defined(skip_index_snd_seq_remove_events_get_condition) unsigned int glshim_snd_seq_remove_events_get_condition(const snd_seq_remove_events_t * info) { @@ -18091,7 +18091,7 @@ unsigned int glshim_snd_seq_remove_events_get_condition(const snd_seq_remove_eve syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_seq_remove_events_get_condition(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_condition"))); +unsigned int snd_seq_remove_events_get_condition(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_condition"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_get_dest) && !defined(skip_index_snd_seq_remove_events_get_dest) const snd_seq_addr_t * glshim_snd_seq_remove_events_get_dest(const snd_seq_remove_events_t * info) { @@ -18102,7 +18102,7 @@ const snd_seq_addr_t * glshim_snd_seq_remove_events_get_dest(const snd_seq_remov syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const snd_seq_addr_t * snd_seq_remove_events_get_dest(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_dest"))); +const snd_seq_addr_t * snd_seq_remove_events_get_dest(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_dest"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_get_event_type) && !defined(skip_index_snd_seq_remove_events_get_event_type) int glshim_snd_seq_remove_events_get_event_type(const snd_seq_remove_events_t * info) { @@ -18113,7 +18113,7 @@ int glshim_snd_seq_remove_events_get_event_type(const snd_seq_remove_events_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_remove_events_get_event_type(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_event_type"))); +int snd_seq_remove_events_get_event_type(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_event_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_get_queue) && !defined(skip_index_snd_seq_remove_events_get_queue) int glshim_snd_seq_remove_events_get_queue(const snd_seq_remove_events_t * info) { @@ -18124,7 +18124,7 @@ int glshim_snd_seq_remove_events_get_queue(const snd_seq_remove_events_t * info) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_remove_events_get_queue(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_queue"))); +int snd_seq_remove_events_get_queue(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_get_tag) && !defined(skip_index_snd_seq_remove_events_get_tag) int glshim_snd_seq_remove_events_get_tag(const snd_seq_remove_events_t * info) { @@ -18135,7 +18135,7 @@ int glshim_snd_seq_remove_events_get_tag(const snd_seq_remove_events_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_remove_events_get_tag(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_tag"))); +int snd_seq_remove_events_get_tag(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_tag"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_get_time) && !defined(skip_index_snd_seq_remove_events_get_time) const snd_seq_timestamp_t * glshim_snd_seq_remove_events_get_time(const snd_seq_remove_events_t * info) { @@ -18146,7 +18146,7 @@ const snd_seq_timestamp_t * glshim_snd_seq_remove_events_get_time(const snd_seq_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const snd_seq_timestamp_t * snd_seq_remove_events_get_time(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_time"))); +const snd_seq_timestamp_t * snd_seq_remove_events_get_time(const snd_seq_remove_events_t * info) __attribute__((alias("glshim_snd_seq_remove_events_get_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_malloc) && !defined(skip_index_snd_seq_remove_events_malloc) int glshim_snd_seq_remove_events_malloc(snd_seq_remove_events_t ** ptr) { @@ -18157,7 +18157,7 @@ int glshim_snd_seq_remove_events_malloc(snd_seq_remove_events_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_remove_events_malloc(snd_seq_remove_events_t ** ptr) __attribute__((alias("glshim_snd_seq_remove_events_malloc"))); +int snd_seq_remove_events_malloc(snd_seq_remove_events_t ** ptr) __attribute__((alias("glshim_snd_seq_remove_events_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_set_channel) && !defined(skip_index_snd_seq_remove_events_set_channel) void glshim_snd_seq_remove_events_set_channel(snd_seq_remove_events_t * info, int channel) { @@ -18167,7 +18167,7 @@ void glshim_snd_seq_remove_events_set_channel(snd_seq_remove_events_t * info, in packed_data.args.a2 = (int)channel; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_remove_events_set_channel(snd_seq_remove_events_t * info, int channel) __attribute__((alias("glshim_snd_seq_remove_events_set_channel"))); +void snd_seq_remove_events_set_channel(snd_seq_remove_events_t * info, int channel) __attribute__((alias("glshim_snd_seq_remove_events_set_channel"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_set_condition) && !defined(skip_index_snd_seq_remove_events_set_condition) void glshim_snd_seq_remove_events_set_condition(snd_seq_remove_events_t * info, unsigned int flags) { @@ -18177,7 +18177,7 @@ void glshim_snd_seq_remove_events_set_condition(snd_seq_remove_events_t * info, packed_data.args.a2 = (unsigned int)flags; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_remove_events_set_condition(snd_seq_remove_events_t * info, unsigned int flags) __attribute__((alias("glshim_snd_seq_remove_events_set_condition"))); +void snd_seq_remove_events_set_condition(snd_seq_remove_events_t * info, unsigned int flags) __attribute__((alias("glshim_snd_seq_remove_events_set_condition"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_set_dest) && !defined(skip_index_snd_seq_remove_events_set_dest) void glshim_snd_seq_remove_events_set_dest(snd_seq_remove_events_t * info, const snd_seq_addr_t * addr) { @@ -18187,7 +18187,7 @@ void glshim_snd_seq_remove_events_set_dest(snd_seq_remove_events_t * info, const packed_data.args.a2 = (snd_seq_addr_t *)addr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_remove_events_set_dest(snd_seq_remove_events_t * info, const snd_seq_addr_t * addr) __attribute__((alias("glshim_snd_seq_remove_events_set_dest"))); +void snd_seq_remove_events_set_dest(snd_seq_remove_events_t * info, const snd_seq_addr_t * addr) __attribute__((alias("glshim_snd_seq_remove_events_set_dest"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_set_event_type) && !defined(skip_index_snd_seq_remove_events_set_event_type) void glshim_snd_seq_remove_events_set_event_type(snd_seq_remove_events_t * info, int type) { @@ -18197,7 +18197,7 @@ void glshim_snd_seq_remove_events_set_event_type(snd_seq_remove_events_t * info, packed_data.args.a2 = (int)type; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_remove_events_set_event_type(snd_seq_remove_events_t * info, int type) __attribute__((alias("glshim_snd_seq_remove_events_set_event_type"))); +void snd_seq_remove_events_set_event_type(snd_seq_remove_events_t * info, int type) __attribute__((alias("glshim_snd_seq_remove_events_set_event_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_set_queue) && !defined(skip_index_snd_seq_remove_events_set_queue) void glshim_snd_seq_remove_events_set_queue(snd_seq_remove_events_t * info, int queue) { @@ -18207,7 +18207,7 @@ void glshim_snd_seq_remove_events_set_queue(snd_seq_remove_events_t * info, int packed_data.args.a2 = (int)queue; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_remove_events_set_queue(snd_seq_remove_events_t * info, int queue) __attribute__((alias("glshim_snd_seq_remove_events_set_queue"))); +void snd_seq_remove_events_set_queue(snd_seq_remove_events_t * info, int queue) __attribute__((alias("glshim_snd_seq_remove_events_set_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_set_tag) && !defined(skip_index_snd_seq_remove_events_set_tag) void glshim_snd_seq_remove_events_set_tag(snd_seq_remove_events_t * info, int tag) { @@ -18217,7 +18217,7 @@ void glshim_snd_seq_remove_events_set_tag(snd_seq_remove_events_t * info, int ta packed_data.args.a2 = (int)tag; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_remove_events_set_tag(snd_seq_remove_events_t * info, int tag) __attribute__((alias("glshim_snd_seq_remove_events_set_tag"))); +void snd_seq_remove_events_set_tag(snd_seq_remove_events_t * info, int tag) __attribute__((alias("glshim_snd_seq_remove_events_set_tag"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_set_time) && !defined(skip_index_snd_seq_remove_events_set_time) void glshim_snd_seq_remove_events_set_time(snd_seq_remove_events_t * info, const snd_seq_timestamp_t * time) { @@ -18227,7 +18227,7 @@ void glshim_snd_seq_remove_events_set_time(snd_seq_remove_events_t * info, const packed_data.args.a2 = (snd_seq_timestamp_t *)time; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_remove_events_set_time(snd_seq_remove_events_t * info, const snd_seq_timestamp_t * time) __attribute__((alias("glshim_snd_seq_remove_events_set_time"))); +void snd_seq_remove_events_set_time(snd_seq_remove_events_t * info, const snd_seq_timestamp_t * time) __attribute__((alias("glshim_snd_seq_remove_events_set_time"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_remove_events_sizeof) && !defined(skip_index_snd_seq_remove_events_sizeof) size_t glshim_snd_seq_remove_events_sizeof() { @@ -18237,7 +18237,7 @@ size_t glshim_snd_seq_remove_events_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_remove_events_sizeof() __attribute__((alias("glshim_snd_seq_remove_events_sizeof"))); +size_t snd_seq_remove_events_sizeof() __attribute__((alias("glshim_snd_seq_remove_events_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_reset_pool_input) && !defined(skip_index_snd_seq_reset_pool_input) int glshim_snd_seq_reset_pool_input(snd_seq_t * seq) { @@ -18248,7 +18248,7 @@ int glshim_snd_seq_reset_pool_input(snd_seq_t * seq) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_reset_pool_input(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_reset_pool_input"))); +int snd_seq_reset_pool_input(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_reset_pool_input"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_reset_pool_output) && !defined(skip_index_snd_seq_reset_pool_output) int glshim_snd_seq_reset_pool_output(snd_seq_t * seq) { @@ -18259,7 +18259,7 @@ int glshim_snd_seq_reset_pool_output(snd_seq_t * seq) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_reset_pool_output(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_reset_pool_output"))); +int snd_seq_reset_pool_output(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_reset_pool_output"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_bit) && !defined(skip_index_snd_seq_set_bit) void glshim_snd_seq_set_bit(int nr, void * array) { @@ -18269,7 +18269,7 @@ void glshim_snd_seq_set_bit(int nr, void * array) { packed_data.args.a2 = (void *)array; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_set_bit(int nr, void * array) __attribute__((alias("glshim_snd_seq_set_bit"))); +void snd_seq_set_bit(int nr, void * array) __attribute__((alias("glshim_snd_seq_set_bit"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_client_event_filter) && !defined(skip_index_snd_seq_set_client_event_filter) int glshim_snd_seq_set_client_event_filter(snd_seq_t * seq, int event_type) { @@ -18281,7 +18281,7 @@ int glshim_snd_seq_set_client_event_filter(snd_seq_t * seq, int event_type) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_client_event_filter(snd_seq_t * seq, int event_type) __attribute__((alias("glshim_snd_seq_set_client_event_filter"))); +int snd_seq_set_client_event_filter(snd_seq_t * seq, int event_type) __attribute__((alias("glshim_snd_seq_set_client_event_filter"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_client_info) && !defined(skip_index_snd_seq_set_client_info) int glshim_snd_seq_set_client_info(snd_seq_t * handle, snd_seq_client_info_t * info) { @@ -18293,7 +18293,7 @@ int glshim_snd_seq_set_client_info(snd_seq_t * handle, snd_seq_client_info_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_client_info(snd_seq_t * handle, snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_set_client_info"))); +int snd_seq_set_client_info(snd_seq_t * handle, snd_seq_client_info_t * info) __attribute__((alias("glshim_snd_seq_set_client_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_client_name) && !defined(skip_index_snd_seq_set_client_name) int glshim_snd_seq_set_client_name(snd_seq_t * seq, const char * name) { @@ -18305,7 +18305,7 @@ int glshim_snd_seq_set_client_name(snd_seq_t * seq, const char * name) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_client_name(snd_seq_t * seq, const char * name) __attribute__((alias("glshim_snd_seq_set_client_name"))); +int snd_seq_set_client_name(snd_seq_t * seq, const char * name) __attribute__((alias("glshim_snd_seq_set_client_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_client_pool) && !defined(skip_index_snd_seq_set_client_pool) int glshim_snd_seq_set_client_pool(snd_seq_t * handle, snd_seq_client_pool_t * info) { @@ -18317,7 +18317,7 @@ int glshim_snd_seq_set_client_pool(snd_seq_t * handle, snd_seq_client_pool_t * i syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_client_pool(snd_seq_t * handle, snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_set_client_pool"))); +int snd_seq_set_client_pool(snd_seq_t * handle, snd_seq_client_pool_t * info) __attribute__((alias("glshim_snd_seq_set_client_pool"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_client_pool_input) && !defined(skip_index_snd_seq_set_client_pool_input) int glshim_snd_seq_set_client_pool_input(snd_seq_t * seq, size_t size) { @@ -18329,7 +18329,7 @@ int glshim_snd_seq_set_client_pool_input(snd_seq_t * seq, size_t size) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_client_pool_input(snd_seq_t * seq, size_t size) __attribute__((alias("glshim_snd_seq_set_client_pool_input"))); +int snd_seq_set_client_pool_input(snd_seq_t * seq, size_t size) __attribute__((alias("glshim_snd_seq_set_client_pool_input"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_client_pool_output_room) && !defined(skip_index_snd_seq_set_client_pool_output_room) int glshim_snd_seq_set_client_pool_output_room(snd_seq_t * seq, size_t size) { @@ -18341,7 +18341,7 @@ int glshim_snd_seq_set_client_pool_output_room(snd_seq_t * seq, size_t size) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_client_pool_output_room(snd_seq_t * seq, size_t size) __attribute__((alias("glshim_snd_seq_set_client_pool_output_room"))); +int snd_seq_set_client_pool_output_room(snd_seq_t * seq, size_t size) __attribute__((alias("glshim_snd_seq_set_client_pool_output_room"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_input_buffer_size) && !defined(skip_index_snd_seq_set_input_buffer_size) int glshim_snd_seq_set_input_buffer_size(snd_seq_t * handle, size_t size) { @@ -18353,7 +18353,7 @@ int glshim_snd_seq_set_input_buffer_size(snd_seq_t * handle, size_t size) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_input_buffer_size(snd_seq_t * handle, size_t size) __attribute__((alias("glshim_snd_seq_set_input_buffer_size"))); +int snd_seq_set_input_buffer_size(snd_seq_t * handle, size_t size) __attribute__((alias("glshim_snd_seq_set_input_buffer_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_output_buffer_size) && !defined(skip_index_snd_seq_set_output_buffer_size) int glshim_snd_seq_set_output_buffer_size(snd_seq_t * handle, size_t size) { @@ -18365,7 +18365,7 @@ int glshim_snd_seq_set_output_buffer_size(snd_seq_t * handle, size_t size) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_output_buffer_size(snd_seq_t * handle, size_t size) __attribute__((alias("glshim_snd_seq_set_output_buffer_size"))); +int snd_seq_set_output_buffer_size(snd_seq_t * handle, size_t size) __attribute__((alias("glshim_snd_seq_set_output_buffer_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_port_info) && !defined(skip_index_snd_seq_set_port_info) int glshim_snd_seq_set_port_info(snd_seq_t * handle, int port, snd_seq_port_info_t * info) { @@ -18378,7 +18378,7 @@ int glshim_snd_seq_set_port_info(snd_seq_t * handle, int port, snd_seq_port_info syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_port_info(snd_seq_t * handle, int port, snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_set_port_info"))); +int snd_seq_set_port_info(snd_seq_t * handle, int port, snd_seq_port_info_t * info) __attribute__((alias("glshim_snd_seq_set_port_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_queue_info) && !defined(skip_index_snd_seq_set_queue_info) int glshim_snd_seq_set_queue_info(snd_seq_t * seq, int q, snd_seq_queue_info_t * info) { @@ -18391,7 +18391,7 @@ int glshim_snd_seq_set_queue_info(snd_seq_t * seq, int q, snd_seq_queue_info_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_queue_info(snd_seq_t * seq, int q, snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_set_queue_info"))); +int snd_seq_set_queue_info(snd_seq_t * seq, int q, snd_seq_queue_info_t * info) __attribute__((alias("glshim_snd_seq_set_queue_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_queue_tempo) && !defined(skip_index_snd_seq_set_queue_tempo) int glshim_snd_seq_set_queue_tempo(snd_seq_t * handle, int q, snd_seq_queue_tempo_t * tempo) { @@ -18404,7 +18404,7 @@ int glshim_snd_seq_set_queue_tempo(snd_seq_t * handle, int q, snd_seq_queue_temp syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_queue_tempo(snd_seq_t * handle, int q, snd_seq_queue_tempo_t * tempo) __attribute__((alias("glshim_snd_seq_set_queue_tempo"))); +int snd_seq_set_queue_tempo(snd_seq_t * handle, int q, snd_seq_queue_tempo_t * tempo) __attribute__((alias("glshim_snd_seq_set_queue_tempo"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_queue_timer) && !defined(skip_index_snd_seq_set_queue_timer) int glshim_snd_seq_set_queue_timer(snd_seq_t * handle, int q, snd_seq_queue_timer_t * timer) { @@ -18417,7 +18417,7 @@ int glshim_snd_seq_set_queue_timer(snd_seq_t * handle, int q, snd_seq_queue_time syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_queue_timer(snd_seq_t * handle, int q, snd_seq_queue_timer_t * timer) __attribute__((alias("glshim_snd_seq_set_queue_timer"))); +int snd_seq_set_queue_timer(snd_seq_t * handle, int q, snd_seq_queue_timer_t * timer) __attribute__((alias("glshim_snd_seq_set_queue_timer"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_set_queue_usage) && !defined(skip_index_snd_seq_set_queue_usage) int glshim_snd_seq_set_queue_usage(snd_seq_t * handle, int q, int used) { @@ -18430,7 +18430,7 @@ int glshim_snd_seq_set_queue_usage(snd_seq_t * handle, int q, int used) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_set_queue_usage(snd_seq_t * handle, int q, int used) __attribute__((alias("glshim_snd_seq_set_queue_usage"))); +int snd_seq_set_queue_usage(snd_seq_t * handle, int q, int used) __attribute__((alias("glshim_snd_seq_set_queue_usage"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_subscribe_port) && !defined(skip_index_snd_seq_subscribe_port) int glshim_snd_seq_subscribe_port(snd_seq_t * handle, snd_seq_port_subscribe_t * sub) { @@ -18442,7 +18442,7 @@ int glshim_snd_seq_subscribe_port(snd_seq_t * handle, snd_seq_port_subscribe_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_subscribe_port(snd_seq_t * handle, snd_seq_port_subscribe_t * sub) __attribute__((alias("glshim_snd_seq_subscribe_port"))); +int snd_seq_subscribe_port(snd_seq_t * handle, snd_seq_port_subscribe_t * sub) __attribute__((alias("glshim_snd_seq_subscribe_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_sync_output_queue) && !defined(skip_index_snd_seq_sync_output_queue) int glshim_snd_seq_sync_output_queue(snd_seq_t * seq) { @@ -18453,7 +18453,7 @@ int glshim_snd_seq_sync_output_queue(snd_seq_t * seq) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_sync_output_queue(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_sync_output_queue"))); +int snd_seq_sync_output_queue(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_sync_output_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info) && !defined(skip_index_snd_seq_system_info) int glshim_snd_seq_system_info(snd_seq_t * handle, snd_seq_system_info_t * info) { @@ -18465,7 +18465,7 @@ int glshim_snd_seq_system_info(snd_seq_t * handle, snd_seq_system_info_t * info) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_system_info(snd_seq_t * handle, snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info"))); +int snd_seq_system_info(snd_seq_t * handle, snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info_copy) && !defined(skip_index_snd_seq_system_info_copy) void glshim_snd_seq_system_info_copy(snd_seq_system_info_t * dst, const snd_seq_system_info_t * src) { @@ -18475,7 +18475,7 @@ void glshim_snd_seq_system_info_copy(snd_seq_system_info_t * dst, const snd_seq_ packed_data.args.a2 = (snd_seq_system_info_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_system_info_copy(snd_seq_system_info_t * dst, const snd_seq_system_info_t * src) __attribute__((alias("glshim_snd_seq_system_info_copy"))); +void snd_seq_system_info_copy(snd_seq_system_info_t * dst, const snd_seq_system_info_t * src) __attribute__((alias("glshim_snd_seq_system_info_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info_free) && !defined(skip_index_snd_seq_system_info_free) void glshim_snd_seq_system_info_free(snd_seq_system_info_t * ptr) { @@ -18484,7 +18484,7 @@ void glshim_snd_seq_system_info_free(snd_seq_system_info_t * ptr) { packed_data.args.a1 = (snd_seq_system_info_t *)ptr; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_seq_system_info_free(snd_seq_system_info_t * ptr) __attribute__((alias("glshim_snd_seq_system_info_free"))); +void snd_seq_system_info_free(snd_seq_system_info_t * ptr) __attribute__((alias("glshim_snd_seq_system_info_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info_get_channels) && !defined(skip_index_snd_seq_system_info_get_channels) int glshim_snd_seq_system_info_get_channels(const snd_seq_system_info_t * info) { @@ -18495,7 +18495,7 @@ int glshim_snd_seq_system_info_get_channels(const snd_seq_system_info_t * info) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_system_info_get_channels(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_channels"))); +int snd_seq_system_info_get_channels(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_channels"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info_get_clients) && !defined(skip_index_snd_seq_system_info_get_clients) int glshim_snd_seq_system_info_get_clients(const snd_seq_system_info_t * info) { @@ -18506,7 +18506,7 @@ int glshim_snd_seq_system_info_get_clients(const snd_seq_system_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_system_info_get_clients(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_clients"))); +int snd_seq_system_info_get_clients(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_clients"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info_get_cur_clients) && !defined(skip_index_snd_seq_system_info_get_cur_clients) int glshim_snd_seq_system_info_get_cur_clients(const snd_seq_system_info_t * info) { @@ -18517,7 +18517,7 @@ int glshim_snd_seq_system_info_get_cur_clients(const snd_seq_system_info_t * inf syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_system_info_get_cur_clients(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_cur_clients"))); +int snd_seq_system_info_get_cur_clients(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_cur_clients"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info_get_cur_queues) && !defined(skip_index_snd_seq_system_info_get_cur_queues) int glshim_snd_seq_system_info_get_cur_queues(const snd_seq_system_info_t * info) { @@ -18528,7 +18528,7 @@ int glshim_snd_seq_system_info_get_cur_queues(const snd_seq_system_info_t * info syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_system_info_get_cur_queues(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_cur_queues"))); +int snd_seq_system_info_get_cur_queues(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_cur_queues"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info_get_ports) && !defined(skip_index_snd_seq_system_info_get_ports) int glshim_snd_seq_system_info_get_ports(const snd_seq_system_info_t * info) { @@ -18539,7 +18539,7 @@ int glshim_snd_seq_system_info_get_ports(const snd_seq_system_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_system_info_get_ports(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_ports"))); +int snd_seq_system_info_get_ports(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_ports"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info_get_queues) && !defined(skip_index_snd_seq_system_info_get_queues) int glshim_snd_seq_system_info_get_queues(const snd_seq_system_info_t * info) { @@ -18550,7 +18550,7 @@ int glshim_snd_seq_system_info_get_queues(const snd_seq_system_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_system_info_get_queues(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_queues"))); +int snd_seq_system_info_get_queues(const snd_seq_system_info_t * info) __attribute__((alias("glshim_snd_seq_system_info_get_queues"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info_malloc) && !defined(skip_index_snd_seq_system_info_malloc) int glshim_snd_seq_system_info_malloc(snd_seq_system_info_t ** ptr) { @@ -18561,7 +18561,7 @@ int glshim_snd_seq_system_info_malloc(snd_seq_system_info_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_system_info_malloc(snd_seq_system_info_t ** ptr) __attribute__((alias("glshim_snd_seq_system_info_malloc"))); +int snd_seq_system_info_malloc(snd_seq_system_info_t ** ptr) __attribute__((alias("glshim_snd_seq_system_info_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_system_info_sizeof) && !defined(skip_index_snd_seq_system_info_sizeof) size_t glshim_snd_seq_system_info_sizeof() { @@ -18571,7 +18571,7 @@ size_t glshim_snd_seq_system_info_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_seq_system_info_sizeof() __attribute__((alias("glshim_snd_seq_system_info_sizeof"))); +size_t snd_seq_system_info_sizeof() __attribute__((alias("glshim_snd_seq_system_info_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_type) && !defined(skip_index_snd_seq_type) snd_seq_type_t glshim_snd_seq_type(snd_seq_t * seq) { @@ -18582,7 +18582,7 @@ snd_seq_type_t glshim_snd_seq_type(snd_seq_t * seq) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_seq_type_t snd_seq_type(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_type"))); +snd_seq_type_t snd_seq_type(snd_seq_t * seq) __attribute__((alias("glshim_snd_seq_type"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_seq_unsubscribe_port) && !defined(skip_index_snd_seq_unsubscribe_port) int glshim_snd_seq_unsubscribe_port(snd_seq_t * handle, snd_seq_port_subscribe_t * sub) { @@ -18594,7 +18594,7 @@ int glshim_snd_seq_unsubscribe_port(snd_seq_t * handle, snd_seq_port_subscribe_t syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_seq_unsubscribe_port(snd_seq_t * handle, snd_seq_port_subscribe_t * sub) __attribute__((alias("glshim_snd_seq_unsubscribe_port"))); +int snd_seq_unsubscribe_port(snd_seq_t * handle, snd_seq_port_subscribe_t * sub) __attribute__((alias("glshim_snd_seq_unsubscribe_port"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_shm_area_create) && !defined(skip_index_snd_shm_area_create) struct snd_shm_area * glshim_snd_shm_area_create(int shmid, void * ptr) { @@ -18606,7 +18606,7 @@ struct snd_shm_area * glshim_snd_shm_area_create(int shmid, void * ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -struct snd_shm_area * snd_shm_area_create(int shmid, void * ptr) __attribute__((alias("glshim_snd_shm_area_create"))); +struct snd_shm_area * snd_shm_area_create(int shmid, void * ptr) __attribute__((alias("glshim_snd_shm_area_create"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_shm_area_destroy) && !defined(skip_index_snd_shm_area_destroy) int glshim_snd_shm_area_destroy(struct snd_shm_area * area) { @@ -18617,7 +18617,7 @@ int glshim_snd_shm_area_destroy(struct snd_shm_area * area) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_shm_area_destroy(struct snd_shm_area * area) __attribute__((alias("glshim_snd_shm_area_destroy"))); +int snd_shm_area_destroy(struct snd_shm_area * area) __attribute__((alias("glshim_snd_shm_area_destroy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_shm_area_share) && !defined(skip_index_snd_shm_area_share) struct snd_shm_area * glshim_snd_shm_area_share(struct snd_shm_area * area) { @@ -18628,7 +18628,7 @@ struct snd_shm_area * glshim_snd_shm_area_share(struct snd_shm_area * area) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -struct snd_shm_area * snd_shm_area_share(struct snd_shm_area * area) __attribute__((alias("glshim_snd_shm_area_share"))); +struct snd_shm_area * snd_shm_area_share(struct snd_shm_area * area) __attribute__((alias("glshim_snd_shm_area_share"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_spcm_init) && !defined(skip_index_snd_spcm_init) int glshim_snd_spcm_init(snd_pcm_t * pcm, unsigned int rate, unsigned int channels, snd_pcm_format_t format, snd_pcm_subformat_t subformat, snd_spcm_latency_t latency, snd_pcm_access_t _access, snd_spcm_xrun_type_t xrun_type) { @@ -18646,7 +18646,7 @@ int glshim_snd_spcm_init(snd_pcm_t * pcm, unsigned int rate, unsigned int channe syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_spcm_init(snd_pcm_t * pcm, unsigned int rate, unsigned int channels, snd_pcm_format_t format, snd_pcm_subformat_t subformat, snd_spcm_latency_t latency, snd_pcm_access_t _access, snd_spcm_xrun_type_t xrun_type) __attribute__((alias("glshim_snd_spcm_init"))); +int snd_spcm_init(snd_pcm_t * pcm, unsigned int rate, unsigned int channels, snd_pcm_format_t format, snd_pcm_subformat_t subformat, snd_spcm_latency_t latency, snd_pcm_access_t _access, snd_spcm_xrun_type_t xrun_type) __attribute__((alias("glshim_snd_spcm_init"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_spcm_init_duplex) && !defined(skip_index_snd_spcm_init_duplex) int glshim_snd_spcm_init_duplex(snd_pcm_t * playback_pcm, snd_pcm_t * capture_pcm, unsigned int rate, unsigned int channels, snd_pcm_format_t format, snd_pcm_subformat_t subformat, snd_spcm_latency_t latency, snd_pcm_access_t _access, snd_spcm_xrun_type_t xrun_type, snd_spcm_duplex_type_t duplex_type) { @@ -18666,7 +18666,7 @@ int glshim_snd_spcm_init_duplex(snd_pcm_t * playback_pcm, snd_pcm_t * capture_pc syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_spcm_init_duplex(snd_pcm_t * playback_pcm, snd_pcm_t * capture_pcm, unsigned int rate, unsigned int channels, snd_pcm_format_t format, snd_pcm_subformat_t subformat, snd_spcm_latency_t latency, snd_pcm_access_t _access, snd_spcm_xrun_type_t xrun_type, snd_spcm_duplex_type_t duplex_type) __attribute__((alias("glshim_snd_spcm_init_duplex"))); +int snd_spcm_init_duplex(snd_pcm_t * playback_pcm, snd_pcm_t * capture_pcm, unsigned int rate, unsigned int channels, snd_pcm_format_t format, snd_pcm_subformat_t subformat, snd_spcm_latency_t latency, snd_pcm_access_t _access, snd_spcm_xrun_type_t xrun_type, snd_spcm_duplex_type_t duplex_type) __attribute__((alias("glshim_snd_spcm_init_duplex"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_spcm_init_get_params) && !defined(skip_index_snd_spcm_init_get_params) int glshim_snd_spcm_init_get_params(snd_pcm_t * pcm, unsigned int * rate, snd_pcm_uframes_t * buffer_size, snd_pcm_uframes_t * period_size) { @@ -18680,7 +18680,7 @@ int glshim_snd_spcm_init_get_params(snd_pcm_t * pcm, unsigned int * rate, snd_pc syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_spcm_init_get_params(snd_pcm_t * pcm, unsigned int * rate, snd_pcm_uframes_t * buffer_size, snd_pcm_uframes_t * period_size) __attribute__((alias("glshim_snd_spcm_init_get_params"))); +int snd_spcm_init_get_params(snd_pcm_t * pcm, unsigned int * rate, snd_pcm_uframes_t * buffer_size, snd_pcm_uframes_t * period_size) __attribute__((alias("glshim_snd_spcm_init_get_params"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_strerror) && !defined(skip_index_snd_strerror) const char * glshim_snd_strerror(int errnum) { @@ -18691,7 +18691,7 @@ const char * glshim_snd_strerror(int errnum) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_strerror(int errnum) __attribute__((alias("glshim_snd_strerror"))); +const char * snd_strerror(int errnum) __attribute__((alias("glshim_snd_strerror"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_close) && !defined(skip_index_snd_timer_close) int glshim_snd_timer_close(snd_timer_t * handle) { @@ -18702,7 +18702,7 @@ int glshim_snd_timer_close(snd_timer_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_close(snd_timer_t * handle) __attribute__((alias("glshim_snd_timer_close"))); +int snd_timer_close(snd_timer_t * handle) __attribute__((alias("glshim_snd_timer_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_continue) && !defined(skip_index_snd_timer_continue) int glshim_snd_timer_continue(snd_timer_t * handle) { @@ -18713,7 +18713,7 @@ int glshim_snd_timer_continue(snd_timer_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_continue(snd_timer_t * handle) __attribute__((alias("glshim_snd_timer_continue"))); +int snd_timer_continue(snd_timer_t * handle) __attribute__((alias("glshim_snd_timer_continue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_copy) && !defined(skip_index_snd_timer_ginfo_copy) void glshim_snd_timer_ginfo_copy(snd_timer_ginfo_t * dst, const snd_timer_ginfo_t * src) { @@ -18723,7 +18723,7 @@ void glshim_snd_timer_ginfo_copy(snd_timer_ginfo_t * dst, const snd_timer_ginfo_ packed_data.args.a2 = (snd_timer_ginfo_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_ginfo_copy(snd_timer_ginfo_t * dst, const snd_timer_ginfo_t * src) __attribute__((alias("glshim_snd_timer_ginfo_copy"))); +void snd_timer_ginfo_copy(snd_timer_ginfo_t * dst, const snd_timer_ginfo_t * src) __attribute__((alias("glshim_snd_timer_ginfo_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_free) && !defined(skip_index_snd_timer_ginfo_free) void glshim_snd_timer_ginfo_free(snd_timer_ginfo_t * obj) { @@ -18732,7 +18732,7 @@ void glshim_snd_timer_ginfo_free(snd_timer_ginfo_t * obj) { packed_data.args.a1 = (snd_timer_ginfo_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_ginfo_free(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_free"))); +void snd_timer_ginfo_free(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_get_card) && !defined(skip_index_snd_timer_ginfo_get_card) int glshim_snd_timer_ginfo_get_card(snd_timer_ginfo_t * obj) { @@ -18743,7 +18743,7 @@ int glshim_snd_timer_ginfo_get_card(snd_timer_ginfo_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_ginfo_get_card(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_card"))); +int snd_timer_ginfo_get_card(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_card"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_get_clients) && !defined(skip_index_snd_timer_ginfo_get_clients) unsigned int glshim_snd_timer_ginfo_get_clients(snd_timer_ginfo_t * obj) { @@ -18754,7 +18754,7 @@ unsigned int glshim_snd_timer_ginfo_get_clients(snd_timer_ginfo_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_timer_ginfo_get_clients(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_clients"))); +unsigned int snd_timer_ginfo_get_clients(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_clients"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_get_flags) && !defined(skip_index_snd_timer_ginfo_get_flags) unsigned int glshim_snd_timer_ginfo_get_flags(snd_timer_ginfo_t * obj) { @@ -18765,7 +18765,7 @@ unsigned int glshim_snd_timer_ginfo_get_flags(snd_timer_ginfo_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_timer_ginfo_get_flags(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_flags"))); +unsigned int snd_timer_ginfo_get_flags(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_flags"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_get_id) && !defined(skip_index_snd_timer_ginfo_get_id) char * glshim_snd_timer_ginfo_get_id(snd_timer_ginfo_t * obj) { @@ -18776,7 +18776,7 @@ char * glshim_snd_timer_ginfo_get_id(snd_timer_ginfo_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -char * snd_timer_ginfo_get_id(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_id"))); +char * snd_timer_ginfo_get_id(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_get_name) && !defined(skip_index_snd_timer_ginfo_get_name) char * glshim_snd_timer_ginfo_get_name(snd_timer_ginfo_t * obj) { @@ -18787,7 +18787,7 @@ char * glshim_snd_timer_ginfo_get_name(snd_timer_ginfo_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -char * snd_timer_ginfo_get_name(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_name"))); +char * snd_timer_ginfo_get_name(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_get_resolution) && !defined(skip_index_snd_timer_ginfo_get_resolution) unsigned long glshim_snd_timer_ginfo_get_resolution(snd_timer_ginfo_t * obj) { @@ -18798,7 +18798,7 @@ unsigned long glshim_snd_timer_ginfo_get_resolution(snd_timer_ginfo_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned long snd_timer_ginfo_get_resolution(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_resolution"))); +unsigned long snd_timer_ginfo_get_resolution(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_resolution"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_get_resolution_max) && !defined(skip_index_snd_timer_ginfo_get_resolution_max) unsigned long glshim_snd_timer_ginfo_get_resolution_max(snd_timer_ginfo_t * obj) { @@ -18809,7 +18809,7 @@ unsigned long glshim_snd_timer_ginfo_get_resolution_max(snd_timer_ginfo_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned long snd_timer_ginfo_get_resolution_max(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_resolution_max"))); +unsigned long snd_timer_ginfo_get_resolution_max(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_resolution_max"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_get_resolution_min) && !defined(skip_index_snd_timer_ginfo_get_resolution_min) unsigned long glshim_snd_timer_ginfo_get_resolution_min(snd_timer_ginfo_t * obj) { @@ -18820,7 +18820,7 @@ unsigned long glshim_snd_timer_ginfo_get_resolution_min(snd_timer_ginfo_t * obj) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned long snd_timer_ginfo_get_resolution_min(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_resolution_min"))); +unsigned long snd_timer_ginfo_get_resolution_min(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_resolution_min"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_get_tid) && !defined(skip_index_snd_timer_ginfo_get_tid) snd_timer_id_t * glshim_snd_timer_ginfo_get_tid(snd_timer_ginfo_t * obj) { @@ -18831,7 +18831,7 @@ snd_timer_id_t * glshim_snd_timer_ginfo_get_tid(snd_timer_ginfo_t * obj) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_timer_id_t * snd_timer_ginfo_get_tid(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_tid"))); +snd_timer_id_t * snd_timer_ginfo_get_tid(snd_timer_ginfo_t * obj) __attribute__((alias("glshim_snd_timer_ginfo_get_tid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_malloc) && !defined(skip_index_snd_timer_ginfo_malloc) int glshim_snd_timer_ginfo_malloc(snd_timer_ginfo_t ** ptr) { @@ -18842,7 +18842,7 @@ int glshim_snd_timer_ginfo_malloc(snd_timer_ginfo_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_ginfo_malloc(snd_timer_ginfo_t ** ptr) __attribute__((alias("glshim_snd_timer_ginfo_malloc"))); +int snd_timer_ginfo_malloc(snd_timer_ginfo_t ** ptr) __attribute__((alias("glshim_snd_timer_ginfo_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_set_tid) && !defined(skip_index_snd_timer_ginfo_set_tid) int glshim_snd_timer_ginfo_set_tid(snd_timer_ginfo_t * obj, snd_timer_id_t * tid) { @@ -18854,7 +18854,7 @@ int glshim_snd_timer_ginfo_set_tid(snd_timer_ginfo_t * obj, snd_timer_id_t * tid syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_ginfo_set_tid(snd_timer_ginfo_t * obj, snd_timer_id_t * tid) __attribute__((alias("glshim_snd_timer_ginfo_set_tid"))); +int snd_timer_ginfo_set_tid(snd_timer_ginfo_t * obj, snd_timer_id_t * tid) __attribute__((alias("glshim_snd_timer_ginfo_set_tid"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_ginfo_sizeof) && !defined(skip_index_snd_timer_ginfo_sizeof) size_t glshim_snd_timer_ginfo_sizeof() { @@ -18864,7 +18864,7 @@ size_t glshim_snd_timer_ginfo_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_timer_ginfo_sizeof() __attribute__((alias("glshim_snd_timer_ginfo_sizeof"))); +size_t snd_timer_ginfo_sizeof() __attribute__((alias("glshim_snd_timer_ginfo_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_copy) && !defined(skip_index_snd_timer_id_copy) void glshim_snd_timer_id_copy(snd_timer_id_t * dst, const snd_timer_id_t * src) { @@ -18874,7 +18874,7 @@ void glshim_snd_timer_id_copy(snd_timer_id_t * dst, const snd_timer_id_t * src) packed_data.args.a2 = (snd_timer_id_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_id_copy(snd_timer_id_t * dst, const snd_timer_id_t * src) __attribute__((alias("glshim_snd_timer_id_copy"))); +void snd_timer_id_copy(snd_timer_id_t * dst, const snd_timer_id_t * src) __attribute__((alias("glshim_snd_timer_id_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_free) && !defined(skip_index_snd_timer_id_free) void glshim_snd_timer_id_free(snd_timer_id_t * obj) { @@ -18883,7 +18883,7 @@ void glshim_snd_timer_id_free(snd_timer_id_t * obj) { packed_data.args.a1 = (snd_timer_id_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_id_free(snd_timer_id_t * obj) __attribute__((alias("glshim_snd_timer_id_free"))); +void snd_timer_id_free(snd_timer_id_t * obj) __attribute__((alias("glshim_snd_timer_id_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_get_card) && !defined(skip_index_snd_timer_id_get_card) int glshim_snd_timer_id_get_card(snd_timer_id_t * id) { @@ -18894,7 +18894,7 @@ int glshim_snd_timer_id_get_card(snd_timer_id_t * id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_id_get_card(snd_timer_id_t * id) __attribute__((alias("glshim_snd_timer_id_get_card"))); +int snd_timer_id_get_card(snd_timer_id_t * id) __attribute__((alias("glshim_snd_timer_id_get_card"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_get_class) && !defined(skip_index_snd_timer_id_get_class) int glshim_snd_timer_id_get_class(snd_timer_id_t * id) { @@ -18905,7 +18905,7 @@ int glshim_snd_timer_id_get_class(snd_timer_id_t * id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_id_get_class(snd_timer_id_t * id) __attribute__((alias("glshim_snd_timer_id_get_class"))); +int snd_timer_id_get_class(snd_timer_id_t * id) __attribute__((alias("glshim_snd_timer_id_get_class"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_get_device) && !defined(skip_index_snd_timer_id_get_device) int glshim_snd_timer_id_get_device(snd_timer_id_t * id) { @@ -18916,7 +18916,7 @@ int glshim_snd_timer_id_get_device(snd_timer_id_t * id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_id_get_device(snd_timer_id_t * id) __attribute__((alias("glshim_snd_timer_id_get_device"))); +int snd_timer_id_get_device(snd_timer_id_t * id) __attribute__((alias("glshim_snd_timer_id_get_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_get_sclass) && !defined(skip_index_snd_timer_id_get_sclass) int glshim_snd_timer_id_get_sclass(snd_timer_id_t * id) { @@ -18927,7 +18927,7 @@ int glshim_snd_timer_id_get_sclass(snd_timer_id_t * id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_id_get_sclass(snd_timer_id_t * id) __attribute__((alias("glshim_snd_timer_id_get_sclass"))); +int snd_timer_id_get_sclass(snd_timer_id_t * id) __attribute__((alias("glshim_snd_timer_id_get_sclass"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_get_subdevice) && !defined(skip_index_snd_timer_id_get_subdevice) int glshim_snd_timer_id_get_subdevice(snd_timer_id_t * id) { @@ -18938,7 +18938,7 @@ int glshim_snd_timer_id_get_subdevice(snd_timer_id_t * id) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_id_get_subdevice(snd_timer_id_t * id) __attribute__((alias("glshim_snd_timer_id_get_subdevice"))); +int snd_timer_id_get_subdevice(snd_timer_id_t * id) __attribute__((alias("glshim_snd_timer_id_get_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_malloc) && !defined(skip_index_snd_timer_id_malloc) int glshim_snd_timer_id_malloc(snd_timer_id_t ** ptr) { @@ -18949,7 +18949,7 @@ int glshim_snd_timer_id_malloc(snd_timer_id_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_id_malloc(snd_timer_id_t ** ptr) __attribute__((alias("glshim_snd_timer_id_malloc"))); +int snd_timer_id_malloc(snd_timer_id_t ** ptr) __attribute__((alias("glshim_snd_timer_id_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_set_card) && !defined(skip_index_snd_timer_id_set_card) void glshim_snd_timer_id_set_card(snd_timer_id_t * id, int card) { @@ -18959,7 +18959,7 @@ void glshim_snd_timer_id_set_card(snd_timer_id_t * id, int card) { packed_data.args.a2 = (int)card; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_id_set_card(snd_timer_id_t * id, int card) __attribute__((alias("glshim_snd_timer_id_set_card"))); +void snd_timer_id_set_card(snd_timer_id_t * id, int card) __attribute__((alias("glshim_snd_timer_id_set_card"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_set_class) && !defined(skip_index_snd_timer_id_set_class) void glshim_snd_timer_id_set_class(snd_timer_id_t * id, int dev_class) { @@ -18969,7 +18969,7 @@ void glshim_snd_timer_id_set_class(snd_timer_id_t * id, int dev_class) { packed_data.args.a2 = (int)dev_class; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_id_set_class(snd_timer_id_t * id, int dev_class) __attribute__((alias("glshim_snd_timer_id_set_class"))); +void snd_timer_id_set_class(snd_timer_id_t * id, int dev_class) __attribute__((alias("glshim_snd_timer_id_set_class"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_set_device) && !defined(skip_index_snd_timer_id_set_device) void glshim_snd_timer_id_set_device(snd_timer_id_t * id, int device) { @@ -18979,7 +18979,7 @@ void glshim_snd_timer_id_set_device(snd_timer_id_t * id, int device) { packed_data.args.a2 = (int)device; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_id_set_device(snd_timer_id_t * id, int device) __attribute__((alias("glshim_snd_timer_id_set_device"))); +void snd_timer_id_set_device(snd_timer_id_t * id, int device) __attribute__((alias("glshim_snd_timer_id_set_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_set_sclass) && !defined(skip_index_snd_timer_id_set_sclass) void glshim_snd_timer_id_set_sclass(snd_timer_id_t * id, int dev_sclass) { @@ -18989,7 +18989,7 @@ void glshim_snd_timer_id_set_sclass(snd_timer_id_t * id, int dev_sclass) { packed_data.args.a2 = (int)dev_sclass; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_id_set_sclass(snd_timer_id_t * id, int dev_sclass) __attribute__((alias("glshim_snd_timer_id_set_sclass"))); +void snd_timer_id_set_sclass(snd_timer_id_t * id, int dev_sclass) __attribute__((alias("glshim_snd_timer_id_set_sclass"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_set_subdevice) && !defined(skip_index_snd_timer_id_set_subdevice) void glshim_snd_timer_id_set_subdevice(snd_timer_id_t * id, int subdevice) { @@ -18999,7 +18999,7 @@ void glshim_snd_timer_id_set_subdevice(snd_timer_id_t * id, int subdevice) { packed_data.args.a2 = (int)subdevice; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_id_set_subdevice(snd_timer_id_t * id, int subdevice) __attribute__((alias("glshim_snd_timer_id_set_subdevice"))); +void snd_timer_id_set_subdevice(snd_timer_id_t * id, int subdevice) __attribute__((alias("glshim_snd_timer_id_set_subdevice"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_id_sizeof) && !defined(skip_index_snd_timer_id_sizeof) size_t glshim_snd_timer_id_sizeof() { @@ -19009,7 +19009,7 @@ size_t glshim_snd_timer_id_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_timer_id_sizeof() __attribute__((alias("glshim_snd_timer_id_sizeof"))); +size_t snd_timer_id_sizeof() __attribute__((alias("glshim_snd_timer_id_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info) && !defined(skip_index_snd_timer_info) int glshim_snd_timer_info(snd_timer_t * handle, snd_timer_info_t * timer) { @@ -19021,7 +19021,7 @@ int glshim_snd_timer_info(snd_timer_t * handle, snd_timer_info_t * timer) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_info(snd_timer_t * handle, snd_timer_info_t * timer) __attribute__((alias("glshim_snd_timer_info"))); +int snd_timer_info(snd_timer_t * handle, snd_timer_info_t * timer) __attribute__((alias("glshim_snd_timer_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info_copy) && !defined(skip_index_snd_timer_info_copy) void glshim_snd_timer_info_copy(snd_timer_info_t * dst, const snd_timer_info_t * src) { @@ -19031,7 +19031,7 @@ void glshim_snd_timer_info_copy(snd_timer_info_t * dst, const snd_timer_info_t * packed_data.args.a2 = (snd_timer_info_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_info_copy(snd_timer_info_t * dst, const snd_timer_info_t * src) __attribute__((alias("glshim_snd_timer_info_copy"))); +void snd_timer_info_copy(snd_timer_info_t * dst, const snd_timer_info_t * src) __attribute__((alias("glshim_snd_timer_info_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info_free) && !defined(skip_index_snd_timer_info_free) void glshim_snd_timer_info_free(snd_timer_info_t * obj) { @@ -19040,7 +19040,7 @@ void glshim_snd_timer_info_free(snd_timer_info_t * obj) { packed_data.args.a1 = (snd_timer_info_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_info_free(snd_timer_info_t * obj) __attribute__((alias("glshim_snd_timer_info_free"))); +void snd_timer_info_free(snd_timer_info_t * obj) __attribute__((alias("glshim_snd_timer_info_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info_get_card) && !defined(skip_index_snd_timer_info_get_card) int glshim_snd_timer_info_get_card(snd_timer_info_t * info) { @@ -19051,7 +19051,7 @@ int glshim_snd_timer_info_get_card(snd_timer_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_info_get_card(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_get_card"))); +int snd_timer_info_get_card(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_get_card"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info_get_id) && !defined(skip_index_snd_timer_info_get_id) const char * glshim_snd_timer_info_get_id(snd_timer_info_t * info) { @@ -19062,7 +19062,7 @@ const char * glshim_snd_timer_info_get_id(snd_timer_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_timer_info_get_id(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_get_id"))); +const char * snd_timer_info_get_id(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_get_id"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info_get_name) && !defined(skip_index_snd_timer_info_get_name) const char * glshim_snd_timer_info_get_name(snd_timer_info_t * info) { @@ -19073,7 +19073,7 @@ const char * glshim_snd_timer_info_get_name(snd_timer_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -const char * snd_timer_info_get_name(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_get_name"))); +const char * snd_timer_info_get_name(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_get_name"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info_get_resolution) && !defined(skip_index_snd_timer_info_get_resolution) long glshim_snd_timer_info_get_resolution(snd_timer_info_t * info) { @@ -19084,7 +19084,7 @@ long glshim_snd_timer_info_get_resolution(snd_timer_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_timer_info_get_resolution(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_get_resolution"))); +long snd_timer_info_get_resolution(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_get_resolution"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info_get_ticks) && !defined(skip_index_snd_timer_info_get_ticks) long glshim_snd_timer_info_get_ticks(snd_timer_info_t * info) { @@ -19095,7 +19095,7 @@ long glshim_snd_timer_info_get_ticks(snd_timer_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_timer_info_get_ticks(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_get_ticks"))); +long snd_timer_info_get_ticks(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_get_ticks"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info_is_slave) && !defined(skip_index_snd_timer_info_is_slave) int glshim_snd_timer_info_is_slave(snd_timer_info_t * info) { @@ -19106,7 +19106,7 @@ int glshim_snd_timer_info_is_slave(snd_timer_info_t * info) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_info_is_slave(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_is_slave"))); +int snd_timer_info_is_slave(snd_timer_info_t * info) __attribute__((alias("glshim_snd_timer_info_is_slave"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info_malloc) && !defined(skip_index_snd_timer_info_malloc) int glshim_snd_timer_info_malloc(snd_timer_info_t ** ptr) { @@ -19117,7 +19117,7 @@ int glshim_snd_timer_info_malloc(snd_timer_info_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_info_malloc(snd_timer_info_t ** ptr) __attribute__((alias("glshim_snd_timer_info_malloc"))); +int snd_timer_info_malloc(snd_timer_info_t ** ptr) __attribute__((alias("glshim_snd_timer_info_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_info_sizeof) && !defined(skip_index_snd_timer_info_sizeof) size_t glshim_snd_timer_info_sizeof() { @@ -19127,7 +19127,7 @@ size_t glshim_snd_timer_info_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_timer_info_sizeof() __attribute__((alias("glshim_snd_timer_info_sizeof"))); +size_t snd_timer_info_sizeof() __attribute__((alias("glshim_snd_timer_info_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_open) && !defined(skip_index_snd_timer_open) int glshim_snd_timer_open(snd_timer_t ** handle, const char * name, int mode) { @@ -19140,7 +19140,7 @@ int glshim_snd_timer_open(snd_timer_t ** handle, const char * name, int mode) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_open(snd_timer_t ** handle, const char * name, int mode) __attribute__((alias("glshim_snd_timer_open"))); +int snd_timer_open(snd_timer_t ** handle, const char * name, int mode) __attribute__((alias("glshim_snd_timer_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_open_lconf) && !defined(skip_index_snd_timer_open_lconf) int glshim_snd_timer_open_lconf(snd_timer_t ** handle, const char * name, int mode, snd_config_t * lconf) { @@ -19154,7 +19154,7 @@ int glshim_snd_timer_open_lconf(snd_timer_t ** handle, const char * name, int mo syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_open_lconf(snd_timer_t ** handle, const char * name, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_timer_open_lconf"))); +int snd_timer_open_lconf(snd_timer_t ** handle, const char * name, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_timer_open_lconf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params) && !defined(skip_index_snd_timer_params) int glshim_snd_timer_params(snd_timer_t * handle, snd_timer_params_t * params) { @@ -19166,7 +19166,7 @@ int glshim_snd_timer_params(snd_timer_t * handle, snd_timer_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_params(snd_timer_t * handle, snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params"))); +int snd_timer_params(snd_timer_t * handle, snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_copy) && !defined(skip_index_snd_timer_params_copy) void glshim_snd_timer_params_copy(snd_timer_params_t * dst, const snd_timer_params_t * src) { @@ -19176,7 +19176,7 @@ void glshim_snd_timer_params_copy(snd_timer_params_t * dst, const snd_timer_para packed_data.args.a2 = (snd_timer_params_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_params_copy(snd_timer_params_t * dst, const snd_timer_params_t * src) __attribute__((alias("glshim_snd_timer_params_copy"))); +void snd_timer_params_copy(snd_timer_params_t * dst, const snd_timer_params_t * src) __attribute__((alias("glshim_snd_timer_params_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_free) && !defined(skip_index_snd_timer_params_free) void glshim_snd_timer_params_free(snd_timer_params_t * obj) { @@ -19185,7 +19185,7 @@ void glshim_snd_timer_params_free(snd_timer_params_t * obj) { packed_data.args.a1 = (snd_timer_params_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_params_free(snd_timer_params_t * obj) __attribute__((alias("glshim_snd_timer_params_free"))); +void snd_timer_params_free(snd_timer_params_t * obj) __attribute__((alias("glshim_snd_timer_params_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_get_auto_start) && !defined(skip_index_snd_timer_params_get_auto_start) int glshim_snd_timer_params_get_auto_start(snd_timer_params_t * params) { @@ -19196,7 +19196,7 @@ int glshim_snd_timer_params_get_auto_start(snd_timer_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_params_get_auto_start(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_auto_start"))); +int snd_timer_params_get_auto_start(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_auto_start"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_get_early_event) && !defined(skip_index_snd_timer_params_get_early_event) int glshim_snd_timer_params_get_early_event(snd_timer_params_t * params) { @@ -19207,7 +19207,7 @@ int glshim_snd_timer_params_get_early_event(snd_timer_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_params_get_early_event(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_early_event"))); +int snd_timer_params_get_early_event(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_early_event"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_get_exclusive) && !defined(skip_index_snd_timer_params_get_exclusive) int glshim_snd_timer_params_get_exclusive(snd_timer_params_t * params) { @@ -19218,7 +19218,7 @@ int glshim_snd_timer_params_get_exclusive(snd_timer_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_params_get_exclusive(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_exclusive"))); +int snd_timer_params_get_exclusive(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_exclusive"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_get_filter) && !defined(skip_index_snd_timer_params_get_filter) unsigned int glshim_snd_timer_params_get_filter(snd_timer_params_t * params) { @@ -19229,7 +19229,7 @@ unsigned int glshim_snd_timer_params_get_filter(snd_timer_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -unsigned int snd_timer_params_get_filter(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_filter"))); +unsigned int snd_timer_params_get_filter(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_filter"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_get_queue_size) && !defined(skip_index_snd_timer_params_get_queue_size) long glshim_snd_timer_params_get_queue_size(snd_timer_params_t * params) { @@ -19240,7 +19240,7 @@ long glshim_snd_timer_params_get_queue_size(snd_timer_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_timer_params_get_queue_size(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_queue_size"))); +long snd_timer_params_get_queue_size(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_queue_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_get_ticks) && !defined(skip_index_snd_timer_params_get_ticks) long glshim_snd_timer_params_get_ticks(snd_timer_params_t * params) { @@ -19251,7 +19251,7 @@ long glshim_snd_timer_params_get_ticks(snd_timer_params_t * params) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_timer_params_get_ticks(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_ticks"))); +long snd_timer_params_get_ticks(snd_timer_params_t * params) __attribute__((alias("glshim_snd_timer_params_get_ticks"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_malloc) && !defined(skip_index_snd_timer_params_malloc) int glshim_snd_timer_params_malloc(snd_timer_params_t ** ptr) { @@ -19262,7 +19262,7 @@ int glshim_snd_timer_params_malloc(snd_timer_params_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_params_malloc(snd_timer_params_t ** ptr) __attribute__((alias("glshim_snd_timer_params_malloc"))); +int snd_timer_params_malloc(snd_timer_params_t ** ptr) __attribute__((alias("glshim_snd_timer_params_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_set_auto_start) && !defined(skip_index_snd_timer_params_set_auto_start) int glshim_snd_timer_params_set_auto_start(snd_timer_params_t * params, int auto_start) { @@ -19274,7 +19274,7 @@ int glshim_snd_timer_params_set_auto_start(snd_timer_params_t * params, int auto syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_params_set_auto_start(snd_timer_params_t * params, int auto_start) __attribute__((alias("glshim_snd_timer_params_set_auto_start"))); +int snd_timer_params_set_auto_start(snd_timer_params_t * params, int auto_start) __attribute__((alias("glshim_snd_timer_params_set_auto_start"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_set_early_event) && !defined(skip_index_snd_timer_params_set_early_event) int glshim_snd_timer_params_set_early_event(snd_timer_params_t * params, int early_event) { @@ -19286,7 +19286,7 @@ int glshim_snd_timer_params_set_early_event(snd_timer_params_t * params, int ear syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_params_set_early_event(snd_timer_params_t * params, int early_event) __attribute__((alias("glshim_snd_timer_params_set_early_event"))); +int snd_timer_params_set_early_event(snd_timer_params_t * params, int early_event) __attribute__((alias("glshim_snd_timer_params_set_early_event"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_set_exclusive) && !defined(skip_index_snd_timer_params_set_exclusive) int glshim_snd_timer_params_set_exclusive(snd_timer_params_t * params, int exclusive) { @@ -19298,7 +19298,7 @@ int glshim_snd_timer_params_set_exclusive(snd_timer_params_t * params, int exclu syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_params_set_exclusive(snd_timer_params_t * params, int exclusive) __attribute__((alias("glshim_snd_timer_params_set_exclusive"))); +int snd_timer_params_set_exclusive(snd_timer_params_t * params, int exclusive) __attribute__((alias("glshim_snd_timer_params_set_exclusive"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_set_filter) && !defined(skip_index_snd_timer_params_set_filter) void glshim_snd_timer_params_set_filter(snd_timer_params_t * params, unsigned int filter) { @@ -19308,7 +19308,7 @@ void glshim_snd_timer_params_set_filter(snd_timer_params_t * params, unsigned in packed_data.args.a2 = (unsigned int)filter; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_params_set_filter(snd_timer_params_t * params, unsigned int filter) __attribute__((alias("glshim_snd_timer_params_set_filter"))); +void snd_timer_params_set_filter(snd_timer_params_t * params, unsigned int filter) __attribute__((alias("glshim_snd_timer_params_set_filter"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_set_queue_size) && !defined(skip_index_snd_timer_params_set_queue_size) void glshim_snd_timer_params_set_queue_size(snd_timer_params_t * params, long queue_size) { @@ -19318,7 +19318,7 @@ void glshim_snd_timer_params_set_queue_size(snd_timer_params_t * params, long qu packed_data.args.a2 = (long)queue_size; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_params_set_queue_size(snd_timer_params_t * params, long queue_size) __attribute__((alias("glshim_snd_timer_params_set_queue_size"))); +void snd_timer_params_set_queue_size(snd_timer_params_t * params, long queue_size) __attribute__((alias("glshim_snd_timer_params_set_queue_size"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_set_ticks) && !defined(skip_index_snd_timer_params_set_ticks) void glshim_snd_timer_params_set_ticks(snd_timer_params_t * params, long ticks) { @@ -19328,7 +19328,7 @@ void glshim_snd_timer_params_set_ticks(snd_timer_params_t * params, long ticks) packed_data.args.a2 = (long)ticks; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_params_set_ticks(snd_timer_params_t * params, long ticks) __attribute__((alias("glshim_snd_timer_params_set_ticks"))); +void snd_timer_params_set_ticks(snd_timer_params_t * params, long ticks) __attribute__((alias("glshim_snd_timer_params_set_ticks"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_params_sizeof) && !defined(skip_index_snd_timer_params_sizeof) size_t glshim_snd_timer_params_sizeof() { @@ -19338,7 +19338,7 @@ size_t glshim_snd_timer_params_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_timer_params_sizeof() __attribute__((alias("glshim_snd_timer_params_sizeof"))); +size_t snd_timer_params_sizeof() __attribute__((alias("glshim_snd_timer_params_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_poll_descriptors) && !defined(skip_index_snd_timer_poll_descriptors) int glshim_snd_timer_poll_descriptors(snd_timer_t * handle, struct pollfd * pfds, unsigned int space) { @@ -19351,7 +19351,7 @@ int glshim_snd_timer_poll_descriptors(snd_timer_t * handle, struct pollfd * pfds syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_poll_descriptors(snd_timer_t * handle, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_timer_poll_descriptors"))); +int snd_timer_poll_descriptors(snd_timer_t * handle, struct pollfd * pfds, unsigned int space) __attribute__((alias("glshim_snd_timer_poll_descriptors"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_poll_descriptors_count) && !defined(skip_index_snd_timer_poll_descriptors_count) int glshim_snd_timer_poll_descriptors_count(snd_timer_t * handle) { @@ -19362,7 +19362,7 @@ int glshim_snd_timer_poll_descriptors_count(snd_timer_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_poll_descriptors_count(snd_timer_t * handle) __attribute__((alias("glshim_snd_timer_poll_descriptors_count"))); +int snd_timer_poll_descriptors_count(snd_timer_t * handle) __attribute__((alias("glshim_snd_timer_poll_descriptors_count"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_poll_descriptors_revents) && !defined(skip_index_snd_timer_poll_descriptors_revents) int glshim_snd_timer_poll_descriptors_revents(snd_timer_t * timer, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) { @@ -19376,7 +19376,7 @@ int glshim_snd_timer_poll_descriptors_revents(snd_timer_t * timer, struct pollfd syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_poll_descriptors_revents(snd_timer_t * timer, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_timer_poll_descriptors_revents"))); +int snd_timer_poll_descriptors_revents(snd_timer_t * timer, struct pollfd * pfds, unsigned int nfds, unsigned short * revents) __attribute__((alias("glshim_snd_timer_poll_descriptors_revents"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_query_close) && !defined(skip_index_snd_timer_query_close) int glshim_snd_timer_query_close(snd_timer_query_t * handle) { @@ -19387,7 +19387,7 @@ int glshim_snd_timer_query_close(snd_timer_query_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_query_close(snd_timer_query_t * handle) __attribute__((alias("glshim_snd_timer_query_close"))); +int snd_timer_query_close(snd_timer_query_t * handle) __attribute__((alias("glshim_snd_timer_query_close"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_query_info) && !defined(skip_index_snd_timer_query_info) int glshim_snd_timer_query_info(snd_timer_query_t * handle, snd_timer_ginfo_t * info) { @@ -19399,7 +19399,7 @@ int glshim_snd_timer_query_info(snd_timer_query_t * handle, snd_timer_ginfo_t * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_query_info(snd_timer_query_t * handle, snd_timer_ginfo_t * info) __attribute__((alias("glshim_snd_timer_query_info"))); +int snd_timer_query_info(snd_timer_query_t * handle, snd_timer_ginfo_t * info) __attribute__((alias("glshim_snd_timer_query_info"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_query_next_device) && !defined(skip_index_snd_timer_query_next_device) int glshim_snd_timer_query_next_device(snd_timer_query_t * handle, snd_timer_id_t * tid) { @@ -19411,7 +19411,7 @@ int glshim_snd_timer_query_next_device(snd_timer_query_t * handle, snd_timer_id_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_query_next_device(snd_timer_query_t * handle, snd_timer_id_t * tid) __attribute__((alias("glshim_snd_timer_query_next_device"))); +int snd_timer_query_next_device(snd_timer_query_t * handle, snd_timer_id_t * tid) __attribute__((alias("glshim_snd_timer_query_next_device"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_query_open) && !defined(skip_index_snd_timer_query_open) int glshim_snd_timer_query_open(snd_timer_query_t ** handle, const char * name, int mode) { @@ -19424,7 +19424,7 @@ int glshim_snd_timer_query_open(snd_timer_query_t ** handle, const char * name, syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_query_open(snd_timer_query_t ** handle, const char * name, int mode) __attribute__((alias("glshim_snd_timer_query_open"))); +int snd_timer_query_open(snd_timer_query_t ** handle, const char * name, int mode) __attribute__((alias("glshim_snd_timer_query_open"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_query_open_lconf) && !defined(skip_index_snd_timer_query_open_lconf) int glshim_snd_timer_query_open_lconf(snd_timer_query_t ** handle, const char * name, int mode, snd_config_t * lconf) { @@ -19438,7 +19438,7 @@ int glshim_snd_timer_query_open_lconf(snd_timer_query_t ** handle, const char * syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_query_open_lconf(snd_timer_query_t ** handle, const char * name, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_timer_query_open_lconf"))); +int snd_timer_query_open_lconf(snd_timer_query_t ** handle, const char * name, int mode, snd_config_t * lconf) __attribute__((alias("glshim_snd_timer_query_open_lconf"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_query_params) && !defined(skip_index_snd_timer_query_params) int glshim_snd_timer_query_params(snd_timer_query_t * handle, snd_timer_gparams_t * params) { @@ -19450,7 +19450,7 @@ int glshim_snd_timer_query_params(snd_timer_query_t * handle, snd_timer_gparams_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_query_params(snd_timer_query_t * handle, snd_timer_gparams_t * params) __attribute__((alias("glshim_snd_timer_query_params"))); +int snd_timer_query_params(snd_timer_query_t * handle, snd_timer_gparams_t * params) __attribute__((alias("glshim_snd_timer_query_params"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_query_status) && !defined(skip_index_snd_timer_query_status) int glshim_snd_timer_query_status(snd_timer_query_t * handle, snd_timer_gstatus_t * status) { @@ -19462,7 +19462,7 @@ int glshim_snd_timer_query_status(snd_timer_query_t * handle, snd_timer_gstatus_ syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_query_status(snd_timer_query_t * handle, snd_timer_gstatus_t * status) __attribute__((alias("glshim_snd_timer_query_status"))); +int snd_timer_query_status(snd_timer_query_t * handle, snd_timer_gstatus_t * status) __attribute__((alias("glshim_snd_timer_query_status"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_read) && !defined(skip_index_snd_timer_read) ssize_t glshim_snd_timer_read(snd_timer_t * handle, void * buffer, size_t size) { @@ -19475,7 +19475,7 @@ ssize_t glshim_snd_timer_read(snd_timer_t * handle, void * buffer, size_t size) syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -ssize_t snd_timer_read(snd_timer_t * handle, void * buffer, size_t size) __attribute__((alias("glshim_snd_timer_read"))); +ssize_t snd_timer_read(snd_timer_t * handle, void * buffer, size_t size) __attribute__((alias("glshim_snd_timer_read"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_start) && !defined(skip_index_snd_timer_start) int glshim_snd_timer_start(snd_timer_t * handle) { @@ -19486,7 +19486,7 @@ int glshim_snd_timer_start(snd_timer_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_start(snd_timer_t * handle) __attribute__((alias("glshim_snd_timer_start"))); +int snd_timer_start(snd_timer_t * handle) __attribute__((alias("glshim_snd_timer_start"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_status) && !defined(skip_index_snd_timer_status) int glshim_snd_timer_status(snd_timer_t * handle, snd_timer_status_t * status) { @@ -19498,7 +19498,7 @@ int glshim_snd_timer_status(snd_timer_t * handle, snd_timer_status_t * status) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_status(snd_timer_t * handle, snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status"))); +int snd_timer_status(snd_timer_t * handle, snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_status_copy) && !defined(skip_index_snd_timer_status_copy) void glshim_snd_timer_status_copy(snd_timer_status_t * dst, const snd_timer_status_t * src) { @@ -19508,7 +19508,7 @@ void glshim_snd_timer_status_copy(snd_timer_status_t * dst, const snd_timer_stat packed_data.args.a2 = (snd_timer_status_t *)src; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_status_copy(snd_timer_status_t * dst, const snd_timer_status_t * src) __attribute__((alias("glshim_snd_timer_status_copy"))); +void snd_timer_status_copy(snd_timer_status_t * dst, const snd_timer_status_t * src) __attribute__((alias("glshim_snd_timer_status_copy"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_status_free) && !defined(skip_index_snd_timer_status_free) void glshim_snd_timer_status_free(snd_timer_status_t * obj) { @@ -19517,7 +19517,7 @@ void glshim_snd_timer_status_free(snd_timer_status_t * obj) { packed_data.args.a1 = (snd_timer_status_t *)obj; syscall(SYS_proxy, (void *)&packed_data, NULL); } -void snd_timer_status_free(snd_timer_status_t * obj) __attribute__((alias("glshim_snd_timer_status_free"))); +void snd_timer_status_free(snd_timer_status_t * obj) __attribute__((alias("glshim_snd_timer_status_free"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_status_get_lost) && !defined(skip_index_snd_timer_status_get_lost) long glshim_snd_timer_status_get_lost(snd_timer_status_t * status) { @@ -19528,7 +19528,7 @@ long glshim_snd_timer_status_get_lost(snd_timer_status_t * status) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_timer_status_get_lost(snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status_get_lost"))); +long snd_timer_status_get_lost(snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status_get_lost"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_status_get_overrun) && !defined(skip_index_snd_timer_status_get_overrun) long glshim_snd_timer_status_get_overrun(snd_timer_status_t * status) { @@ -19539,7 +19539,7 @@ long glshim_snd_timer_status_get_overrun(snd_timer_status_t * status) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_timer_status_get_overrun(snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status_get_overrun"))); +long snd_timer_status_get_overrun(snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status_get_overrun"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_status_get_queue) && !defined(skip_index_snd_timer_status_get_queue) long glshim_snd_timer_status_get_queue(snd_timer_status_t * status) { @@ -19550,7 +19550,7 @@ long glshim_snd_timer_status_get_queue(snd_timer_status_t * status) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_timer_status_get_queue(snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status_get_queue"))); +long snd_timer_status_get_queue(snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status_get_queue"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_status_get_resolution) && !defined(skip_index_snd_timer_status_get_resolution) long glshim_snd_timer_status_get_resolution(snd_timer_status_t * status) { @@ -19561,7 +19561,7 @@ long glshim_snd_timer_status_get_resolution(snd_timer_status_t * status) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -long snd_timer_status_get_resolution(snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status_get_resolution"))); +long snd_timer_status_get_resolution(snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status_get_resolution"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_status_get_timestamp) && !defined(skip_index_snd_timer_status_get_timestamp) snd_htimestamp_t glshim_snd_timer_status_get_timestamp(snd_timer_status_t * status) { @@ -19572,7 +19572,7 @@ snd_htimestamp_t glshim_snd_timer_status_get_timestamp(snd_timer_status_t * stat syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -snd_htimestamp_t snd_timer_status_get_timestamp(snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status_get_timestamp"))); +snd_htimestamp_t snd_timer_status_get_timestamp(snd_timer_status_t * status) __attribute__((alias("glshim_snd_timer_status_get_timestamp"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_status_malloc) && !defined(skip_index_snd_timer_status_malloc) int glshim_snd_timer_status_malloc(snd_timer_status_t ** ptr) { @@ -19583,7 +19583,7 @@ int glshim_snd_timer_status_malloc(snd_timer_status_t ** ptr) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_status_malloc(snd_timer_status_t ** ptr) __attribute__((alias("glshim_snd_timer_status_malloc"))); +int snd_timer_status_malloc(snd_timer_status_t ** ptr) __attribute__((alias("glshim_snd_timer_status_malloc"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_status_sizeof) && !defined(skip_index_snd_timer_status_sizeof) size_t glshim_snd_timer_status_sizeof() { @@ -19593,7 +19593,7 @@ size_t glshim_snd_timer_status_sizeof() { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -size_t snd_timer_status_sizeof() __attribute__((alias("glshim_snd_timer_status_sizeof"))); +size_t snd_timer_status_sizeof() __attribute__((alias("glshim_snd_timer_status_sizeof"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_timer_stop) && !defined(skip_index_snd_timer_stop) int glshim_snd_timer_stop(snd_timer_t * handle) { @@ -19604,7 +19604,7 @@ int glshim_snd_timer_stop(snd_timer_t * handle) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_timer_stop(snd_timer_t * handle) __attribute__((alias("glshim_snd_timer_stop"))); +int snd_timer_stop(snd_timer_t * handle) __attribute__((alias("glshim_snd_timer_stop"))) __attribute__((visibility("default"))); #endif #if !defined(skip_client_snd_user_file) && !defined(skip_index_snd_user_file) int glshim_snd_user_file(const char * file, char ** result) { @@ -19616,7 +19616,7 @@ int glshim_snd_user_file(const char * file, char ** result) { syscall(SYS_proxy, (void *)&packed_data, &ret); return ret; } -int snd_user_file(const char * file, char ** result) __attribute__((alias("glshim_snd_user_file"))); +int snd_user_file(const char * file, char ** result) __attribute__((alias("glshim_snd_user_file"))) __attribute__((visibility("default"))); #endif