diff options
| author | George Hazan <george.hazan@gmail.com> | 2025-03-21 18:26:05 +0300 |
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2025-03-21 18:26:05 +0300 |
| commit | 8d93246be88fdcdef666c229fa0d204b160ba876 (patch) | |
| tree | a5a09da22922ccac1b507d1234627d963ac3c7a5 /protocols/Teams/src/stdafx.h | |
| parent | 82ffdf6137ba066be19772ec955667b342c44a75 (diff) | |
skeleton for Teams
Diffstat (limited to 'protocols/Teams/src/stdafx.h')
| -rw-r--r-- | protocols/Teams/src/stdafx.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/protocols/Teams/src/stdafx.h b/protocols/Teams/src/stdafx.h new file mode 100644 index 0000000000..9ef202a899 --- /dev/null +++ b/protocols/Teams/src/stdafx.h @@ -0,0 +1,50 @@ +#ifndef _COMMON_H_ +#define _COMMON_H_ + +#include <windows.h> +#include <commctrl.h> +#include <malloc.h> +#include <time.h> + +#include <map> +#include <regex> +#include <vector> +#include <string> +#include <algorithm> + +#include <newpluginapi.h> +#include <m_chat_int.h> +#include <m_contacts.h> +#include <m_database.h> +#include <m_langpack.h> +#include <m_message.h> +#include <m_netlib.h> +#include <m_options.h> +#include <m_popup.h> +#include <m_json.h> +#include <m_avatars.h> +#include <m_icolib.h> +#include <m_skin.h> +#include <m_clist.h> +#include <m_genmenu.h> +#include <m_imgsrvc.h> +#include <m_protocols.h> +#include <m_protosvc.h> +#include <m_protoint.h> +#include <m_idle.h> +#include <m_xstatus.h> +#include <m_extraicons.h> +#include <m_gui.h> +#include <m_http.h> +#include <m_system.h> + +#include "resource.h" +#include "version.h" + +#define MODULENAME "Teams" + +class CTeamsProto; + +#include "proto.h" + +#endif //_COMMON_H_
\ No newline at end of file |
