mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-16 14:51:14 +00:00
35 lines
932 B
C++
35 lines
932 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/common/filtall.cpp
|
|
// Purpose: Link all filter streams
|
|
// Author: Mike Wetherell
|
|
// Copyright: (c) 2006 Mike Wetherell
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_STREAMS
|
|
|
|
#if wxUSE_ZLIB
|
|
#include "wx/zstream.h"
|
|
#endif
|
|
|
|
// Reference filter classes to ensure they are linked into a statically
|
|
// linked program that uses Find or GetFirst to look for an filter handler.
|
|
// It is in its own file so that the user can override this behaviour by
|
|
// providing their own implementation.
|
|
|
|
void wxUseFilterClasses()
|
|
{
|
|
#if wxUSE_ZLIB
|
|
wxZlibClassFactory();
|
|
wxGzipClassFactory();
|
|
#endif
|
|
}
|
|
|
|
#endif // wxUSE_STREAMS
|