/*********************************************************
- * Copyright (C) 2007-2017 VMware, Inc. All rights reserved.
+ * Copyright (C) 2007-2018 VMware, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
#include "dnd.h"
#include "dynbuf.h"
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
/*
* Make sure each clipboard item is at most 64kb - 100 b. This limitation is
* copied from the current text copy paste limit.
Bool CPClipboard_Unserialize(CPClipboard *clip, const void *buf, size_t len);
Bool CPClipboard_Strip(CPClipboard *clip, uint32 caps);
+#if defined(__cplusplus)
+} // extern "C"
+#endif
+
#endif // _DND_CLIPBOARD_H_