kms: Make libkms.h usable in C++

Wrap the header in extern "C" { ... };.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jakob Bornecrantz <wallbraker@gmail.com>
This commit is contained in:
Laurent Pinchart 2012-11-01 09:40:30 +00:00 committed by Jerome Glisse
parent e5d8a9c1d6
commit 9fa4a4b1a8

View file

@ -29,6 +29,10 @@
#ifndef _LIBKMS_H_
#define _LIBKMS_H_
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
/**
* \file
*
@ -71,4 +75,8 @@ int kms_bo_map(struct kms_bo *bo, void **out);
int kms_bo_unmap(struct kms_bo *bo);
int kms_bo_destroy(struct kms_bo **bo);
#if defined(__cplusplus) || defined(c_plusplus)
};
#endif
#endif