|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
CreateIcon
The CreateIcon function creates an icon that has the specified size, colors, and bit patterns.
HICON CreateIcon(
HINSTANCE hInstance, // handle to application instance int nWidth, // icon width int nHeight, // icon height BYTE cPlanes, // number of planes in XOR bitmask BYTE cBitsPixel, // number of bits per pixel in XOR bitmask CONST BYTE *lpbANDbits, // pointer to AND bitmask array CONST BYTE *lpbXORbits // pointer to XOR bitmask array );
Parameters
hInstance
Identifies the instance of the module creating the icon.
nWidth
Specifies the width, in pixels, of the icon.
nHeight
Specifies the height, in pixels, of the icon.
cPlanes
Specifies the number of planes in the XOR bitmask of the icon.
cBitsPixel
Specifies the number of bits per pixel in the XOR bitmask of the icon.
lpbANDbits
Points to an array of bytes that contains the bit values for the AND bitmask of the icon. This bitmask describes a monochrome bitmap.
lpbXORbits
Points to an array of bytes that contains the bit values for the XOR bitmask of the icon. This bitmask describes a monochrome or device-dependent color bitmap.
Return Values
If the function succeeds, the return value is the handle to an icon. If the function fails, the return value is NULL. To get extended error information, call GetLastError.
Remarks
The nWidth and nHeight parameters must specify a width and height supported by the current display driver, because the system cannot create icons of other sizes. To determine the width and height supported by the display driver, use the GetSystemMetrics function, specifying the SM_CXICON or SM_CYICON value. CreateIcon applies the following truth table to the AND and XOR bitmasks:
AND bitmask XOR bitmask Display 0 0 Black 0 1 White 1 0 Screen 1 1 Reverse screen
See Also
GetSystemMetrics
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
CreateIcon
Функция CreateIcon создает икону, которая имеет определенный размер, цвета, и битовые образцы.
HICON CreateIcon(
hInstance HINSTANCE, // ОПЕРИРУЕТСЯ в прикладной пример int nWidth, // иконная ширина int nHeight, // иконная высота BYTE cPlanes, // количество планов в XOR bitmask BYTE cBitsPixel, // количестве битов за пиксель в XOR bitmask БАЙТЕ CONST *lpbANDbits, // указатель в И bitmask БАЙТ массива CONST *указатель lpbXORbits // в XOR bitmask массив );
Параметры
hInstance
Идентифицирует пример модуля создавая икону.
nWidth
Определяет ширину, на пикселях, иконы.
nHeight
Определяет высоту, на пикселях, иконы.
cPlanes
Определяет количество планов на XOR bitmask иконы.
cBitsPixel
Определяет количество битов за пиксель на XOR bitmask иконы.
lpbANDbits
Точки на массив байтов, которые содержат битовые величины для И bitmask иконы. Это bitmask описывает монохромное побитовое отображение.
lpbXORbits
Точки на массив байтов, которые содержат битовые величины для XOR bitmask иконы. Это bitmask описывает монохромное или устройство-зависимое цветное побитовое отображение.
Обратные Величины
Если функция добивается успеха, обратная величина является ручкой на икону. Если функция терпит неудачу, обратная величина НЕДЕЙСТВИТЕЛЬНА. Для того, чтобы расширять информацию ошибки, назовите GetLastError.
Замечания
nWidth И параметры nHeight должны определить ширину и высоту поддерживанные текущим дисплейным драйвером, поскольку система не может создать иконки других размеров. Для того, чтобы определять ширину и высоту поддерживанные дисплейным драйвером, используйте функцию GetSystemMetrics, определяющую SM_CXICON или величину SM_CYICON. CreateIcon ПРИЛАГАЕТ следующую таблицу истины к И и XOR bitmasks:
И bitmask XOR bitmask Дисплей 0 0 Черные 0 1 Белые 1 0 Экрана 1 1 Обратных экрана
Смотри Также
GetSystemMetrics
|
|
|
|
| |