CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/ext/minimp3/minimp3.cpp
Views: 1401
1
// Gotta define it somewhere.
2
#define MINIMP3_IMPLEMENTATION
3
#define MINIMP3_NO_STDIO
4
5
#ifdef _MSC_VER
6
#pragma warning(disable:4267)
7
#pragma warning(disable:4244)
8
#endif
9
10
#include "minimp3.h"
11
#include "minimp3_ex.h"
12
13