View | Details | Raw Unified | Return to bug 170207
Collapse All | Expand All

(-)./ctronome.h (-3 / +5 lines)
Lines 1-4 Link Here
1
#include <sys/soundcard.h>
1
#include <sys/soundcard.h>
2
#include <stdint.h>
3
2
#define MYNAME "ctronome"
4
#define MYNAME "ctronome"
3
#define VERSION "0.5.3"
5
#define VERSION "0.5.3"
4
#define CREDITS "homepage: http://ctronome.kign.org/\n"
6
#define CREDITS "homepage: http://ctronome.kign.org/\n"
Lines 28-36 Link Here
28
           for defaults/limits and required WAV format see README\n"
30
           for defaults/limits and required WAV format see README\n"
29
31
30
/* my lazy type definitions */
32
/* my lazy type definitions */
31
typedef unsigned long int DWORD;
33
typedef uint32_t DWORD;
32
typedef unsigned short int WORD;
34
typedef uint16_t WORD;
33
typedef unsigned char BYTE;
35
typedef uint8_t BYTE;
34
typedef DWORD dword;
36
typedef DWORD dword;
35
typedef WORD word;
37
typedef WORD word;
36
typedef BYTE byte;
38
typedef BYTE byte;

Return to bug 170207