Subj : Re: UIFC Issue To : Digital Man From : Mlong Date : Mon Oct 12 2020 02:33 pm > Re: UIFC Issue > By: Mlong to All on Sun Oct 11 2020 08:16 pm > > It seems maybe this is a bug? Why are there two constants for 1<<17? > Not really a bug, just multiple "sources of truth" which tend to get out of > sync over time. > The WIN_HLP mode flag is not used in UIFC/JS, so that's why I reused that > bit for WIN_CUT. Now fixed in git. Thanks, getting closer. Still trying to figure out how to read that they pressed ctrl-c/ctrl-v and how to handle. I ran into another inconsistency: in the c file: #define MSK_COPY 0x30000000 #define MSK_CUT 0x40000000 #define MSK_PASTE 0x50000000 in the js file: const MSK_GET = 0x30000000; const MSK_PUT = 0x40000000; const MSK_EDIT = 0x50000000; .