~kamalmostafa/ubuntu/lucid/pdp/fix-504941-ftbfs

« back to all changes in this revision

Viewing changes to puredata/pdp_compat.c

  • Committer: Bazaar Package Importer
  • Author(s): Guenter Geiger (Debian/GNU)
  • Date: 2005-03-15 22:21:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050315222105-1q287rsihmd9j1tb
Tags: 1:0.12.4-2
* fixed the hardcoded depends
* added 3dp library

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *   Pure Data Packet system implementation. Compatibility routines.
3
 
 *   Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
4
 
 *
5
 
 *   This program is free software; you can redistribute it and/or modify
6
 
 *   it under the terms of the GNU General Public License as published by
7
 
 *   the Free Software Foundation; either version 2 of the License, or
8
 
 *   (at your option) any later version.
9
 
 *
10
 
 *   This program is distributed in the hope that it will be useful,
11
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *   GNU General Public License for more details.
14
 
 *
15
 
 *   You should have received a copy of the GNU General Public License
16
 
 *   along with this program; if not, write to the Free Software
17
 
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
 
 *
19
 
 */
20
 
 
21
 
/* this file contains misc communication methods */
22
 
 
23
 
#include <stdio.h>
24
 
 
25
 
#include "pdp_pd.h"
26
 
#include "pdp_comm.h"
27
 
#include "pdp_internals.h"
28
 
 
29
 
/* all symbols are C style */
30
 
#ifdef __cplusplus
31
 
extern "C"
32
 
{
33
 
#endif
34
 
 
35
 
 
36
 
 
37
 
void
38
 
pdp_pass_if_valid(t_outlet *outlet, int *packet)
39
 
{
40
 
    pdp_packet_pass_if_valid(outlet, packet);
41
 
}
42
 
 
43
 
void
44
 
pdp_replace_if_valid(int *dpacket, int *spacket)
45
 
{
46
 
    pdp_packet_replace_if_valid(dpacket, spacket);
47
 
    
48
 
}
49
 
 
50
 
 
51
 
 
52
 
 
53
 
 
54
 
 
55
 
#ifdef __cplusplus
56
 
}
57
 
#endif