ui/wpf/UIwrapper/UIwrapper/window.cpp

Thu, 21 Nov 2024 18:45:47 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Thu, 21 Nov 2024 18:45:47 +0100
branch
newapi
changeset 390
b130f80ec7f9
parent 135
b9dc9cdfa23a
permissions
-rw-r--r--

implement list/table contextmenu (GTK)



#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;
}

mercurial