home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 3
/
PDCD_3.iso
/
languages
/
c
/
oslib
/
Examples
/
p3-162
< prev
next >
Wrap
Text File
|
1994-05-13
|
391b
|
16 lines
#include "wimp.h"
#define ICON_COUNT 12
void ex (wimp_w w)
{ wimp_i icons [ICON_COUNT];
wimp_which_icon (w, icons, wimp_ICON_SELECTED, wimp_ICON_SELECTED);
/*|icons| contains all selected icons*/
wimp_which_icon (w, icons, wimp_ICON_ESG | wimp_ICON_SELECTED,
1 << wimp_ICON_ESG_SHIFT | wimp_ICON_SELECTED);
/*|icons| contains selected icons with E S G 1*/
}