X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmapi%2Ftable.h;h=f488b6d8a75145e54deb8e888c435675005b1b99;hb=19dc528bbf74cb823c87420ee3e5b8cb6495a199;hp=8180db9bc1046589fe912ad3b8a0b358e45ee0b6;hpb=41c87cc5666de7ec5cfdea2c035c671048c06ca5;p=mesa.git diff --git a/src/mapi/table.h b/src/mapi/table.h index 8180db9bc10..f488b6d8a75 100644 --- a/src/mapi/table.h +++ b/src/mapi/table.h @@ -28,7 +28,7 @@ #ifndef _TABLE_H_ #define _TABLE_H_ -#include "u_compiler.h" +#include "c99_compat.h" #include "entry.h" #define MAPI_TMP_TABLE @@ -37,22 +37,32 @@ #define MAPI_TABLE_NUM_SLOTS (MAPI_TABLE_NUM_STATIC + MAPI_TABLE_NUM_DYNAMIC) #define MAPI_TABLE_SIZE (MAPI_TABLE_NUM_SLOTS * sizeof(mapi_func)) +struct _glapi_table; + extern const mapi_func table_noop_array[]; + +typedef void (*nop_handler_proc)(const char *name); + + +void +table_set_noop_handler(nop_handler_proc func); + + /** * Get the no-op dispatch table. */ -static inline const struct mapi_table * +static inline const struct _glapi_table * table_get_noop(void) { - return (const struct mapi_table *) table_noop_array; + return (const struct _glapi_table *) table_noop_array; } /** * Set the function of a slot. */ static inline void -table_set_func(struct mapi_table *tbl, int slot, mapi_func func) +table_set_func(struct _glapi_table *tbl, int slot, mapi_func func) { mapi_func *funcs = (mapi_func *) tbl; funcs[slot] = func; @@ -62,7 +72,7 @@ table_set_func(struct mapi_table *tbl, int slot, mapi_func func) * Return the function of a slot. */ static inline mapi_func -table_get_func(const struct mapi_table *tbl, int slot) +table_get_func(const struct _glapi_table *tbl, int slot) { const mapi_func *funcs = (const mapi_func *) tbl; return funcs[slot];