1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-30 06:35:23 +00:00

It's too bad we don't have a commit script that smacks me upside the head

when I do stupid things like this.

svn path=/trunk/icecast/; revision=2196
This commit is contained in:
Jack Moffitt 2001-10-20 06:51:29 +00:00
parent 8f6c02365d
commit 632c1e57fb
3 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#ifndef __CONNECTION_H__ #ifndef __CONNECTION_H__
#define __CONNECTION_H__ #define __CONNECTION_H__
#include <stdint.h>
typedef struct connection_tag typedef struct connection_tag
{ {
unsigned long id; unsigned long id;

View File

@ -22,6 +22,7 @@
#ifdef _WIN32 #ifdef _WIN32
#define snprintf _snprintf #define snprintf _snprintf
#endif
#undef CATMODULE #undef CATMODULE
#define CATMODULE "main" #define CATMODULE "main"

View File

@ -19,7 +19,9 @@
#include "client.h" #include "client.h"
#include "stats.h" #include "stats.h"
#ifdef _WIN32
#define vsnprintf _vsnprintf #define vsnprintf _vsnprintf
#endif
typedef struct _event_listener_tag typedef struct _event_listener_tag
{ {