diff options
author | George Hazan <george.hazan@gmail.com> | 2013-02-25 19:03:12 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-02-25 19:03:12 +0000 |
commit | 7a16305594ab2c308db9aa615280197497ecd2b6 (patch) | |
tree | 137263445c74edc847a3e794110b4bb8a7e67296 /include | |
parent | 9717de57613d2a5f56895fdf8e674d2c919073e5 (diff) |
PROTO_INTERFACE made zeroed on the basic inheritance level
git-svn-id: http://svn.miranda-ng.org/main/trunk@3770 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_protoint.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/m_protoint.h b/include/m_protoint.h index 554a08194e..471108ba55 100644 --- a/include/m_protoint.h +++ b/include/m_protoint.h @@ -24,6 +24,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef M_PROTOINT_H__
#define M_PROTOINT_H__ 1
+#include <m_system_cpp.h>
+
typedef enum
{
EV_PROTO_ONLOAD,
@@ -41,7 +43,7 @@ typedef enum #define PROTOCHAR TCHAR
#define PROTOFILEEVENT PROTORECVFILET
-struct PROTO_INTERFACE
+struct PROTO_INTERFACE : public MZeroedObject
{
int m_iStatus,
m_iDesiredStatus,
|