Files
projectm/tests/playlist/ProjectMAPIMocks.cpp
Dane Wagner 7e45cbe1f9 Clean up minor warnings and code style
* Remove warnings for code in vendor folders
* Add pedantic and extra warnings in GCC only to projectM sources
* Rename ResetOpenGL to SetWindowSize
2024-02-01 11:27:10 -06:00

25 lines
847 B
C++

/**
* This file defines the few projectM API calls used in the playlist library. We're not interested
* in their implementation in this test suite.
*/
#include <projectM-4/projectM.h>
#include <projectM-4/projectM_export.h>
PROJECTM_EXPORT void projectm_set_preset_switch_requested_event_callback(projectm_handle,
projectm_preset_switch_requested_event,
void*)
{
}
PROJECTM_EXPORT void projectm_set_preset_switch_failed_event_callback(projectm_handle,
projectm_preset_switch_failed_event,
void*)
{
}
PROJECTM_EXPORT void projectm_load_preset_file(projectm_handle, const char*,
bool)
{
}