summaryrefslogtreecommitdiff
path: root/protocols/Non-IM Contact/src
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Non-IM Contact/src')
-rw-r--r--protocols/Non-IM Contact/src/main.cpp1
-rw-r--r--protocols/Non-IM Contact/src/services.cpp10
-rw-r--r--protocols/Non-IM Contact/src/stdafx.h1
3 files changed, 0 insertions, 12 deletions
diff --git a/protocols/Non-IM Contact/src/main.cpp b/protocols/Non-IM Contact/src/main.cpp
index d2926c9893..89b0650a9c 100644
--- a/protocols/Non-IM Contact/src/main.cpp
+++ b/protocols/Non-IM Contact/src/main.cpp
@@ -120,7 +120,6 @@ int CMPlugin::Load()
// load services (the first 5 are the basic ones needed to make a new protocol)
CreateProtoServiceFunction(MODNAME, PS_GETCAPS, GetLCCaps);
- CreateProtoServiceFunction(MODNAME, PS_GETNAME, GetLCName);
CreateProtoServiceFunction(MODNAME, PS_LOADICON, LoadLCIcon);
CreateProtoServiceFunction(MODNAME, PS_GETSTATUS, GetLCStatus);
diff --git a/protocols/Non-IM Contact/src/services.cpp b/protocols/Non-IM Contact/src/services.cpp
index 4fda75ac4a..9d297343b5 100644
--- a/protocols/Non-IM Contact/src/services.cpp
+++ b/protocols/Non-IM Contact/src/services.cpp
@@ -16,16 +16,6 @@ INT_PTR GetLCCaps(WPARAM wParam, LPARAM)
}
//=======================================================
-// GetName
-//=======================================================
-//
-INT_PTR GetLCName(WPARAM wParam, LPARAM lParam)
-{
- mir_strncpy((char*)lParam, MODNAME, wParam);
- return 0;
-}
-
-//=======================================================
// BPLoadIcon
//=======================================================
//
diff --git a/protocols/Non-IM Contact/src/stdafx.h b/protocols/Non-IM Contact/src/stdafx.h
index eea3c27698..9e86855567 100644
--- a/protocols/Non-IM Contact/src/stdafx.h
+++ b/protocols/Non-IM Contact/src/stdafx.h
@@ -59,7 +59,6 @@ extern IconItem iconList[];
// Services.c
INT_PTR GetLCCaps(WPARAM wParam,LPARAM lParam);
-INT_PTR GetLCName(WPARAM wParam,LPARAM lParam);
INT_PTR LoadLCIcon(WPARAM wParam,LPARAM lParam);
int SetLCStatus(WPARAM wParam,LPARAM lParam);
INT_PTR GetLCStatus(WPARAM wParam,LPARAM lParam);