summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/protocol.h8
-rw-r--r--include/users.h8
2 files changed, 8 insertions, 8 deletions
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<std::string> parameterlist;
+CoreExport typedef std::vector<std::string> parameterlist;
-class ProtoServer
+class CoreExport ProtoServer
{
public:
std::string servername;
@@ -31,9 +31,9 @@ class ProtoServer
unsigned int latencyms;
};
-typedef std::list<ProtoServer> ProtoServerList;
+CoreExport typedef std::list<ProtoServer> 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<irc::string, time_t> > InvitedList;
+CoreExport typedef std::vector< std::pair<irc::string, time_t> > InvitedList;
/** Holds a complete list of all allow and deny tags from the configuration file (connection classes)
*/
-typedef std::vector<reference<ConnectClass> > ClassVector;
+CoreExport typedef std::vector<reference<ConnectClass> > ClassVector;
/** Typedef for the list of user-channel records for a user
*/
-typedef std::set<Channel*> UserChanList;
+CoreExport typedef std::set<Channel*> UserChanList;
/** Shorthand for an iterator into a UserChanList
*/
-typedef UserChanList::iterator UCListIter;
+CoreExport typedef UserChanList::iterator UCListIter;
/* Required forward declaration
*/