/* large.cmd - increase cursor size      */
/* If you want to return to the standard */
/* mouse cursor, change '1' to '2' in    */
/* the "val" variable.                   */

call RxFuncAdd "SysIni", "RexxUtil", "SysIni"
inifile='USER'
app='PM_IBMVGA'
key='CURSOR_SIZE'
val='1'
call SysIni inifile, app, key, val
say Result
exit