We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/harry-cysic/GhidraMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
StructUtils.java•733 B
package com.lauriewired.util;
/**
* Utility class for handling structures and their members.
* This class provides a representation of a structure member with its name,
* type, comment, and offset.
*/
public final class StructUtils {
/**
* Represents a member of a structure.
*/
public static class StructMember {
/**
* The name of the member.
*/
public String name;
/**
* The type of the member.
*/
public String type;
/**
* The comment for the member.
*/
public String comment;
/**
* The offset of the member in the structure.
* Initialized to -1 to indicate that it has not been set.
*/
public double offset = -1; // Use double to handle GSON parsing number as double
}
}