Files
Aldbg/core/attach.cpp
rootacite 4a7622807a 2024.8.17
2025-02-24 20:39:55 +08:00

26 lines
362 B
C++

//
// Created by acite on 5/1/24.
//
#include <gtkmm.h>
using namespace Gtk;
extern Button* bAttach;
extern Dialog* dialogAttach;
extern Window* MainWindow;
void button_attach()
{
dialogAttach->show();
}
void button_exec()
{
int fk = fork();
if(fk == 0)
{
execl("/usr/bin/netstat", "netstat" ,"-tupln", NULL);
return;
}
}