mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-24 01:04:02 +02:00
Make some functions private.
This commit is contained in:
+2
-26
@@ -7898,18 +7898,6 @@ ma_context_init()
|
|||||||
MA_API ma_context_config ma_context_config_init(void);
|
MA_API ma_context_config ma_context_config_init(void);
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
Helper function for retrieving a pointer to a backend's context config.
|
|
||||||
|
|
||||||
|
|
||||||
Remarks
|
|
||||||
-------
|
|
||||||
This should only ever be used by custom backend implementations. It's used for retrieving the
|
|
||||||
pConfig pointer that has been associated with the specified backend vtable.
|
|
||||||
*/
|
|
||||||
MA_API const void* ma_context_config_find_backend_config(const ma_context_config* pConfig, const ma_device_backend_config* pBackendConfigs, size_t backendConfigCount, ma_device_backend_vtable* pVTable);
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Initializes a context.
|
Initializes a context.
|
||||||
|
|
||||||
@@ -8485,18 +8473,6 @@ ma_device_init_ex()
|
|||||||
MA_API ma_device_config ma_device_config_init(ma_device_type deviceType);
|
MA_API ma_device_config ma_device_config_init(ma_device_type deviceType);
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
Helper function for retrieving a pointer to a custom backend's context config.
|
|
||||||
|
|
||||||
|
|
||||||
Remarks
|
|
||||||
-------
|
|
||||||
This should only ever be used by custom backend implementations. It's used for retrieving the
|
|
||||||
pConfig pointer that has been associated with the specified backend vtable.
|
|
||||||
*/
|
|
||||||
MA_API const void* ma_device_config_find_backend_config(const ma_device_config* pConfig, ma_device_backend_vtable* pVTable);
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Initializes a device.
|
Initializes a device.
|
||||||
|
|
||||||
@@ -44627,7 +44603,7 @@ MA_API ma_context_config ma_context_config_init(void)
|
|||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
MA_API const void* ma_context_config_find_backend_config(const ma_context_config* pConfig, const ma_device_backend_config* pBackendConfigs, size_t backendConfigCount, ma_device_backend_vtable* pVTable)
|
static const void* ma_context_config_find_backend_config(const ma_context_config* pConfig, const ma_device_backend_config* pBackendConfigs, size_t backendConfigCount, ma_device_backend_vtable* pVTable)
|
||||||
{
|
{
|
||||||
const void* pBackendConfig;
|
const void* pBackendConfig;
|
||||||
|
|
||||||
@@ -45070,7 +45046,7 @@ MA_API ma_device_config ma_device_config_init(ma_device_type deviceType)
|
|||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
MA_API const void* ma_device_config_find_backend_config(const ma_device_config* pConfig, ma_device_backend_vtable* pVTable)
|
static const void* ma_device_config_find_backend_config(const ma_device_config* pConfig, ma_device_backend_vtable* pVTable)
|
||||||
{
|
{
|
||||||
const void* pBackendConfig;
|
const void* pBackendConfig;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user