~ubuntu-branches/debian/jessie/bristol/jessie

« back to all changes in this revision

Viewing changes to brighton/brightonMini.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-11-10 12:21:04 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20091110122104-432yau0haobyl122
Tags: 0.40.6-1
* Adopting this (Closes: #546954).
* Create new bristol-data runtime package, it will contain application's
  architecture-indipendent data files.
* Drop all patches, now useless.
* Switch to debhelper 7.
* debian/copyright: Update according to DEP-5 spec.
* debian/bristol.1: Fix little spelling mistake.
* Replace patch system, from dpatch to quilt.
* Add 01-spelling_errors.patch patch to fix spelling-error-in-binary.
* debian/rules: dh_makeshlibs doesn't touch shlibs/symbols file, libraries
  under /usr/lib/bristol/ are private.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
/*
3
3
 *  Diverse Bristol audio routines.
4
 
 *  Copyright (c) by Nick Copeland <nickycopeland@hotmail.com> 1996,2008
 
4
 *  Copyright (c) by Nick Copeland <nickycopeland@hotmail.com> 1996,2009
5
5
 *
6
6
 *
7
7
 *   This program is free software; you can redistribute it and/or modify
71
71
#define MEM_LOADING     0x04
72
72
#define SUPPRESS        0x08
73
73
#define NO_KEYTRACK     0x10
74
 
#define MIDI_DEBUG      0x20
 
74
#define REQ_MIDI_DEBUG  0x20
75
75
#define MIDI_NRP        0x40
 
76
#define REQ_MIDI_DEBUG2 0x80
76
77
 
77
78
typedef struct GuiSynth {
78
79
        struct GuiSynth *next, *last;
119
120
        int libtest;
120
121
        int voices;
121
122
        guiSynth *synths;
 
123
        char *host;
122
124
        int port;
123
125
} guimain;
124
126