Sha256: 48b0fe44b0ade3e55a5b326135cc2dc88bc1961e496caab441a5a8326b197851

Contents?: true

Size: 543 Bytes

Versions: 4

Compression:

Stored size: 543 Bytes

Contents

#include "Stdafx.h"

extern "C" {
  __declspec(dllexport) void Table_Release(TableInformationPtr tableInfo) {
    delete tableInfo;
  }

  __declspec(dllexport) TableInformationPtr Table_Information(ElementInformationPtr element, char* errorInfo, const int errorInfoLength) {
    try {
      return new TableInformation(Find(element)->As<TablePattern^>(TablePattern::Pattern)->Current);
    } catch(Exception^ e) {
      StringHelper::CopyToUnmanagedString(e->Message, errorInfo, errorInfoLength);
      return NULL;
    }
  }
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
uia-0.0.7.3 ext/UiaDll/UiaDll/TableMethods.cpp
uia-0.0.7.2 ext/UiaDll/UiaDll/TableMethods.cpp
uia-0.0.7.1 ext/UiaDll/UiaDll/TableMethods.cpp
uia-0.0.7 ext/UiaDll/UiaDll/TableMethods.cpp