Wrap with extern "C" { } if building with __cplusplus compiler.
This commit is contained in:
parent
14ccc48670
commit
e8ad916ca2
1 changed files with 12 additions and 2 deletions
|
@ -35,8 +35,11 @@
|
||||||
|
|
||||||
$Header$
|
$Header$
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.1 1999/04/05 21:32:45 curt
|
Revision 1.2 1999/04/22 18:47:25 curt
|
||||||
Initial revision
|
Wrap with extern "C" { } if building with __cplusplus compiler.
|
||||||
|
|
||||||
|
Revision 1.1.1.1 1999/04/05 21:32:45 curt
|
||||||
|
Start of 0.6.x branch.
|
||||||
|
|
||||||
Revision 1.5 1998/10/17 01:34:14 curt
|
Revision 1.5 1998/10/17 01:34:14 curt
|
||||||
C++ ifying ...
|
C++ ifying ...
|
||||||
|
@ -70,6 +73,9 @@ Initial Flight Gear revision.
|
||||||
#ifndef _LS_COCKPIT_H
|
#ifndef _LS_COCKPIT_H
|
||||||
#define _LS_COCKPIT_H
|
#define _LS_COCKPIT_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
float long_stick, lat_stick, rudder_pedal;
|
float long_stick, lat_stick, rudder_pedal;
|
||||||
|
@ -104,4 +110,8 @@ extern COCKPIT cockpit_;
|
||||||
#define Brake_pct cockpit_.brake_pct
|
#define Brake_pct cockpit_.brake_pct
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* _LS_COCKPIT_H */
|
#endif /* _LS_COCKPIT_H */
|
||||||
|
|
Loading…
Add table
Reference in a new issue