Thu, 21 Nov 2024 18:45:47 +0100
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; }