Преглед изворни кода

- readded file after i could commit file under normal edits

git-svn-id: svn://svn.code.sf.net/p/ditto-cp/code/trunk@538 595ec19a-5cb4-439b-94a8-42fb3063c22c
sabrogden пре 15 година
родитељ
комит
a8b77cbd20
1 измењених фајлова са 16 додато и 0 уклоњено
  1. 16 0
      Addins/DittoUtil/Exports.h

+ 16 - 0
Addins/DittoUtil/Exports.h

@@ -0,0 +1,16 @@
+#pragma once
+
+#include "..\..\Shared\DittoDefines.h"
+#include "..\..\Shared\IClip.h"
+#include <vector>
+
+extern "C" 
+{
+	bool __declspec(dllexport) DittoAddin(const CDittoInfo &DittoInfo, CDittoAddinInfo &info);
+	bool __declspec(dllexport) SupportedFunctions(const CDittoInfo &DittoInfo, FunctionType type, std::vector<CFunction> &Functions);
+	bool __declspec(dllexport) PasteAnyAsText(const CDittoInfo &DittoInfo, IClip *pClip);	
+	bool __declspec(dllexport) ConvertPathToHtmlImageTag(const CDittoInfo &DittoInfo, IClip *pClip);
+	bool __declspec(dllexport) ClearReadOnlyFlag(const CDittoInfo &DittoInfo, IClip *pClip);
+	bool __declspec(dllexport) SetReadOnlyFlag(const CDittoInfo &DittoInfo, IClip *pClip);
+	bool __declspec(dllexport) RemoveLineFeeds(const CDittoInfo &DittoInfo, IClip *pClip);
+}