Thu, 14 Nov 2024 23:22:35 +0100
add support for secret store credentials when connecting to repositories, resolves #496
#include "stdafx.h" #include <stdio.h> #include "window.h" #using "UIcore.dll" UI_EXPORT void* __stdcall UIwindow(char *title, void *uiobj) { UI::MainWindow ^window = gcnew UI::MainWindow(gcnew String(title), IntPtr(uiobj)); gcroot<UI::MainWindow^> *ptr = new gcroot<UI::MainWindow^>(); *ptr = window; return ptr; }