~ubuntu-branches/ubuntu/intrepid/blender/intrepid-updates

« back to all changes in this revision

Viewing changes to extern/verse/dist/v_network_in_que.h

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-08-08 02:45:40 UTC
  • mfrom: (12.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080808024540-kkjp7ekfivzhuw3l
Tags: 2.46+dfsg-4
* Fix python syntax warning in import_dxf.py, which led to nasty output
  in installation/upgrade logs during byte-compilation, using a patch
  provided by the script author (Closes: #492280):
   - debian/patches/45_fix_python_syntax_warning

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
typedef struct{
 
3
        void    *oldest;
 
4
        void    *newest;
 
5
        uint32  packet_id;
 
6
        uint32  seconds, fractions;             /* Current time. */
 
7
        uint32  acc_seconds, acc_fractions;     /* Accumulated time. */
 
8
}VNetInQueue;
 
9
 
 
10
typedef struct{
 
11
        void    *newer;
 
12
        void    *older;
 
13
        char    data[1500];
 
14
        size_t  size;
 
15
}VNetInPacked;
 
16
 
 
17
extern void             v_niq_clear(VNetInQueue *queue);
 
18
extern void             v_niq_timer_update(VNetInQueue *queue);
 
19
 
 
20
extern VNetInPacked *   v_niq_get(VNetInQueue *queue, size_t *length);
 
21
extern void             v_niq_release(VNetInQueue *queue, VNetInPacked *p);
 
22
extern char *           v_niq_store(VNetInQueue *queue, size_t length, unsigned int packet_id);
 
23
unsigned int            v_niq_free(VNetInQueue *queue);
 
24
extern uint32           v_niq_time_out(VNetInQueue *queue);