mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	rename core_proxy -> core
Rename core_proxy to core and move the introspect and interface contents to core.h In an effort to promote the proxy API.
This commit is contained in:
		
							parent
							
								
									8ea78c2e3f
								
							
						
					
					
						commit
						ecc6b27cd7
					
				
					 54 changed files with 1068 additions and 1059 deletions
				
			
		| 
						 | 
				
			
			@ -44,9 +44,9 @@ static const struct spa_dict_item module_props[] = {
 | 
			
		|||
	{ PW_KEY_MODULE_VERSION, PACKAGE_VERSION },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct pw_proxy *pw_core_proxy_node_export(struct pw_core_proxy *core_proxy,
 | 
			
		||||
struct pw_proxy *pw_core_node_export(struct pw_core *core,
 | 
			
		||||
		uint32_t type, struct pw_properties *props, void *object, size_t user_data_size);
 | 
			
		||||
struct pw_proxy *pw_core_proxy_spa_node_export(struct pw_core_proxy *core_proxy,
 | 
			
		||||
struct pw_proxy *pw_core_spa_node_export(struct pw_core *core,
 | 
			
		||||
		uint32_t type, struct pw_properties *props, void *object, size_t user_data_size);
 | 
			
		||||
 | 
			
		||||
struct pw_protocol *pw_protocol_native_ext_client_node_init(struct pw_context *context);
 | 
			
		||||
| 
						 | 
				
			
			@ -178,11 +178,11 @@ int pipewire__module_init(struct pw_module *module, const char *args)
 | 
			
		|||
	pw_protocol_native_ext_client_node0_init(context);
 | 
			
		||||
 | 
			
		||||
	data->export_node.type = PW_TYPE_INTERFACE_Node;
 | 
			
		||||
	data->export_node.func = pw_core_proxy_node_export;
 | 
			
		||||
	data->export_node.func = pw_core_node_export;
 | 
			
		||||
	pw_context_register_export_type(context, &data->export_node);
 | 
			
		||||
 | 
			
		||||
	data->export_spanode.type = SPA_TYPE_INTERFACE_Node;
 | 
			
		||||
	data->export_spanode.func = pw_core_proxy_spa_node_export;
 | 
			
		||||
	data->export_spanode.func = pw_core_spa_node_export;
 | 
			
		||||
	pw_context_register_export_type(context, &data->export_spanode);
 | 
			
		||||
 | 
			
		||||
	pw_module_add_listener(module, &data->module_listener, &module_events, data);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue