Sha256: 03fba2436e4a3e6a20876acd449a3299e2616f688d4518cb7f36bb9d8d9a04b0
Contents?: true
Size: 579 Bytes
Versions: 14
Compression:
Stored size: 579 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(Find(element)->As<TableItemPattern^>(TableItemPattern::Pattern)->Current); } catch(Exception^ e) { StringHelper::CopyToUnmanagedString(e->Message, errorInfo, errorInfoLength); return NULL; } } }
Version data entries
14 entries across 14 versions & 1 rubygems