mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
9 lines
263 B
C++
9 lines
263 B
C++
// -*- mode: c++ -*-
|
|
// Indirectly include Allegro header so that we can disable warnings about unused parameters
|
|
// when compiling Audacity itself.
|
|
|
|
#pragma warning( push )
|
|
#pragma warning( disable : 4100)
|
|
#include "../portsmf/allegro.h"
|
|
#pragma warning( pop )
|