Browse Source

Allow "make doxygen" to generate docs; Misc changes

tags/1.9.4
falkTX 11 years ago
parent
commit
0bcbb6b53b
4 changed files with 13 additions and 7 deletions
  1. +5
    -0
      Makefile
  2. +4
    -3
      source/backend/CarlaBackend.hpp
  3. +1
    -1
      source/backend/Makefile
  4. +3
    -3
      source/carla_backend.py

+ 5
- 0
Makefile View File

@@ -142,6 +142,11 @@ debug:

# --------------------------------------------------------------

doxygen:
$(MAKE) doxygen -C source/backend

# --------------------------------------------------------------

install:
# Create directories
install -d $(DESTDIR)$(PREFIX)/bin/


+ 4
- 3
source/backend/CarlaBackend.hpp View File

@@ -110,6 +110,7 @@ const unsigned int PARAMETER_USES_CUSTOM_TEXT = 0x100; //!< Parameter uses custo
*
* Types are valid URIs.\n
* Any non-string, non-simple type (not integral) is saved in a base64 encoded format.
* @{
*/
const char* const CUSTOM_DATA_INVALID = nullptr; //!< Null or Invalid data.
const char* const CUSTOM_DATA_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk"; //!< Carla Chunk URI
@@ -124,9 +125,9 @@ const char* const CUSTOM_DATA_STRING = "http://kxstudio.sf.net/ns/carla/string"
*/
const unsigned int PATCHBAY_PORT_IS_INPUT = 0x01; //!< Patchbay port is input.
const unsigned int PATCHBAY_PORT_IS_OUTPUT = 0x02; //!< Patchbay port is output.
const unsigned int PATCHBAY_PORT_IS_AUDIO = 0x04; //!< Patchbay port is of Audio type.
const unsigned int PATCHBAY_PORT_IS_CV = 0x08; //!< Patchbay port is of CV type.
const unsigned int PATCHBAY_PORT_IS_MIDI = 0x10; //!< Patchbay port is of MIDI type.
const unsigned int PATCHBAY_PORT_IS_AUDIO = 0x10; //!< Patchbay port is of Audio type.
const unsigned int PATCHBAY_PORT_IS_CV = 0x20; //!< Patchbay port is of CV type.
const unsigned int PATCHBAY_PORT_IS_MIDI = 0x40; //!< Patchbay port is of MIDI type.
/**@}*/

/*!


+ 1
- 1
source/backend/Makefile View File

@@ -29,5 +29,5 @@ debug:

# --------------------------------------------------------------

doc: CarlaBackend.doxygen
doxygen: CarlaBackend.doxygen
doxygen $^

+ 3
- 3
source/carla_backend.py View File

@@ -134,9 +134,9 @@ CUSTOM_DATA_STRING = "http://kxstudio.sf.net/ns/carla/string"
# Patchbay Port Hints
PATCHBAY_PORT_IS_INPUT = 0x01
PATCHBAY_PORT_IS_OUTPUT = 0x02
PATCHBAY_PORT_IS_AUDIO = 0x04
PATCHBAY_PORT_IS_CV = 0x08
PATCHBAY_PORT_IS_MIDI = 0x10
PATCHBAY_PORT_IS_AUDIO = 0x10
PATCHBAY_PORT_IS_CV = 0x20
PATCHBAY_PORT_IS_MIDI = 0x40

# Binary Type
BINARY_NONE = 0


Loading…
Cancel
Save