Commit c713d924d8107d8c2ccd0e27832a09992397eeae

Werner Lemberg 2000-08-01T13:17:04

Added #ifdef's for C++ to all header files.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
diff --git a/builds/unix/ftconfig.in b/builds/unix/ftconfig.in
index a24b679..e1c02b0 100644
--- a/builds/unix/ftconfig.in
+++ b/builds/unix/ftconfig.in
@@ -42,6 +42,11 @@
 #include <freetype/config/ftoption.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /*               PLATFORM-SPECIFIC CONFIGURATION MACROS                  */
@@ -166,6 +171,12 @@
 #define  FT_EXPORT_VAR( x )   extern  x
 #endif
 
+
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTCONFIG_H */
 
 
diff --git a/include/freetype/config/ftconfig.h b/include/freetype/config/ftconfig.h
index 338e22c..bf4d331 100644
--- a/include/freetype/config/ftconfig.h
+++ b/include/freetype/config/ftconfig.h
@@ -44,6 +44,11 @@
 #include <freetype/config/ftoption.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /*               PLATFORM-SPECIFIC CONFIGURATION MACROS                  */
@@ -181,6 +186,11 @@
 #define  FT_EXPORT_VAR( x )   extern  x
 #endif
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTCONFIG_H */
 
 
diff --git a/include/freetype/config/ftoption.h b/include/freetype/config/ftoption.h
index a7e1f40..b973e83 100644
--- a/include/freetype/config/ftoption.h
+++ b/include/freetype/config/ftoption.h
@@ -20,6 +20,11 @@
 #define FTOPTION_H
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /*                 USER-SELECTABLE CONFIGURATION MACROS                  */
@@ -389,6 +394,11 @@
 #undef T1_CONFIG_OPTION_NO_MM_SUPPORT
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTOPTION_H */
 
 
diff --git a/include/freetype/fterrors.h b/include/freetype/fterrors.h
index 9fb8099..c33ecf6 100644
--- a/include/freetype/fterrors.h
+++ b/include/freetype/fterrors.h
@@ -44,6 +44,11 @@
 #define FTERRORS_H
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
 #ifndef FT_ERRORDEF
 
 #define FT_ERRORDEF( e, v, s )  e = v,
@@ -160,6 +165,11 @@
 #undef FT_ERRORDEF
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTERRORS_H */
 
 
diff --git a/include/freetype/ftmac.h b/include/freetype/ftmac.h
index edb3491..13aa640 100644
--- a/include/freetype/ftmac.h
+++ b/include/freetype/ftmac.h
@@ -25,6 +25,11 @@
 #define FT_MAC_H
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /* <Function>                                                            */
@@ -61,4 +66,9 @@
                                 FT_Face*    aface );
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FT_MAC_H */
diff --git a/include/freetype/ftnames.h b/include/freetype/ftnames.h
index 2969214..642c166 100644
--- a/include/freetype/ftnames.h
+++ b/include/freetype/ftnames.h
@@ -26,6 +26,11 @@
 #include <freetype/freetype.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   typedef struct  FT_SfntName_
   {
     FT_UShort  platform_id;
@@ -46,6 +51,11 @@
                                                FT_SfntName*  aname );
                                                
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTNAMES_H */
 
 
diff --git a/include/freetype/ftsystem.h b/include/freetype/ftsystem.h
index bc74bce..4311a3d 100644
--- a/include/freetype/ftsystem.h
+++ b/include/freetype/ftsystem.h
@@ -20,6 +20,11 @@
 #define FTSYSTEM_H
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /*                  M E M O R Y   M A N A G E M E N T                    */
@@ -95,6 +100,11 @@
   };
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTSYSTEM_H */
 
 
diff --git a/include/freetype/fttypes.h b/include/freetype/fttypes.h
index ec90906..f3e6f1a 100644
--- a/include/freetype/fttypes.h
+++ b/include/freetype/fttypes.h
@@ -24,6 +24,11 @@
 #include <freetype/ftimage.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /* <Type>                                                                */
@@ -394,6 +399,11 @@
 #define FT_IS_EMPTY( list )  ( (list).head == 0 )
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTTYPES_H */
 
 
diff --git a/include/freetype/internal/autohint.h b/include/freetype/internal/autohint.h
index 5d35a5d..bea7c92 100644
--- a/include/freetype/internal/autohint.h
+++ b/include/freetype/internal/autohint.h
@@ -73,6 +73,11 @@
 #include <freetype/freetype.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   typedef struct FT_AutoHinterRec_  *FT_AutoHinter;
 
 
@@ -189,6 +194,11 @@
   } FT_AutoHinter_Interface;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* AUTOHINT_H */
 
 
diff --git a/include/freetype/internal/ftdriver.h b/include/freetype/internal/ftdriver.h
index 592de49..e239fd9 100644
--- a/include/freetype/internal/ftdriver.h
+++ b/include/freetype/internal/ftdriver.h
@@ -24,6 +24,11 @@
 #include <freetype/config/ftconfig.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   typedef FT_Error  (*FTDriver_initFace)( FT_Stream      stream,
                                           FT_Face        face,
                                           FT_Int         typeface_index,
@@ -176,6 +181,11 @@
   } FT_Driver_Class;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTDRIVER_H */
 
 
diff --git a/include/freetype/internal/ftmemory.h b/include/freetype/internal/ftmemory.h
index da8d3a4..48403ec 100644
--- a/include/freetype/internal/ftmemory.h
+++ b/include/freetype/internal/ftmemory.h
@@ -24,6 +24,11 @@
 #include <freetype/fttypes.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /* <Macro>                                                               */
@@ -121,6 +126,11 @@
 #define FREE( _pointer_ )  FT_Free( memory, (void**)&(_pointer_) )
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTMEMORY_H */
 
 
diff --git a/include/freetype/internal/psnames.h b/include/freetype/internal/psnames.h
index ed86235..c7eb22c 100644
--- a/include/freetype/internal/psnames.h
+++ b/include/freetype/internal/psnames.h
@@ -24,6 +24,11 @@
 #include <freetype/freetype.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /* <FuncType>                                                            */
@@ -214,6 +219,11 @@
   } PSNames_Interface;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* PSNAMES_H */
 
 
diff --git a/include/freetype/internal/sfnt.h b/include/freetype/internal/sfnt.h
index 380ee93..0339258 100644
--- a/include/freetype/internal/sfnt.h
+++ b/include/freetype/internal/sfnt.h
@@ -25,6 +25,11 @@
 #include <freetype/internal/tttypes.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /* <FuncType>                                                            */
@@ -486,6 +491,11 @@
   } SFNT_Interface;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* SFNT_H */
 
 
diff --git a/include/freetype/internal/t1errors.h b/include/freetype/internal/t1errors.h
index 58566d8..a81be21 100644
--- a/include/freetype/internal/t1errors.h
+++ b/include/freetype/internal/t1errors.h
@@ -20,6 +20,11 @@
 #define T1ERRORS_H
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /************************ error codes declaration **************/
 
   /* The error codes are grouped into `classes' used to indicate the */
@@ -61,6 +66,11 @@
 #define T1_Err_Stack_Overflow          FT_Err_Invalid_File_Format
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* T1ERRORS_H */
 
 
diff --git a/include/freetype/internal/t1types.h b/include/freetype/internal/t1types.h
index 4d41a6b..0fa3855 100644
--- a/include/freetype/internal/t1types.h
+++ b/include/freetype/internal/t1types.h
@@ -25,6 +25,11 @@
 #include <freetype/internal/psnames.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*************************************************************************/
   /*************************************************************************/
@@ -182,6 +187,11 @@
   } CID_FaceRec;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* T1TYPES_H */
 
 
diff --git a/include/freetype/internal/t2errors.h b/include/freetype/internal/t2errors.h
index d685220..dc872c4 100644
--- a/include/freetype/internal/t2errors.h
+++ b/include/freetype/internal/t2errors.h
@@ -20,6 +20,11 @@
 #define T2ERRORS_H
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /* Error codes declaration                                               */
@@ -115,6 +120,11 @@
 #define T2_Err_Could_Not_Find_Context     0x550
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* T2ERRORS_H */
 
 
diff --git a/include/freetype/internal/t2types.h b/include/freetype/internal/t2types.h
index 033f315..2f9c9b8 100644
--- a/include/freetype/internal/t2types.h
+++ b/include/freetype/internal/t2types.h
@@ -24,6 +24,11 @@
 #include <freetype/freetype.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /* <Struct>                                                              */
@@ -212,6 +217,11 @@
   } CFF_Font;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* T2TYPES_H */
 
 
diff --git a/include/freetype/internal/tterrors.h b/include/freetype/internal/tterrors.h
index b53e9f3..c987623 100644
--- a/include/freetype/internal/tterrors.h
+++ b/include/freetype/internal/tterrors.h
@@ -20,6 +20,11 @@
 #define TTERRORS_H
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /* Error codes declaration                                               */
@@ -115,6 +120,11 @@
 #define TT_Err_Could_Not_Find_Context     0x450
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* TTERRORS_H */
 
 
diff --git a/include/freetype/internal/tttypes.h b/include/freetype/internal/tttypes.h
index 1fd43ce..2440203 100644
--- a/include/freetype/internal/tttypes.h
+++ b/include/freetype/internal/tttypes.h
@@ -24,6 +24,11 @@
 #include <freetype/tttables.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*************************************************************************/
   /*************************************************************************/
@@ -1576,6 +1581,11 @@
   };
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* TTTYPES_H */
 
 
diff --git a/include/freetype/t1tables.h b/include/freetype/t1tables.h
index 323e013..6c75f71 100644
--- a/include/freetype/t1tables.h
+++ b/include/freetype/t1tables.h
@@ -24,6 +24,11 @@
 #include <freetype/freetype.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /* Note that we separate font data in T1_FontInfo and T1_Private */
   /* structures in order to support Multiple Master fonts.         */
 
@@ -229,6 +234,11 @@
   } CID_Info;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* T1TABLES_H */
 
 
diff --git a/include/freetype/ttnameid.h b/include/freetype/ttnameid.h
index 4890242..e76ff61 100644
--- a/include/freetype/ttnameid.h
+++ b/include/freetype/ttnameid.h
@@ -20,6 +20,11 @@
 #define TTNAMEID_H
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*                                                                       */
   /* Possible values for the `platform' identifier code in the name        */
@@ -692,6 +697,11 @@
 #endif /* !HAVE_LIMIT_ON_IDENTS */
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* TTNAMEID_H */
 
 
diff --git a/include/freetype/tttags.h b/include/freetype/tttags.h
index 9de9810..177a4d3 100644
--- a/include/freetype/tttags.h
+++ b/include/freetype/tttags.h
@@ -23,6 +23,11 @@
 #include <freetype/freetype.h>   /* for MAKE_TT_TAG() */
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
 #define TTAG_cmap  FT_MAKE_TAG( 'c', 'm', 'a', 'p' )
 #define TTAG_cvt   FT_MAKE_TAG( 'c', 'v', 't', ' ' )
 #define TTAG_CFF   FT_MAKE_TAG( 'C', 'F', 'F', ' ' )
@@ -60,6 +65,11 @@
 #define TTAG_vhea  FT_MAKE_TAG( 'v', 'h', 'e', 'a' )
 #define TTAG_vmtx  FT_MAKE_TAG( 'v', 'm', 't', 'x' )
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* TTAGS_H */
 
 
diff --git a/src/autohint/ahangles.h b/src/autohint/ahangles.h
index 4eb36bf..11b499a 100644
--- a/src/autohint/ahangles.h
+++ b/src/autohint/ahangles.h
@@ -38,6 +38,11 @@
 #include <freetype/internal/ftobjs.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /* PI expressed in ah_angles -- we don't really need an important */
   /* precision, so 256 should be enough                             */
 #define AH_PI       256
@@ -57,6 +62,11 @@
   AH_Angle  ah_angle( FT_Vector*  v );
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* AHANGLES_H */
 
 
diff --git a/src/autohint/ahglobal.h b/src/autohint/ahglobal.h
index 79e7358..a3dff29 100644
--- a/src/autohint/ahglobal.h
+++ b/src/autohint/ahglobal.h
@@ -37,6 +37,11 @@
 #include <freetype/internal/ftobjs.h>  /* for LOCAL_DEF/LOCAL_FUNC */
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
 #define AH_IS_TOP_BLUE( b )  ( (b) == ah_blue_capital_top || \
                                (b) == ah_blue_small_top   )
 
@@ -46,6 +51,11 @@
   FT_Error  ah_hinter_compute_globals( AH_Hinter*  hinter );
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* AHGLOBAL_H */
 
 
diff --git a/src/autohint/ahglyph.h b/src/autohint/ahglyph.h
index 66fd5e3..ffbf715 100644
--- a/src/autohint/ahglyph.h
+++ b/src/autohint/ahglyph.h
@@ -34,6 +34,11 @@
 #endif
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   typedef enum  AH_UV_
   {
     ah_uv_fxy,
@@ -87,6 +92,11 @@
   void  ah_outline_done( AH_Outline*  outline );
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* AHGLYPH_H */
 
 
diff --git a/src/autohint/ahhint.h b/src/autohint/ahhint.h
index bb297fb..d22a5ba 100644
--- a/src/autohint/ahhint.h
+++ b/src/autohint/ahhint.h
@@ -34,6 +34,11 @@
 #endif
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
 #define AH_HINT_DEFAULT        0
 #define AH_HINT_NO_ALIGNMENT   1
 #define AH_HINT_NO_HORZ_EDGES  0x20000L
@@ -66,6 +71,11 @@
                                      void*       global_hints );
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* AHHINT_H */
 
 
diff --git a/src/autohint/ahloader.h b/src/autohint/ahloader.h
index 4a8563c..ba7b48c 100644
--- a/src/autohint/ahloader.h
+++ b/src/autohint/ahloader.h
@@ -36,6 +36,11 @@
 #define AHLOADER_H
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
 #ifdef _STANDALONE_
 
   typedef struct  AH_GlyphLoad_
@@ -118,6 +123,12 @@
 
 #endif /* _STANDALONE_ */
 
+
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* AHLOADER_H */
 
 
diff --git a/src/autohint/ahmodule.h b/src/autohint/ahmodule.h
index 28b0753..ed9cd25 100644
--- a/src/autohint/ahmodule.h
+++ b/src/autohint/ahmodule.h
@@ -24,8 +24,19 @@
 
 #include <freetype/ftmodule.h>
 
+
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   FT_EXPORT_VAR( const FT_Module_Class )  autohint_module_class;
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* AHMODULE_H */
 
 
diff --git a/src/autohint/ahoptim.h b/src/autohint/ahoptim.h
index a1f52bf..24f5a52 100644
--- a/src/autohint/ahoptim.h
+++ b/src/autohint/ahoptim.h
@@ -34,6 +34,11 @@
 #endif
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /* the maximal number of stem configurations to record */
   /* during optimization                                 */
 #define AH_MAX_CONFIGS  8
@@ -130,6 +135,11 @@
   void AH_Optimizer_Done( AH_Optimizer*  optimizer );
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* AHOPTIM_H */
 
 
diff --git a/src/autohint/ahtypes.h b/src/autohint/ahtypes.h
index 3372ea9..f8e9d2c 100644
--- a/src/autohint/ahtypes.h
+++ b/src/autohint/ahtypes.h
@@ -54,6 +54,11 @@
 #endif
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   /*************************************************************************/
   /*************************************************************************/
   /*************************************************************************/
@@ -486,6 +491,11 @@
   } AH_Hinter;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* AHTYPES_H */
 
 
diff --git a/src/cff/t2driver.h b/src/cff/t2driver.h
index e0b0afd..189f27b 100644
--- a/src/cff/t2driver.h
+++ b/src/cff/t2driver.h
@@ -21,9 +21,19 @@
 
 #include <freetype/internal/ftdriver.h>
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   FT_EXPORT_VAR( const FT_Driver_Class )  cff_driver_class;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* T2DRIVER_H */
 
 
diff --git a/src/cid/cidriver.h b/src/cid/cidriver.h
index a9674ee..786110f 100644
--- a/src/cid/cidriver.h
+++ b/src/cid/cidriver.h
@@ -21,8 +21,18 @@
 
 #include <freetype/internal/ftdriver.h>
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   FT_EXPORT_VAR( const  FT_Driver_Class )  t1cid_driver_class;
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* CIDRIVER_H */
 
 
diff --git a/src/psnames/psmodule.h b/src/psnames/psmodule.h
index ff7ef06..513c99e 100644
--- a/src/psnames/psmodule.h
+++ b/src/psnames/psmodule.h
@@ -21,8 +21,19 @@
 
 #include <freetype/ftmodule.h>
 
+
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   FT_EXPORT_VAR( const FT_Module_Class )  psnames_module_class;
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* PSDRIVER_H */
 
 
diff --git a/src/raster1/ftrend1.h b/src/raster1/ftrend1.h
index b8fff83..76926ae 100644
--- a/src/raster1/ftrend1.h
+++ b/src/raster1/ftrend1.h
@@ -19,9 +19,15 @@
 #ifndef FTREND1_H
 #define FTREND1_H
 
+
 #include <freetype/ftrender.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   FT_EXPORT_VAR( const FT_Renderer_Class )  ft_raster1_renderer_class;
 
   /* this renderer is _NOT_ part of the default modules, you'll need */
@@ -31,6 +37,11 @@
   FT_EXPORT_VAR( const FT_Renderer_Class )  ft_raster5_renderer_class;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTREND1_H */
 
 
diff --git a/src/sfnt/sfdriver.h b/src/sfnt/sfdriver.h
index 92c9c81..72e3e65 100644
--- a/src/sfnt/sfdriver.h
+++ b/src/sfnt/sfdriver.h
@@ -21,8 +21,19 @@
 
 #include <freetype/ftmodule.h>
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   FT_EXPORT_VAR( const FT_Module_Class )  sfnt_module_class;
 
+
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* SFDRIVER_H */
 
 
diff --git a/src/smooth/ftsmooth.h b/src/smooth/ftsmooth.h
index 4b8a533..723b414 100644
--- a/src/smooth/ftsmooth.h
+++ b/src/smooth/ftsmooth.h
@@ -21,6 +21,12 @@
 
 #include <freetype/ftrender.h>
 
+
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
 #ifndef FT_CONFIG_OPTION_NO_STD_RASTER
   FT_EXPORT_VAR( const FT_Renderer_Class )  ft_std_renderer_class;
 #endif
@@ -29,6 +35,11 @@
   FT_EXPORT_VAR( const FT_Renderer_Class )  ft_smooth_renderer_class;
 #endif
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* FTSMOOTH_H */
 
 
diff --git a/src/truetype/ttdriver.h b/src/truetype/ttdriver.h
index 9867fbc..a0a275e 100644
--- a/src/truetype/ttdriver.h
+++ b/src/truetype/ttdriver.h
@@ -22,9 +22,19 @@
 #include <freetype/internal/ftdriver.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   FT_EXPORT_VAR( const FT_Driver_Class )  tt_driver_class;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* TTDRIVER_H */
 
 
diff --git a/src/type1/t1driver.h b/src/type1/t1driver.h
index 5d615b5..8744b96 100644
--- a/src/type1/t1driver.h
+++ b/src/type1/t1driver.h
@@ -21,9 +21,19 @@
 
 #include <freetype/internal/ftdriver.h>
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   FT_EXPORT_VAR( const  FT_Driver_Class )  t1_driver_class;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* T1DRIVER_H */
 
 
diff --git a/src/type1z/z1driver.h b/src/type1z/z1driver.h
index 08bd544..4367ca8 100644
--- a/src/type1z/z1driver.h
+++ b/src/type1z/z1driver.h
@@ -21,8 +21,18 @@
 
 #include <freetype/internal/ftdriver.h>
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   FT_EXPORT_VAR( const  FT_Driver_Class )  t1_driver_class;
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* Z1DRIVER_H */
 
 
diff --git a/src/winfonts/winfnt.h b/src/winfonts/winfnt.h
index eaf308b..0acc04e 100644
--- a/src/winfonts/winfnt.h
+++ b/src/winfonts/winfnt.h
@@ -22,6 +22,11 @@
 #include <freetype/internal/ftdriver.h>
 
 
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+
   typedef struct  WinMZ_Header_
   {
     FT_UShort  magic;
@@ -144,6 +149,11 @@
   FT_EXPORT_VAR( const FT_Driver_Class )  winfnt_driver_class;
 
 
+#ifdef __cplusplus
+  }
+#endif
+
+
 #endif /* WINFNT_H */