From: peavey Date: Sun, 11 Oct 2009 22:32:06 +0000 (+0000) Subject: More CoreExport, brought the errors down, but some still persist. X-Git-Tag: v2.0.23~1407 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=80c09792394a213f19d1384e61fdf8dfc3fce49a;p=user%2Fhenk%2Fcode%2Finspircd.git More CoreExport, brought the errors down, but some still persist. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11846 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/include/protocol.h b/include/protocol.h index a3afe9fb3..c6db5155e 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -18,9 +18,9 @@ class User; -typedef std::vector parameterlist; +CoreExport typedef std::vector parameterlist; -class ProtoServer +class CoreExport ProtoServer { public: std::string servername; @@ -31,9 +31,9 @@ class ProtoServer unsigned int latencyms; }; -typedef std::list ProtoServerList; +CoreExport typedef std::list ProtoServerList; -class ProtocolInterface : public Extensible +class CoreExport ProtocolInterface : public Extensible { public: ProtocolInterface() { } diff --git a/include/users.h b/include/users.h index 884aaceeb..a898d5813 100644 --- a/include/users.h +++ b/include/users.h @@ -196,19 +196,19 @@ struct CoreExport ConnectClass : public refcountbase /** Holds a complete list of all channels to which a user has been invited and has not yet joined, and the time at which they'll expire. */ -typedef std::vector< std::pair > InvitedList; +CoreExport typedef std::vector< std::pair > InvitedList; /** Holds a complete list of all allow and deny tags from the configuration file (connection classes) */ -typedef std::vector > ClassVector; +CoreExport typedef std::vector > ClassVector; /** Typedef for the list of user-channel records for a user */ -typedef std::set UserChanList; +CoreExport typedef std::set UserChanList; /** Shorthand for an iterator into a UserChanList */ -typedef UserChanList::iterator UCListIter; +CoreExport typedef UserChanList::iterator UCListIter; /* Required forward declaration */