Vita3K/vita3k/modules/SceSystemGesture/SceSystemGesture.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

104 lines
3.2 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 "SceSystemGesture.h"
EXPORT(int, sceSystemGestureCreateTouchRecognizer) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureFinalizePrimitiveTouchRecognizer) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureGetPrimitiveTouchEventByIndex) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureGetPrimitiveTouchEventByPrimitiveID) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureGetPrimitiveTouchEvents) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureGetPrimitiveTouchEventsCount) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureGetTouchEventByEventID) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureGetTouchEventByIndex) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureGetTouchEvents) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureGetTouchEventsCount) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureGetTouchRecognizerInformation) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureInitializePrimitiveTouchRecognizer) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureResetPrimitiveTouchRecognizer) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureResetTouchRecognizer) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureUpdatePrimitiveTouchRecognizer) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureUpdateTouchRecognizer) {
return UNIMPLEMENTED();
}
EXPORT(int, sceSystemGestureUpdateTouchRecognizerRectangle) {
return UNIMPLEMENTED();
}
BRIDGE_IMPL(sceSystemGestureCreateTouchRecognizer)
BRIDGE_IMPL(sceSystemGestureFinalizePrimitiveTouchRecognizer)
BRIDGE_IMPL(sceSystemGestureGetPrimitiveTouchEventByIndex)
BRIDGE_IMPL(sceSystemGestureGetPrimitiveTouchEventByPrimitiveID)
BRIDGE_IMPL(sceSystemGestureGetPrimitiveTouchEvents)
BRIDGE_IMPL(sceSystemGestureGetPrimitiveTouchEventsCount)
BRIDGE_IMPL(sceSystemGestureGetTouchEventByEventID)
BRIDGE_IMPL(sceSystemGestureGetTouchEventByIndex)
BRIDGE_IMPL(sceSystemGestureGetTouchEvents)
BRIDGE_IMPL(sceSystemGestureGetTouchEventsCount)
BRIDGE_IMPL(sceSystemGestureGetTouchRecognizerInformation)
BRIDGE_IMPL(sceSystemGestureInitializePrimitiveTouchRecognizer)
BRIDGE_IMPL(sceSystemGestureResetPrimitiveTouchRecognizer)
BRIDGE_IMPL(sceSystemGestureResetTouchRecognizer)
BRIDGE_IMPL(sceSystemGestureUpdatePrimitiveTouchRecognizer)
BRIDGE_IMPL(sceSystemGestureUpdateTouchRecognizer)
BRIDGE_IMPL(sceSystemGestureUpdateTouchRecognizerRectangle)