Changeset 5740:b3aff85876f1 in roaraudio for roard/clients.c


Ignore:
Timestamp:
11/09/12 02:51:16 (11 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

commit 1: Moved protocol support into new plugins protocol-esound, protocol-rplay and protocol-gopher (Closes: #311)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/clients.c

    r5739 r5740  
    3333struct roar_client_server * g_clients[ROAR_CLIENTS_MAX]; 
    3434 
    35 extern struct roar_dl_proto __proto_common_rplay; 
    36 extern struct roar_dl_proto __proto_common_gopher; 
    37 extern struct roar_dl_proto __proto_common_esd; 
    38  
    3935static struct roard_proto_handle __protos[MAX_PROTOS] = { 
    4036 {.proto = ROAR_PROTO_ROARAUDIO, .lhandle = NULL, .type = ROARD_PROTO_TYPE_BUILDIN, 
    4137 .impl = {.buildin = 0}}, 
    42 #if !defined(ROAR_WITHOUT_DCOMP_EMUL_ESD) && defined(ROAR_HAVE_H_ESD) 
    43  {.proto = ROAR_PROTO_ESOUND, .lhandle = NULL, .type = ROARD_PROTO_TYPE_COMMON, 
    44  .impl = {.common = &__proto_common_esd}}, 
    45 #endif 
    46 #ifndef ROAR_WITHOUT_DCOMP_EMUL_RPLAY 
    47  {.proto = ROAR_PROTO_RPLAY, .lhandle = NULL, .type = ROARD_PROTO_TYPE_COMMON, 
    48  .impl = {.common = &__proto_common_rplay}}, 
    49 #endif 
    50 #ifndef ROAR_WITHOUT_DCOMP_EMUL_GOPHER 
    51  {.proto = ROAR_PROTO_GOPHER, .lhandle = NULL, .type = ROARD_PROTO_TYPE_COMMON, 
    52  .impl = {.common = &__proto_common_gopher}}, 
    53 #endif 
    5438 {.proto = -1} 
    5539}; 
Note: See TracChangeset for help on using the changeset viewer.