diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-25 13:40:12 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-25 13:40:12 +0000 |
commit | e4b8e9d9704a986c71565ef723cc8de208d97740 (patch) | |
tree | bfc6ec6cad97649f277a2d3829bbea2ebab26055 /src/modules/protocols/protoint.cpp | |
parent | 3be1f8e5705a997d94a12a5165a32cfcb867424f (diff) |
PROTO<>::SendAwayMsg / PSS_AWAYMSG considered unused
git-svn-id: http://svn.miranda-ng.org/main/trunk@6229 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/protocols/protoint.cpp')
-rw-r--r-- | src/modules/protocols/protoint.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/modules/protocols/protoint.cpp b/src/modules/protocols/protoint.cpp index 83c9d1dac5..abe590f541 100644 --- a/src/modules/protocols/protoint.cpp +++ b/src/modules/protocols/protoint.cpp @@ -252,12 +252,6 @@ struct DEFAULT_PROTO_INTERFACE : public PROTO_INTERFACE return (int)ProtoCallService(m_szModuleName, PSR_AWAYMSG, 0, (LPARAM)&ccs);
}
- int __cdecl SendAwayMsg(HANDLE hContact, HANDLE hProcess, const char* msg)
- {
- CCSDATA ccs = { hContact, PSS_AWAYMSG, (WPARAM)hProcess, (LPARAM)msg };
- return (int)ProtoCallService(m_szModuleName, PSS_AWAYMSG, 0, (LPARAM)&ccs);
- }
-
int __cdecl SetAwayMsg(int iStatus, const TCHAR* msg)
{
return (int)ProtoCallService(m_szModuleName, PS_SETAWAYMSG, iStatus, (LPARAM)StrConvA(msg));
|