mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
9a9e76725a
shuffle function with a smarter, weighted shuffle function based on how often you play/skip files and their sound contents. Development Status: 4 - Beta
15 lines
255 B
C
15 lines
255 B
C
--- plugin.h.orig Wed Feb 11 17:44:30 2004
|
|
+++ plugin.h Wed Feb 11 17:45:06 2004
|
|
@@ -1,7 +1,11 @@
|
|
#ifndef __PLUGIN_H
|
|
#define __PLUGIN_H
|
|
|
|
+#if HAVE_STDINT_H
|
|
#include <stdint.h>
|
|
+#else
|
|
+#include <sys/types.h>
|
|
+#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|