KDEGames

check-libsndfile-capabilities.cpp
1/*
2 SPDX-FileCopyrightText: 2012 Stefan Majewsky <majewsky@gmx.net>
3
4 SPDX-License-Identifier: LGPL-2.0-only
5*/
6
7#include <sndfile.h>
8
9int main()
10{
11 // We need Ogg/Vorbis support. If sndfile.h is too old, these enum values
12 // will be missing and compiler errors will be generated.
13 (void)SF_FORMAT_OGG;
14 (void)SF_FORMAT_VORBIS;
15
16 return 0;
17}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:16:50 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.