Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

when will intel support get_x_lparam and get_y_lparam

Brooks_Van_Horn
New Contributor I
303 Views

Microsoft has added several new features of which get_x_lparam and get_y_lparam macros are two of them. These are needed om systems with multiple screens. Without them, you get funky answers with LOWORD and HIWORD macros. Any idea when these will be supported by Intel?

Thanks,

Brooks Van Horn

0 Kudos
1 Solution
Steven_L_Intel1
Employee
303 Views

get_x_lparam is IBITS(lp,0,16)

get_y_lparam is IBITS(lp,16,16)

View solution in original post

0 Kudos
3 Replies
Steven_L_Intel1
Employee
303 Views

First I've heard of these. Let me take a look - it shouldn't be hard. (Not as macros, of course, but functions.) I expect that you could do it easily with IBITS.

0 Kudos
Steven_L_Intel1
Employee
304 Views

get_x_lparam is IBITS(lp,0,16)

get_y_lparam is IBITS(lp,16,16)

0 Kudos
Brooks_Van_Horn
New Contributor I
303 Views

Steve,

Thanks a bunch.

Brooks Van Horn

0 Kudos
Reply