Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-dev: Re: [Wireshark-dev] [Wireshark-commits] rev 40321: /trunk/ /trunk/epan/: base64.

Date Prev · Date Next · Thread Prev · Thread Next
From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Sat, 31 Dec 2011 12:21:50 -0800
On Dec 31, 2011, at 2:25 AM, Jaap Keuter wrote:

> So, if this becomes relevant it should be mentioned in doc/README.developer as well.
> (Not the Qt bit, but the (ugly) C++ interfacing stuff)

I.e., tell developers who are adding header files to wrap all C declarations etc. inside

	#ifdef __cplusplus
	extern "C" {
	#endif /* __cplusplus */

and

	#ifdef __cplusplus
	}
	#endif /* __cplusplus */

(which isn't *too* horribly ugly)?