mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-08-07 21:03:10 +00:00
syntax-check: Add missing #include <config.h>
This commit is contained in:
parent
31eb8eeecb
commit
c0b2b1fc49
@ -14,6 +14,10 @@
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "pixmap-cache.h"
|
||||
|
||||
int pixmap_cache_unlocked_set_lossy(PixmapCache *cache, uint64_t id, int lossy)
|
||||
|
||||
@ -1,3 +1,6 @@
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
|
||||
#include "common/log.h"
|
||||
|
||||
@ -1,3 +1,6 @@
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
#include "spice_image_cache.h"
|
||||
|
||||
static ImageCacheItem *image_cache_find(ImageCache *cache, uint64_t id)
|
||||
|
||||
@ -1,6 +1,10 @@
|
||||
/* Replay a previously recorded file (via SPICE_WORKER_RECORD_FILENAME)
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user