Sha256: 4f322a316360aa326d5306817c8a371667607f2a80312e3bea4775715b7f39ab
Contents?: true
Size: 577 Bytes
Versions: 9
Compression:
Stored size: 577 Bytes
Contents
#include "Stdafx.h" extern "C" { __declspec(dllexport) void TableItem_Release(TableItemInformationPtr tableItemInfo) { delete tableItemInfo; } __declspec(dllexport) TableItemInformationPtr TableItem_Information(ElementInformationPtr element, char* errorInfo, const int errorInfoLength) { try { return new TableItemInformation(ElementFrom(element)->As<TableItemPattern^>(TableItemPattern::Pattern)->Current); } catch(Exception^ e) { StringHelper::CopyToUnmanagedString(e, errorInfo, errorInfoLength); return NULL; } } }
Version data entries
9 entries across 9 versions & 1 rubygems