Browse Source

Cleanup.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3464 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/v1.9.3
sletz 17 years ago
parent
commit
8922e4df2a
3 changed files with 14 additions and 14 deletions
  1. +8
    -8
      common/JackPort.cpp
  2. +5
    -5
      common/shm.h
  3. +1
    -1
      windows/Setup/src/README

+ 8
- 8
common/JackPort.cpp View File

@@ -109,12 +109,12 @@ int JackPort::RequestMonitor(bool onoff)
{
/**
jackd.h
* If @ref JackPortCanMonitor is set for this @a port, turn input
* monitoring on or off. Otherwise, do nothing.
* If @ref JackPortCanMonitor is set for this @a port, turn input
* monitoring on or off. Otherwise, do nothing.
if (!(fFlags & JackPortCanMonitor))
if (!(fFlags & JackPortCanMonitor))
return -1;
*/
*/

if (onoff) {
fMonitorRequests++;
@@ -129,12 +129,12 @@ int JackPort::EnsureMonitor(bool onoff)
{
/**
jackd.h
* If @ref JackPortCanMonitor is set for this @a port, turn input
* monitoring on or off. Otherwise, do nothing.
* If @ref JackPortCanMonitor is set for this @a port, turn input
* monitoring on or off. Otherwise, do nothing.
if (!(fFlags & JackPortCanMonitor))
if (!(fFlags & JackPortCanMonitor))
return -1;
*/
*/

if (onoff) {
if (fMonitorRequests == 0) {


+ 5
- 5
common/shm.h View File

@@ -38,7 +38,7 @@ extern "C"
typedef char shm_name_t[SHM_NAME_MAX];
typedef shm_name_t jack_shm_id_t;

#elif WIN32 // steph TO CHECK
#elif WIN32 // TO CHECK
#define NAME_MAX 255
#ifndef SHM_NAME_MAX
#define SHM_NAME_MAX NAME_MAX
@@ -133,15 +133,15 @@ extern "C"
void jack_shm_copy_to_registry (jack_shm_info_t*,
jack_shm_registry_index_t*);
void jack_release_shm_info (jack_shm_registry_index_t);
char* jack_shm_addr (jack_shm_info_t* si); // steph
char* jack_shm_addr (jack_shm_info_t* si);

// here begin the API
int jack_register_server (const char *server_name, int new_registry);
void jack_unregister_server (const char *server_name);

int jack_initialize_shm (const char *server_name);
int jack_initialize_shm_server (void); // steph
int jack_initialize_shm_client (void); // steph
int jack_initialize_shm_server (void);
int jack_initialize_shm_client (void);
int jack_cleanup_shm (void);

int jack_shmalloc (const char *shm_name, jack_shmsize_t size,
@@ -149,7 +149,7 @@ extern "C"
void jack_release_shm (jack_shm_info_t*);
void jack_destroy_shm (jack_shm_info_t*);
int jack_attach_shm (jack_shm_info_t*);
int jack_attach_shm_read (jack_shm_info_t*); // steph
int jack_attach_shm_read (jack_shm_info_t*);
int jack_resize_shm (jack_shm_info_t*, jack_shmsize_t size);

#ifdef __cplusplus


+ 1
- 1
windows/Setup/src/README View File

@@ -8,7 +8,7 @@ This installer will install everything to use Jack Audio Connection Kit (JACK) (
Microsoft Runtime Libraries
=============================================
In order to use this software, you will need the Microsoft Vusual C++ 2008 redistributable package. This package is freely available on the Microsoft download center. Please be sure you install the correct version (2008). This package is required by portaudio to run windows specific audio drivers (MME, DSound and ASIO).
In order to use this software, you will need the Microsoft Visual C++ 2008 redistributable package. This package is freely available on the Microsoft download center. Please be sure you install the correct version (2008). This package is required by portaudio to run windows specific audio drivers (MME, DSound and ASIO).
=============================================
QJACKCTL on Windows


Loading…
Cancel
Save