]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/protocol/protocol.h
compilation/build fixes for wxUniv
[wxWidgets.git] / include / wx / protocol / protocol.h
index 1ac98294c83e7acac907a589e926bcb53cec41c8..894ca9615d8fb235a7f439aa5973e8363e69e339 100644 (file)
@@ -96,7 +96,15 @@ public: \
   static wxProtoInfo g_proto_##class;
 
 #define IMPLEMENT_PROTOCOL(class, name, serv, host) \
-wxProtoInfo class::g_proto_##class(name, serv, host, CLASSINFO(class));
+wxProtoInfo class::g_proto_##class(name, serv, host, CLASSINFO(class)); \
+bool wxProtocolUse##class = TRUE;
+
+#define USE_PROTOCOL(class) \
+    extern bool wxProtocolUse##class ; \
+    static struct wxProtocolUserFor##class \
+    { \
+        wxProtocolUserFor##class() { wxProtocolUse##class = TRUE; } \
+    } wxProtocolDoUse##class;
 
 class WXDLLEXPORT wxProtoInfo : public wxObject
 {