Browse Source

Suppress warning on WIN32

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1319 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.61
sletz 19 years ago
parent
commit
c17a61460c
12 changed files with 52 additions and 5 deletions
  1. +4
    -1
      common/JackAudioDriver.cpp
  2. +5
    -1
      common/JackDriver.cpp
  3. +5
    -1
      common/JackDriverLoader.cpp
  4. +5
    -1
      common/JackFreewheelDriver.cpp
  5. +4
    -0
      common/JackGlobalsServer.cpp
  6. +4
    -0
      common/JackInternalClient.cpp
  7. +5
    -1
      common/JackLoopbackDriver.cpp
  8. +4
    -0
      common/JackServer.cpp
  9. +4
    -0
      common/JackServerAPI.cpp
  10. +4
    -0
      common/JackServerGlobals.cpp
  11. +4
    -0
      common/JackThreadedDriver.cpp
  12. +4
    -0
      windows/JackWinNamedPipeServerChannel.cpp

+ 4
- 1
common/JackAudioDriver.cpp View File

@@ -17,6 +17,10 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/ */
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackAudioDriver.h" #include "JackAudioDriver.h"
#include "JackTime.h" #include "JackTime.h"
@@ -31,7 +35,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
namespace Jack namespace Jack
{ {



JackAudioDriver::JackAudioDriver(const char* name, JackEngine* engine, JackSynchro** table) JackAudioDriver::JackAudioDriver(const char* name, JackEngine* engine, JackSynchro** table)
: JackDriver(name, engine, table), : JackDriver(name, engine, table),
fCaptureChannels(0), fCaptureChannels(0),


+ 5
- 1
common/JackDriver.cpp View File

@@ -16,7 +16,11 @@ You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/
*/
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackDriver.h" #include "JackDriver.h"
#include "JackTime.h" #include "JackTime.h"


+ 5
- 1
common/JackDriverLoader.cpp View File

@@ -16,7 +16,11 @@ You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/
*/
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackDriverLoader.h" #include "JackDriverLoader.h"
#include "JackError.h" #include "JackError.h"


+ 5
- 1
common/JackFreewheelDriver.cpp View File

@@ -16,7 +16,11 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/
*/
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackFreewheelDriver.h" #include "JackFreewheelDriver.h"
#include "JackEngineControl.h" #include "JackEngineControl.h"


+ 4
- 0
common/JackGlobalsServer.cpp View File

@@ -16,6 +16,10 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/ */
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackGlobals.h" #include "JackGlobals.h"




+ 4
- 0
common/JackInternalClient.cpp View File

@@ -17,6 +17,10 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/ */
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackInternalClient.h" #include "JackInternalClient.h"
#include "JackEngine.h" #include "JackEngine.h"


+ 5
- 1
common/JackLoopbackDriver.cpp View File

@@ -16,7 +16,11 @@ You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/
*/
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackLoopbackDriver.h" #include "JackLoopbackDriver.h"
#include "JackEngineControl.h" #include "JackEngineControl.h"


+ 4
- 0
common/JackServer.cpp View File

@@ -17,6 +17,10 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/ */
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackServer.h" #include "JackServer.h"
#include "JackTime.h" #include "JackTime.h"


+ 4
- 0
common/JackServerAPI.cpp View File

@@ -17,6 +17,10 @@ This program is free software; you can redistribute it and/or modify
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/ */
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackInternalClient.h" #include "JackInternalClient.h"
#include "JackGraphManager.h" #include "JackGraphManager.h"


+ 4
- 0
common/JackServerGlobals.cpp View File

@@ -16,6 +16,10 @@ This program is free software; you can redistribute it and/or modify
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/ */
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackServerGlobals.h" #include "JackServerGlobals.h"
#include "JackError.h" #include "JackError.h"


+ 4
- 0
common/JackThreadedDriver.cpp View File

@@ -17,6 +17,10 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/ */
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackThreadedDriver.h" #include "JackThreadedDriver.h"
#include "JackError.h" #include "JackError.h"


+ 4
- 0
windows/JackWinNamedPipeServerChannel.cpp View File

@@ -16,6 +16,10 @@ Copyright (C) 2004-2006 Grame
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.


*/ */
#ifdef WIN32
#pragma warning (disable : 4786)
#endif


#include "JackWinNamedPipeServerChannel.h" #include "JackWinNamedPipeServerChannel.h"
#include "JackRequest.h" #include "JackRequest.h"


Loading…
Cancel
Save