# HG changeset patch # User Matti Hamalainen # Date 1425319208 -7200 # Node ID f4626ee57dada087843eb82edf43ef0471a63ea2 # Parent 67f5c9d60c7294ea941b40091122ca7e6341f4c2 Add missing C++ guard. diff -r 67f5c9d60c72 -r f4626ee57dad src/dmbstr.h --- a/src/dmbstr.h Mon Mar 02 19:16:13 2015 +0200 +++ b/src/dmbstr.h Mon Mar 02 20:00:08 2015 +0200 @@ -9,6 +9,12 @@ #include "dmlib.h" + +#ifdef __cplusplus +extern "C" { +#endif + + typedef struct _DMBitStreamContext { void *fp;