diff options
Diffstat (limited to 'random_message_changer/common.h')
-rw-r--r-- | random_message_changer/common.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/random_message_changer/common.h b/random_message_changer/common.h new file mode 100644 index 0000000..c42c22c --- /dev/null +++ b/random_message_changer/common.h @@ -0,0 +1,33 @@ +#ifndef _COMMON_INC
+#define _COMMON_INC
+
+//---------------------------------------------------------------------------
+#include <windows.h>
+#include <prsht.h>
+#include <newpluginapi.h>
+#include <m_database.h>
+#include <m_langpack.h>
+#include <m_clist.h>
+#include <m_protosvc.h>
+#include <m_skin.h>
+#include <m_options.h>
+#include "resource.h"
+
+//#include <iostream>
+//#include <fstream>
+#include <stdio.h>
+#include <time.h>
+
+#define RMC "RandomMessageChanger"
+//---------------------------------------------------------------------------
+extern PLUGINLINK *pluginLink;
+extern HINSTANCE hInst;
+
+//---------------------------------------------------------------------------
+
+#define STRING_LENGTH 265
+
+void SetChangingTime();
+
+//---------------------------------------------------------------------------
+#endif
|