summaryrefslogtreecommitdiff
path: root/plugins/Watrack/docs/sampledll.dpr
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Watrack/docs/sampledll.dpr')
-rw-r--r--plugins/Watrack/docs/sampledll.dpr15
1 files changed, 1 insertions, 14 deletions
diff --git a/plugins/Watrack/docs/sampledll.dpr b/plugins/Watrack/docs/sampledll.dpr
index 5a6c3b0c80..acdf0088f2 100644
--- a/plugins/Watrack/docs/sampledll.dpr
+++ b/plugins/Watrack/docs/sampledll.dpr
@@ -106,18 +106,6 @@ begin
result:=0;
end;
-function MirandaPluginInfo(mirandaVersion:dword):PPLUGININFO; cdecl;
-begin
- result:=@PluginInfo;
- PluginInfo.cbSize:=SizeOf(TPLUGININFO);
-end;
-
-function MirandaPluginInfoEx(mirandaVersion:dword):PPLUGININFOEX; cdecl;
-begin
- result:=@PluginInfo;
- PluginInfo.cbSize:=SizeOf(TPLUGININFOEX);
-end;
-
function Load(link: PPLUGINLINK): int; cdecl;
begin
PLUGINLINK := pointer(link);
@@ -132,8 +120,7 @@ begin
end;
exports
- Load, Unload,
- MirandaPluginInfoEx;
+ Load, Unload;
begin
end.