zoukankan      html  css  js  c++  java
  • 交互界面相关函数

    idc

    http://www.cnblogs.com/fply/p/8505348.html

     AskStr(defval, prompt)
        """
        Ask the user to enter a string
    
        @param defval: the default string value. This value will appear
                 in the dialog box.
        @param prompt: 对话框中的提示信息
    
        @return: the entered string or None.
        """

    AskStr("11","222")

    AskFile(forsave, mask, prompt)
        """
        Ask the user to choose a file
    
        @param forsave: 0: "Open" dialog box, 1: "Save" dialog box
        @param mask: the input file mask as "*.*" or the default file name.
        @param prompt: the prompt to display in the dialog box
    
        @return: the selected file or None.

    print AskFile(0,"*.exe","2222")

    AskAddr(defval, prompt)
        """
        Ask the user to enter an address
    
        @param defval: an ea_t designating the default address value. This value
                 will appear in the dialog box.
        @param prompt: the prompt to display in the dialog box
    
        @return: the entered address or BADADDR.

    print AskAddr(ea,"222")

    输入long

    AskLong(defval, prompt)

    AskSeg(defval, prompt)

    AskYN(defval, prompt)

    输出信息到控制台

    Message(msg)

    utf-8形式输出

    UMessage(msg)

    弹出窗口

    Warning(msg)

    Refresh()
    """
    Refresh all disassembly views

    RefreshLists()
    """
    Refresh all list views (names, functions, etc)

  • 相关阅读:
    delphi中使用webservice
    软件需求阅读笔记之三
    软件需求模式阅读笔记之二
    软件需求与分析课堂讨论一
    软件需求模式阅读笔记之一
    课后作业01
    2016秋季个人阅读计划
    个人总结
    软件工程概论作业
    人月神话阅读笔记之三
  • 原文地址:https://www.cnblogs.com/fply/p/8505348.html
Copyright © 2011-2022 走看看