ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-bugs: [Wireshark-bugs] [Bug 1311] Plugin system not C++ friendly

Date: Thu, 18 Jan 2007 11:19:00 +0000 (GMT)
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1311





------- Comment #3 from guy@xxxxxxxxxxxx  2007-01-18 11:19 GMT -------
Note that G_BEGIN_DECLS and G_END_DECLS don't appear to be defined by the GLib
1.2[.x] headers, so we shouldn't use them - we should use

    #ifdef __cplusplus
    extern "C" {
    #endif /* __cplusplus */
        ...
    #ifdef _cplusplus
    }
    #endif /* __cplusplus */


-- 
Configure bugmail: http://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.