Esempio n. 1
0
def SetLastDatabaseName(name):
    """
    Saves the provided database name as the most recently used;
    this value will be returned by future calls to GetLastDatabaseName
    """
    node = ida.netnode('$ ida_splode', 0, 1)
    node.set(str(name))
Esempio n. 2
0
def SetLastDatabaseName(name):
    """
    Saves the provided database name as the most recently used;
    this value will be returned by future calls to GetLastDatabaseName
    """
    node = ida.netnode('$ ida_splode', 0, 1)
    node.set(str(name))
Esempio n. 3
0
def GetLastDatabaseName():
    """Returns:
        Name of the most recent database loaded by the user
    """
    node = ida.netnode('$ ida_splode', 0, 1)
    return node.valstr()
Esempio n. 4
0
def GetLastDatabaseName():
    """Returns:
        Name of the most recent database loaded by the user
    """
    node = ida.netnode('$ ida_splode', 0, 1)
    return node.valstr()