diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-06-01 14:09:34 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-06-18 10:18:19 -0600 |
| commit | babea180f81aa997d804528fb38cbad9c54cfd7e (patch) | |
| tree | d830ee2036d8c5531a3f63f337d6b23741688f8f /loader/loader.c | |
| parent | 06a204948df4bfc65f34d341fcfbd9ef57bddac2 (diff) | |
| download | usermoji-babea180f81aa997d804528fb38cbad9c54cfd7e.tar.xz | |
loader: Put static function prototypes in .c
Diffstat (limited to 'loader/loader.c')
| -rw-r--r-- | loader/loader.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/loader/loader.c b/loader/loader.c index b55ddcf8..680f2932 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -56,6 +56,14 @@ void loader_add_to_ext_list( uint32_t prop_list_count, const struct loader_extension_property *prop_list); +static loader_platform_dl_handle loader_add_layer_lib( + const char *chain_type, + struct loader_extension_property *ext_prop); + +static void loader_remove_layer_lib( + struct loader_instance *inst, + struct loader_extension_property *ext_prop); + static void loader_deactivate_instance_layers(struct loader_instance *instance); /* TODO: do we need to lock around access to linked lists and such? */ |
