Vita3K/vita3k/modules/SceSas/SceSas.cpp
hobyst 168dfb19ca Add license notice on source files which didn't have one
- Also updated the copyright notice year on all files to 2021
2021-08-19 23:14:27 +02:00

184 lines
3.8 KiB
C++

// Vita3K emulator project
// Copyright (C) 2021 Vita3K team
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#include "SceSas.h"
EXPORT(int, sceSasCore) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasCoreWithMix) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasExit) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasGetDryPeak) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasGetEndState) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasGetEnvelope) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasGetGrain) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasGetNeededMemorySize) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasGetOutputmode) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasGetPauseState) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasGetPreMasterPeak) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasGetWetPeak) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasInit) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasInitWithGrain) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetADSR) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetADSRmode) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetDistortion) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetEffect) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetEffectParam) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetEffectType) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetEffectVolume) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetGrain) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetKeyOff) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetKeyOn) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetNoise) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetOutputmode) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetPause) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetPitch) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetSL) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetSimpleADSR) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetVoice) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetVoicePCM) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSasSetVolume) {
return UNIMPLEMENTED();
}
BRIDGE_IMPL(sceSasCore)
BRIDGE_IMPL(sceSasCoreWithMix)
BRIDGE_IMPL(sceSasExit)
BRIDGE_IMPL(sceSasGetDryPeak)
BRIDGE_IMPL(sceSasGetEndState)
BRIDGE_IMPL(sceSasGetEnvelope)
BRIDGE_IMPL(sceSasGetGrain)
BRIDGE_IMPL(sceSasGetNeededMemorySize)
BRIDGE_IMPL(sceSasGetOutputmode)
BRIDGE_IMPL(sceSasGetPauseState)
BRIDGE_IMPL(sceSasGetPreMasterPeak)
BRIDGE_IMPL(sceSasGetWetPeak)
BRIDGE_IMPL(sceSasInit)
BRIDGE_IMPL(sceSasInitWithGrain)
BRIDGE_IMPL(sceSasSetADSR)
BRIDGE_IMPL(sceSasSetADSRmode)
BRIDGE_IMPL(sceSasSetDistortion)
BRIDGE_IMPL(sceSasSetEffect)
BRIDGE_IMPL(sceSasSetEffectParam)
BRIDGE_IMPL(sceSasSetEffectType)
BRIDGE_IMPL(sceSasSetEffectVolume)
BRIDGE_IMPL(sceSasSetGrain)
BRIDGE_IMPL(sceSasSetKeyOff)
BRIDGE_IMPL(sceSasSetKeyOn)
BRIDGE_IMPL(sceSasSetNoise)
BRIDGE_IMPL(sceSasSetOutputmode)
BRIDGE_IMPL(sceSasSetPause)
BRIDGE_IMPL(sceSasSetPitch)
BRIDGE_IMPL(sceSasSetSL)
BRIDGE_IMPL(sceSasSetSimpleADSR)
BRIDGE_IMPL(sceSasSetVoice)
BRIDGE_IMPL(sceSasSetVoicePCM)
BRIDGE_IMPL(sceSasSetVolume)