summaryrefslogtreecommitdiff
path: root/Plugins/skins/SkinLib/ImageFieldState_v8_wrapper.cpp
diff options
context:
space:
mode:
authorpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2009-01-20 23:24:30 +0000
committerpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2009-01-20 23:24:30 +0000
commit334bfbad3fda3860f51b74cd6370786ef253ad49 (patch)
tree2cc40bf67b0ad86fc1e8c2e5f0a2e2085498ae7b /Plugins/skins/SkinLib/ImageFieldState_v8_wrapper.cpp
parentff634d35c1fbd2831be6c1206bb9298cd5a14eda (diff)
skins: templates are kept in memory
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@128 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/skins/SkinLib/ImageFieldState_v8_wrapper.cpp')
-rw-r--r--Plugins/skins/SkinLib/ImageFieldState_v8_wrapper.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/Plugins/skins/SkinLib/ImageFieldState_v8_wrapper.cpp b/Plugins/skins/SkinLib/ImageFieldState_v8_wrapper.cpp
new file mode 100644
index 0000000..1e4a9b6
--- /dev/null
+++ b/Plugins/skins/SkinLib/ImageFieldState_v8_wrapper.cpp
@@ -0,0 +1,20 @@
+#include "globals.h"
+#include "ImageFieldState_v8_wrapper.h"
+#include <v8.h>
+#include "ImageFieldState.h"
+
+using namespace v8;
+
+
+#ifdef UNICODE
+# define V8_TCHAR uint16_t
+#else
+# define V8_TCHAR char
+#endif
+
+
+void AddImageFieldStateAcessors(Handle<ObjectTemplate> &templ)
+{
+ HandleScope scope;
+
+}