Blame hdspmixer/src/defines.h

Packit Service b98cfc
/*
Packit Service b98cfc
 *   HDSPMixer
Packit Service b98cfc
 *    
Packit Service b98cfc
 *   Copyright (C) 2003 Thomas Charbonnel (thomas@undata.org)
Packit Service b98cfc
 *    
Packit Service b98cfc
 *   This program is free software; you can redistribute it and/or modify
Packit Service b98cfc
 *   it under the terms of the GNU General Public License as published by
Packit Service b98cfc
 *   the Free Software Foundation; either version 2 of the License, or
Packit Service b98cfc
 *   (at your option) any later version.
Packit Service b98cfc
 *
Packit Service b98cfc
 *   This program is distributed in the hope that it will be useful,
Packit Service b98cfc
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service b98cfc
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service b98cfc
 *   GNU General Public License for more details.
Packit Service b98cfc
 *
Packit Service b98cfc
 *   You should have received a copy of the GNU General Public License
Packit Service b98cfc
 *   along with this program; if not, write to the Free Software
Packit Service b98cfc
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Packit Service b98cfc
 */
Packit Service b98cfc
Packit Service b98cfc
#ifndef DEFINES_H
Packit Service b98cfc
#define DEFINES_H
Packit Service b98cfc
Packit Service b98cfc
/* Uncomment this to make the setup window non-modal */
Packit Service b98cfc
//#define NON_MODAL_SETUP 1
Packit Service b98cfc
Packit Service b98cfc
#define HDSPeMADI 10
Packit Service b98cfc
#define HDSPeRayDAT 11
Packit Service b98cfc
#define HDSPeAIO 12
Packit Service b98cfc
#define HDSP_AES 13 /* both HDSP AES32 and HDSPe AES */
Packit Service b98cfc
Packit Service b98cfc
#define HDSP_MAX_CHANNELS 64
Packit Service b98cfc
#define HDSP_MAX_DEST	  32
Packit Service b98cfc
Packit Service b98cfc
#define STRIP_WIDTH 	  36
Packit Service b98cfc
#define FULLSTRIP_HEIGHT  253
Packit Service b98cfc
#define SMALLSTRIP_HEIGHT 208
Packit Service b98cfc
#define MENU_HEIGHT       20
Packit Service b98cfc
Packit Service b98cfc
#define MIN_WIDTH  2*STRIP_WIDTH
Packit Service b98cfc
#define MIN_HEIGHT MENU_HEIGHT
Packit Service b98cfc
Packit Service b98cfc
#define CF	     8
Packit Service b98cfc
#define FADER_HEIGHT 137
Packit Service b98cfc
#define METER_HEIGHT 139
Packit Service b98cfc
#define PEAK_HEIGHT  4
Packit Service b98cfc
Packit Service b98cfc
#define PAN_WIDTH 28
Packit Service b98cfc
Packit Service b98cfc
#define MAX_CARDS	3
Packit Service b98cfc
Packit Service b98cfc
/* Number of presets. 8 presets visible to the user, the 9th is used for
Packit Service b98cfc
 * holding temporary mixer data when switching cards, so it's not a real
Packit Service b98cfc
 * preset but more like a scratch pad.
Packit Service b98cfc
 */
Packit Service b98cfc
#define NUM_PRESETS	9
Packit Service b98cfc
Packit Service b98cfc
typedef unsigned long long int int64;
Packit Service b98cfc
Packit Service b98cfc
#endif
Packit Service b98cfc