diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-07 00:16:28 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-07 00:16:28 +0000 |
commit | 7e709ca6554dfb530521ecbe6943d8578392d46b (patch) | |
tree | e8b81020d3d228cf0d92a63bb925e643743c806e /include | |
parent | 88e6af302d00baf9a3e399f909e800ed91908185 (diff) |
modules.*: Put some void* back to char*, sorry if they were only like that because of me... :p
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4119 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/modules.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/modules.h b/include/modules.h index 25e309f55..6edfcc55f 100644 --- a/include/modules.h +++ b/include/modules.h @@ -194,7 +194,7 @@ class Request : public ModuleMessage protected: /** This member holds a pointer to arbitary data set by the emitter of the message */ - void* data; + char* data; /** This is a pointer to the sender of the message, which can be used to * directly trigger events, or to create a reply. */ @@ -205,7 +205,7 @@ class Request : public ModuleMessage public: /** Create a new Request */ - Request(void* anydata, Module* src, Module* dst); + Request(char* anydata, Module* src, Module* dst); /** Fetch the Request data */ char* GetData(); @@ -234,7 +234,7 @@ class Event : public ModuleMessage protected: /** This member holds a pointer to arbitary data set by the emitter of the message */ - void* data; + char* data; /** This is a pointer to the sender of the message, which can be used to * directly trigger events, or to create a reply. */ @@ -247,7 +247,7 @@ class Event : public ModuleMessage public: /** Create a new Event */ - Event(void* anydata, Module* src, const std::string &eventid); + Event(char* anydata, Module* src, const std::string &eventid); /** Get the Event data */ char* GetData(); |