mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
mesa: annotate functions for C linkage
i.e. add extern C {} in program/symbol_table.h
It will allow us remove a workaround we have elsewhere in the code.
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
e776e0385c
commit
1451bcb125
1 changed files with 8 additions and 0 deletions
|
|
@ -23,6 +23,10 @@
|
|||
#ifndef MESA_SYMBOL_TABLE_H
|
||||
#define MESA_SYMBOL_TABLE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
struct _mesa_symbol_table;
|
||||
|
||||
extern void _mesa_symbol_table_push_scope(struct _mesa_symbol_table *table);
|
||||
|
|
@ -51,4 +55,8 @@ extern struct _mesa_symbol_table *_mesa_symbol_table_ctor(void);
|
|||
|
||||
extern void _mesa_symbol_table_dtor(struct _mesa_symbol_table *);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* MESA_SYMBOL_TABLE_H */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue