2014-04-24
12:28 AM
- last edited on
2023-08-01
03:59 PM
by
Doreena Deng
2014-05-12 10:10 AM
/* To your Fix.grc resource: */
'GCSR' 32680 "Open hand cursor" {
"HandBig" /* your picture name, so HandBig.bmp should be placed into the Images folder next to this Fix grc */
9 10 /* the cursor position in the picture */
0 128 128
}
/* To your source code: */
UISetCursor (ACAPI_GetOwnResModule (), 32680); // DG.h should be included 2014-11-04 05:06 AM