├── .gitignore ├── LICENSE.txt ├── Makefile ├── Makefile.linuxMinGW ├── README.md ├── libs ├── include │ ├── ogg │ │ ├── config_types.h │ │ ├── ogg.h │ │ └── os_types.h │ └── vorbis │ │ ├── codec.h │ │ └── vorbisfile.h ├── libogg.a ├── libogg.la ├── libvorbis.a ├── libvorbis.la ├── libvorbisfile.a └── libvorbisfile.la ├── ogg-winmm.c ├── ogg-winmm.def ├── ogg-winmm.rc.in ├── player.c ├── player.h ├── resource └── winmm.ini ├── stub.h └── stubs.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.linuxMinGW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/Makefile.linuxMinGW -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/README.md -------------------------------------------------------------------------------- /libs/include/ogg/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/include/ogg/config_types.h -------------------------------------------------------------------------------- /libs/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/include/ogg/ogg.h -------------------------------------------------------------------------------- /libs/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/include/ogg/os_types.h -------------------------------------------------------------------------------- /libs/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/include/vorbis/codec.h -------------------------------------------------------------------------------- /libs/include/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/include/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /libs/libogg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/libogg.a -------------------------------------------------------------------------------- /libs/libogg.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/libogg.la -------------------------------------------------------------------------------- /libs/libvorbis.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/libvorbis.a -------------------------------------------------------------------------------- /libs/libvorbis.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/libvorbis.la -------------------------------------------------------------------------------- /libs/libvorbisfile.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/libvorbisfile.a -------------------------------------------------------------------------------- /libs/libvorbisfile.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/libs/libvorbisfile.la -------------------------------------------------------------------------------- /ogg-winmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/ogg-winmm.c -------------------------------------------------------------------------------- /ogg-winmm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/ogg-winmm.def -------------------------------------------------------------------------------- /ogg-winmm.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/ogg-winmm.rc.in -------------------------------------------------------------------------------- /player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/player.c -------------------------------------------------------------------------------- /player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/player.h -------------------------------------------------------------------------------- /resource/winmm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/resource/winmm.ini -------------------------------------------------------------------------------- /stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/stub.h -------------------------------------------------------------------------------- /stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayuanx/ogg-winmm/HEAD/stubs.c --------------------------------------------------------------------------------