string gui.popup(string message, string type = "ok", string icon = "message") string input.popup(string message, string type = "yesno", string icon = "question")
| 5694 | // string gui.popup(string message, string type = "ok", string icon = "message") |
| 5695 | // string input.popup(string message, string type = "yesno", string icon = "question") |
| 5696 | static int gui_popup(lua_State *L) |
| 5697 | { |
| 5698 | return doPopup(L, "ok", "message"); |
| 5699 | } |
| 5700 | static int input_popup(lua_State *L) |
| 5701 | { |
| 5702 | return doPopup(L, "yesno", "question"); |