Start moving towards C++ only UI code. Assume C++ for the replay API

* The C# P/Invoke stuff doesn't directly use the header, and we are soon
  going to deprecate the C interface entirely.
This commit is contained in:
baldurk
2017-03-13 17:56:00 +00:00
parent 55565a148b
commit 487a1b7903
17 changed files with 196 additions and 277 deletions
+2 -2
View File
@@ -235,7 +235,7 @@ void RemoteManager::refreshHost(QTreeWidgetItem *node)
if(nextIdent == ~0U || prevIdent >= nextIdent)
break;
TargetControl *conn =
ITargetControl *conn =
RENDERDOC_CreateTargetControl(hostnameBytes.data(), nextIdent, username.data(), false);
if(conn)
@@ -603,7 +603,7 @@ void RemoteManager::on_connect_clicked()
}
else
{
RemoteServer *server = NULL;
IRemoteServer *server = NULL;
ReplayCreateStatus status =
RENDERDOC_CreateRemoteServerConnection(host->Hostname.toUtf8().data(), 0, &server);
if(server)