Native UI Automation bridge redesigned for speed and reliability. The bridge library has been renamed to UiaBridge. Native components use VS 2010 C++ and .Net 4.
22 lines
338 B
C++
22 lines
338 B
C++
/*
|
|
* Copyright 2014, Synthuse.org
|
|
* Released under the Apache Version 2.0 License.
|
|
*
|
|
* last modified by ejakubowski7@gmail.com
|
|
*/
|
|
#pragma once
|
|
#include "uiabridge.h"
|
|
using namespace uiabridge;
|
|
namespace Globals
|
|
{
|
|
using namespace System;
|
|
|
|
public ref class Global
|
|
{
|
|
public:
|
|
static AutomationBridge ^AUTO_BRIDGE = nullptr;
|
|
};
|
|
|
|
}
|
|
|