Ajout version Release/x64 avec les libraries x64 et tuning de la version Debug

This commit is contained in:
MarcEricMartel
2021-12-10 07:16:43 -05:00
parent 9b56a9b4a5
commit f4ec4816af
2745 changed files with 292873 additions and 8 deletions

View File

@@ -0,0 +1,31 @@
// Copyright (C) 2002-2018 Nikolaus Gebhardt
// This file is part of the "irrKlang" library.
// For conditions of distribution and use, see copyright notice in irrKlang.h
#ifndef __E_IRRKLANG_STREAM_MODES_H_INCLUDED__
#define __E_IRRKLANG_STREAM_MODES_H_INCLUDED__
namespace irrklang
{
//! An enumeration for all types of supported stream modes
enum E_STREAM_MODE
{
//! Autodetects the best stream mode for a specified audio data.
ESM_AUTO_DETECT = 0,
//! Streams the audio data when needed.
ESM_STREAMING,
//! Loads the whole audio data into the memory.
ESM_NO_STREAMING,
//! This enumeration literal is never used, it only forces the compiler to
//! compile these enumeration values to 32 bit.
ESM_FORCE_32_BIT = 0x7fffffff
};
} // end namespace irrklang
#endif