lo_osc_types.h | lo_osc_types.h | |||
---|---|---|---|---|
skipping to change at line 14 | skipping to change at line 14 | |||
* This program is free software; you can redistribute it and/or modify | * This program is free software; you can redistribute it and/or modify | |||
* it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | |||
* the Free Software Foundation; either version 2 of the License, or | * the Free Software Foundation; either version 2 of the License, or | |||
* (at your option) any later version. | * (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This program is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* | * | |||
* $Id: lo_osc_types.h,v 1.4 2005/07/05 12:56:31 theno23 Exp $ | * $Id: lo_osc_types.h,v 1.5 2005/09/02 22:41:07 theno23 Exp $ | |||
*/ | */ | |||
#ifndef LO_OSC_TYPES_H | #ifndef LO_OSC_TYPES_H | |||
#define LO_OSC_TYPES_H | #define LO_OSC_TYPES_H | |||
#include <stdint.h> | #include <stdint.h> | |||
/** | /** | |||
* \addtogroup liblo | * \addtogroup liblo | |||
* @{ | * @{ | |||
skipping to change at line 109 | skipping to change at line 109 | |||
/** 64 bit IEEE-754 double. */ | /** 64 bit IEEE-754 double. */ | |||
double d; | double d; | |||
/** 64 bit IEEE-754 double. */ | /** 64 bit IEEE-754 double. */ | |||
double f64; | double f64; | |||
/** Standard C, NULL terminated string. */ | /** Standard C, NULL terminated string. */ | |||
char s; | char s; | |||
/** Standard C, NULL terminated, string. Used in systems which | /** Standard C, NULL terminated, string. Used in systems which | |||
* distinguish strings and symbols. */ | * distinguish strings and symbols. */ | |||
char S; | char S; | |||
/** Standard C, 8 bit, char. */ | /** Standard C, 8 bit, char. */ | |||
uint32_t c; | unsigned char c; | |||
/** A 4 byte MIDI packet. */ | /** A 4 byte MIDI packet. */ | |||
uint8_t m[4]; | uint8_t m[4]; | |||
/** OSC TimeTag value. */ | /** OSC TimeTag value. */ | |||
lo_timetag t; | lo_timetag t; | |||
} lo_arg; | } lo_arg; | |||
#define LO_TT_IMMEDIATE ((lo_timetag){0U,0U}) | #define LO_TT_IMMEDIATE ((lo_timetag){0U,0U}) | |||
/** @} */ | /** @} */ | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||