7029
|
1 #ifndef NAV_READ_H_INCLUDED
|
|
2 #define NAV_READ_H_INCLUDED
|
|
3
|
|
4 /*
|
|
5 * Copyright (C) 2000, 2001 Håkan Hjort <d95hjort@dtek.chalmers.se>.
|
|
6 *
|
|
7 * This program is free software; you can redistribute it and/or modify
|
|
8 * it under the terms of the GNU General Public License as published by
|
|
9 * the Free Software Foundation; either version 2 of the License, or
|
|
10 * (at your option) any later version.
|
|
11 *
|
|
12 * This program is distributed in the hope that it will be useful,
|
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15 * GNU General Public License for more details.
|
|
16 *
|
|
17 * You should have received a copy of the GNU General Public License
|
|
18 * along with this program; if not, write to the Free Software
|
|
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
20 */
|
|
21
|
7033
|
22 #include "nav_types.h"
|
7029
|
23
|
|
24 #ifdef __cplusplus
|
|
25 extern "C" {
|
|
26 #endif
|
|
27
|
|
28 /**
|
|
29 * Reads the PCI packet data pointed to into pci struct.
|
|
30 */
|
|
31 void navRead_PCI(pci_t *, unsigned char *);
|
|
32
|
|
33 /**
|
|
34 * Reads the DSI packet data pointed to into dsi struct.
|
|
35 */
|
|
36 void navRead_DSI(dsi_t *, unsigned char *);
|
|
37
|
|
38 #ifdef __cplusplus
|
|
39 };
|
|
40 #endif
|
|
41 #endif /* NAV_READ_H_INCLUDED */
|