Gegamo API Documentation
API Functions
Attach example (WinForms C#):
using GegamoAPI;
private void Button_Click()
{
GegamoAPI.GegamoAPI.Attach();
}
Auto Attach example:
if(checkbox1.Checked)
{
GegamoAPI.GegamoAPI.Autoattach(checkbox1.Checked);
}
Injection Status example:
if(GegamoAPI.GegamoAPI.Isattached)
{
statusLabel.Text = "Attached"; // Green text and emoji
}
else
{
statusLabel.Text = "Not attached"; // Red text and emoji
}
Include using GegamoAPI;
at the top and add GegamoAPI.dll
to your references.
Tutorials
Drag with GunaUI2
To enable drag in WinForms using GunaUI2, add a DragControl component to your form and set its TargetControl property to the control or form you wish to drag.
Topmost Form
Set the TopMost property of your form to true to keep it above all other windows.
For more tutorials, visit our YouTube channels:
Visual Studio Setup
Right‑click References → Add Reference → Browse for GegamoAPI.dll
then add at the top of your code:
using GegamoAPI;
Download Visual Studio from here.