diff options
author | George Hazan <ghazan@miranda.im> | 2016-12-27 19:45:37 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-12-27 19:46:38 +0300 |
commit | e191ad15875a046f7a243596fe92e99f88cea072 (patch) | |
tree | 9a4717859a2db6711db649d4d3c116371028621f /protocols/Discord/src/proto.h | |
parent | 62ce1cbfb8d6b2d352bfd8cb47af5ff23cb7d347 (diff) |
empty protocol class
Diffstat (limited to 'protocols/Discord/src/proto.h')
-rw-r--r-- | protocols/Discord/src/proto.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/protocols/Discord/src/proto.h b/protocols/Discord/src/proto.h new file mode 100644 index 0000000000..1da95e1c3d --- /dev/null +++ b/protocols/Discord/src/proto.h @@ -0,0 +1,12 @@ + +class DiscordProto : public PROTO<DiscordProto> +{ + +public: + DiscordProto(const char*,const wchar_t*); + ~DiscordProto(); + + // Services + INT_PTR __cdecl GetName(WPARAM, LPARAM); + INT_PTR __cdecl GetStatus(WPARAM, LPARAM); +}; |