├── .gitattributes ├── .gitignore ├── .gitmodules ├── Cream-meta.pd ├── Cream.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Deprecated ├── AudioFFT.cpp ├── AudioFFT.h ├── FFTConvolver.cpp ├── FFTConvolver.h ├── Makefile.am ├── Utilities.cpp ├── Utilities.h ├── c.convolve_tilde.cpp ├── c.freeverb_tilde.cpp ├── c.loadmess.cpp ├── c.pak.cpp ├── c.patcherargs.cpp ├── c.patcherinfos.cpp ├── c.patchermess.cpp └── c.prepend.cpp ├── LICENSE.txt ├── Makefile.am ├── Package └── Cream │ ├── Cream-help.pd │ ├── INSTALL.txt │ ├── LICENSE.txt │ ├── Makefile.am │ ├── README.txt │ ├── changelog.txt │ ├── helps │ ├── Makefile.am │ ├── c.bang-help.pd │ ├── c.blackboard-help.pd │ ├── c.breakpoints-help.pd │ ├── c.colorpanel-help.pd │ ├── c.convolve~-help.pd │ ├── c.dsp~-help.pd │ ├── c.freeverb~-help.pd │ ├── c.gain~-help.pd │ ├── c.incdec-help.pd │ ├── c.knob-help.pd │ ├── c.matrix-help.pd │ ├── c.menu-help.pd │ ├── c.meter~-help.pd │ ├── c.number-help.pd │ ├── c.number~-help.pd │ ├── c.pak-help.pd │ ├── c.patcherargs-help.pd │ ├── c.patcherinfos-help.pd │ ├── c.plane-help.pd │ ├── c.preset-help.pd │ ├── c.radio-help.pd │ ├── c.rslider-help.pd │ ├── c.scope~-help.pd │ ├── c.slider-help.pd │ ├── c.tab-help.pd │ └── c.toggle-help.pd │ └── misc │ ├── Makefile.am │ ├── c.help.gui.pd │ ├── c.help.header.pd │ ├── c.help.pub.pd │ ├── c.mousestate.pd │ ├── c.objects.txt │ ├── choco.gif │ ├── choco.preset │ ├── image1.gif │ └── image2.gif ├── README.md ├── README.txt ├── Sources ├── Makefile.am ├── c.bang.cpp ├── c.blackboard.cpp ├── c.breakpoints.cpp ├── c.camomile.cpp ├── c.colorpanel.cpp ├── c.dsp_tilde.cpp ├── c.gain_tilde.cpp ├── c.incdec.cpp ├── c.keyboard.cpp ├── c.knob.cpp ├── c.matrix.cpp ├── c.menu.cpp ├── c.meter_tilde.cpp ├── c.number.cpp ├── c.number_tilde.cpp ├── c.plane.cpp ├── c.preset.cpp ├── c.radio.cpp ├── c.rslider.cpp ├── c.scope_tilde.cpp ├── c.slider.cpp ├── c.tab.cpp ├── c.toggle.cpp └── c.wavesel.cpp ├── autogen.sh ├── c.library.cbp ├── c.library.cpp ├── c.library.hpp ├── c.library.sln ├── c.library.vcxproj ├── c.library.vcxproj.filters ├── config └── .gitignore ├── configure.ac └── m4 ├── .gitignore └── ax_fat_binary.m4 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cream-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Cream-meta.pd -------------------------------------------------------------------------------- /Cream.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Cream.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Cream.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Cream.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Deprecated/AudioFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/AudioFFT.cpp -------------------------------------------------------------------------------- /Deprecated/AudioFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/AudioFFT.h -------------------------------------------------------------------------------- /Deprecated/FFTConvolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/FFTConvolver.cpp -------------------------------------------------------------------------------- /Deprecated/FFTConvolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/FFTConvolver.h -------------------------------------------------------------------------------- /Deprecated/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/Makefile.am -------------------------------------------------------------------------------- /Deprecated/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/Utilities.cpp -------------------------------------------------------------------------------- /Deprecated/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/Utilities.h -------------------------------------------------------------------------------- /Deprecated/c.convolve_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/c.convolve_tilde.cpp -------------------------------------------------------------------------------- /Deprecated/c.freeverb_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/c.freeverb_tilde.cpp -------------------------------------------------------------------------------- /Deprecated/c.loadmess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/c.loadmess.cpp -------------------------------------------------------------------------------- /Deprecated/c.pak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/c.pak.cpp -------------------------------------------------------------------------------- /Deprecated/c.patcherargs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/c.patcherargs.cpp -------------------------------------------------------------------------------- /Deprecated/c.patcherinfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/c.patcherinfos.cpp -------------------------------------------------------------------------------- /Deprecated/c.patchermess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/c.patchermess.cpp -------------------------------------------------------------------------------- /Deprecated/c.prepend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Deprecated/c.prepend.cpp -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Makefile.am -------------------------------------------------------------------------------- /Package/Cream/Cream-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/Cream-help.pd -------------------------------------------------------------------------------- /Package/Cream/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/INSTALL.txt -------------------------------------------------------------------------------- /Package/Cream/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/LICENSE.txt -------------------------------------------------------------------------------- /Package/Cream/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/Makefile.am -------------------------------------------------------------------------------- /Package/Cream/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/README.txt -------------------------------------------------------------------------------- /Package/Cream/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/changelog.txt -------------------------------------------------------------------------------- /Package/Cream/helps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/Makefile.am -------------------------------------------------------------------------------- /Package/Cream/helps/c.bang-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.bang-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.blackboard-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.blackboard-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.breakpoints-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.breakpoints-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.colorpanel-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.colorpanel-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.convolve~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.convolve~-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.dsp~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.dsp~-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.freeverb~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.freeverb~-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.gain~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.gain~-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.incdec-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.incdec-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.knob-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.knob-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.matrix-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.matrix-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.menu-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.menu-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.meter~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.meter~-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.number-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.number-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.number~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.number~-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.pak-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.pak-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.patcherargs-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.patcherargs-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.patcherinfos-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.patcherinfos-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.plane-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.plane-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.preset-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.preset-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.radio-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.radio-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.rslider-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.rslider-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.scope~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.scope~-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.slider-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.slider-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.tab-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.tab-help.pd -------------------------------------------------------------------------------- /Package/Cream/helps/c.toggle-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/helps/c.toggle-help.pd -------------------------------------------------------------------------------- /Package/Cream/misc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/misc/Makefile.am -------------------------------------------------------------------------------- /Package/Cream/misc/c.help.gui.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/misc/c.help.gui.pd -------------------------------------------------------------------------------- /Package/Cream/misc/c.help.header.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/misc/c.help.header.pd -------------------------------------------------------------------------------- /Package/Cream/misc/c.help.pub.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/misc/c.help.pub.pd -------------------------------------------------------------------------------- /Package/Cream/misc/c.mousestate.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/misc/c.mousestate.pd -------------------------------------------------------------------------------- /Package/Cream/misc/c.objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/misc/c.objects.txt -------------------------------------------------------------------------------- /Package/Cream/misc/choco.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/misc/choco.gif -------------------------------------------------------------------------------- /Package/Cream/misc/choco.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/misc/choco.preset -------------------------------------------------------------------------------- /Package/Cream/misc/image1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/misc/image1.gif -------------------------------------------------------------------------------- /Package/Cream/misc/image2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Package/Cream/misc/image2.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/README.txt -------------------------------------------------------------------------------- /Sources/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/Makefile.am -------------------------------------------------------------------------------- /Sources/c.bang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.bang.cpp -------------------------------------------------------------------------------- /Sources/c.blackboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.blackboard.cpp -------------------------------------------------------------------------------- /Sources/c.breakpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.breakpoints.cpp -------------------------------------------------------------------------------- /Sources/c.camomile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.camomile.cpp -------------------------------------------------------------------------------- /Sources/c.colorpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.colorpanel.cpp -------------------------------------------------------------------------------- /Sources/c.dsp_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.dsp_tilde.cpp -------------------------------------------------------------------------------- /Sources/c.gain_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.gain_tilde.cpp -------------------------------------------------------------------------------- /Sources/c.incdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.incdec.cpp -------------------------------------------------------------------------------- /Sources/c.keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.keyboard.cpp -------------------------------------------------------------------------------- /Sources/c.knob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.knob.cpp -------------------------------------------------------------------------------- /Sources/c.matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.matrix.cpp -------------------------------------------------------------------------------- /Sources/c.menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.menu.cpp -------------------------------------------------------------------------------- /Sources/c.meter_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.meter_tilde.cpp -------------------------------------------------------------------------------- /Sources/c.number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.number.cpp -------------------------------------------------------------------------------- /Sources/c.number_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.number_tilde.cpp -------------------------------------------------------------------------------- /Sources/c.plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.plane.cpp -------------------------------------------------------------------------------- /Sources/c.preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.preset.cpp -------------------------------------------------------------------------------- /Sources/c.radio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.radio.cpp -------------------------------------------------------------------------------- /Sources/c.rslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.rslider.cpp -------------------------------------------------------------------------------- /Sources/c.scope_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.scope_tilde.cpp -------------------------------------------------------------------------------- /Sources/c.slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.slider.cpp -------------------------------------------------------------------------------- /Sources/c.tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.tab.cpp -------------------------------------------------------------------------------- /Sources/c.toggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.toggle.cpp -------------------------------------------------------------------------------- /Sources/c.wavesel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/Sources/c.wavesel.cpp -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/autogen.sh -------------------------------------------------------------------------------- /c.library.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/c.library.cbp -------------------------------------------------------------------------------- /c.library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/c.library.cpp -------------------------------------------------------------------------------- /c.library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/c.library.hpp -------------------------------------------------------------------------------- /c.library.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/c.library.sln -------------------------------------------------------------------------------- /c.library.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/c.library.vcxproj -------------------------------------------------------------------------------- /c.library.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/c.library.vcxproj.filters -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/configure.ac -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /m4/ax_fat_binary.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CICM/CreamLibrary/HEAD/m4/ax_fat_binary.m4 --------------------------------------------------------------------------------