(int opt)
| 474 | |
| 475 | // set detail option at run-time |
| 476 | public void setDetail(int opt) { |
| 477 | if (cs.cs_option(ns.csh, CS_OPT_DETAIL, new NativeLong(opt)) == CS_ERR_OK) { |
| 478 | this.detail = opt; |
| 479 | } else { |
| 480 | throw new RuntimeException("ERROR: Failed to set detail option"); |
| 481 | } |
| 482 | } |
| 483 | |
| 484 | // set mode option at run-time |
| 485 | public void setMode(int opt) { |