root/branches/streaming-rework/src/fbtypes.h

Revision 336, 1.1 kB (checked in by pieterpalmers, 17 years ago)

- Merged the developments on trunk since branch-off:

branch occurred at rev 194
svn merge -r 194:HEAD https://svn.sourceforge.net/svnroot/freebob/trunk/libfreebob

- Modified libfreebobavc to use the messagebuffer for debug info.
- This should compile and run

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 /* fbtypes.h
2  * Copyright (C) 2005 by Daniel Wagner
3  *
4  * This file is part of FreeBoB.
5  *
6  * FreeBoB is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  * FreeBoB 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 FreeBoB; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18  * MA 02111-1307 USA.
19  */
20  
21 #ifndef FBTYPES_H
22 #define FBTYPES_H
23  
24 #include <libraw1394/raw1394.h>
25  
26 typedef quadlet_t   fb_quadlet_t;
27 typedef byte_t      fb_byte_t;
28 typedef octlet_t    fb_octlet_t;
29 typedef nodeid_t    fb_nodeid_t;
30 typedef nodeaddr_t  fb_nodeaddr_t;
31
32 class DeviceManager;
33
34 struct freebob_handle {
35     DeviceManager*   m_deviceManager;
36 };
37
38 #endif
Note: See TracBrowser for help on using the browser.