Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/audaspace/bindings/C/AUD_PlaybackManager.cpp')
-rw-r--r--extern/audaspace/bindings/C/AUD_PlaybackManager.cpp94
1 files changed, 0 insertions, 94 deletions
diff --git a/extern/audaspace/bindings/C/AUD_PlaybackManager.cpp b/extern/audaspace/bindings/C/AUD_PlaybackManager.cpp
deleted file mode 100644
index 69ecb0987e1..00000000000
--- a/extern/audaspace/bindings/C/AUD_PlaybackManager.cpp
+++ /dev/null
@@ -1,94 +0,0 @@
-/*******************************************************************************
-* Copyright 2015-2016 Juan Francisco Crespo Galán
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-******************************************************************************/
-
-#include "Exception.h"
-
-#include <cassert>
-
-using namespace aud;
-
-#define AUD_CAPI_IMPLEMENTATION
-#include "AUD_PlaybackManager.h"
-
-AUD_API AUD_PlaybackManager* AUD_PlaybackManager_create(AUD_Device* device)
-{
- assert(device);
-
- try
- {
- return new AUD_PlaybackManager(new PlaybackManager(*device));
- }
- catch(Exception&)
- {
- return nullptr;
- }
-}
-
-AUD_API void AUD_PlaybackManager_free(AUD_PlaybackManager* manager)
-{
- assert(manager);
- delete manager;
-}
-
-AUD_API void AUD_PlaybackManager_play(AUD_PlaybackManager* manager, AUD_Sound* sound, unsigned int catKey)
-{
- assert(manager);
- assert(sound);
-
- (*manager)->play(*sound, catKey);
-}
-
-AUD_API int AUD_PlaybackManager_resume(AUD_PlaybackManager* manager, unsigned int catKey)
-{
- assert(manager);
- return (*manager)->resume(catKey);
-}
-
-AUD_API int AUD_PlaybackManager_pause(AUD_PlaybackManager* manager, unsigned int catKey)
-{
- assert(manager);
- return (*manager)->pause(catKey);
-}
-
-AUD_API unsigned int AUD_PlaybackManager_addCategory(AUD_PlaybackManager* manager, float volume)
-{
- assert(manager);
- return (*manager)->addCategory(volume);
-}
-
-AUD_API float AUD_PlaybackManager_getVolume(AUD_PlaybackManager* manager, unsigned int catKey)
-{
- assert(manager);
- return (*manager)->getVolume(catKey);
-}
-
-AUD_API int AUD_PlaybackManager_setVolume(AUD_PlaybackManager* manager, float volume, unsigned int catKey)
-{
- assert(manager);
- return (*manager)->setVolume(volume, catKey);
-}
-
-AUD_API int AUD_PlaybackManager_stop(AUD_PlaybackManager* manager, unsigned int catKey)
-{
- assert(manager);
- return (*manager)->stop(catKey);
-}
-
-AUD_API void AUD_PlaybackManager_clean(AUD_PlaybackManager* manager)
-{
- assert(manager);
- (*manager)->clean();
-}