mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-02-15 03:55:54 +00:00
New subproject/data locations: - presets/presets-cream_of_the_crop: https://github.com/projectM-visualizer/presets-cream-of-the-crop - presets/presets-En_D: https://github.com/projectM-visualizer/presets-en-d - presets/textures: https://github.com/projectM-visualizer/presets-milkdrop-texture-pack - src/EyeTune: https://github.com/projectM-visualizer/frontend-uwp - src/museum: https://github.com/projectM-visualizer/museum - src/projectm-android: https://github.com/projectM-visualizer/examples-android - src/projectM-emscripten: https://github.com/projectM-visualizer/examples-emscripten - src/projectM-jack: https://github.com/projectM-visualizer/frontend-qt - src/projectM-libvisual: https://github.com/projectM-visualizer/frontend-libvisual-plug-in - src/projectM-libvisual-alsa: Deleted. - src/projectM-moviegen: https://github.com/projectM-visualizer/tools-moviegen - src/projectM-MusicPlugin: https://github.com/projectM-visualizer/frontend-music-plug-in - src/projectM-pulseaudio: https://github.com/projectM-visualizer/frontend-qt - src/projectM-qt: https://github.com/projectM-visualizer/frontend-qt - src/projectM-sdl: src/sdl-test-ui - src/projectM-test: tests
19 lines
374 B
C++
19 lines
374 B
C++
//
|
|
// File: getConfigFilename.h
|
|
//
|
|
// Author: fatray
|
|
//
|
|
// Created on 05 December 2007, 23:39
|
|
//
|
|
|
|
#ifndef _GETCONFIGFILENAME_H
|
|
#define _GETCONFIGFILENAME_H
|
|
|
|
//FIXME: define this here? in .cpp? or somewhere else?
|
|
#define CONFIG_FILE "/share/projectM/config.inp"
|
|
|
|
// get the full pathname of a configfile
|
|
std::string getConfigFilename();
|
|
|
|
#endif /* _GETCONFIGFILENAME_H */
|