|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
CreateCursor
The CreateCursor function creates a cursor having the specified size, bit patterns, and hot spot.
HCURSOR CreateCursor(
HINSTANCE hInst, // handle to application instance int xHotSpot, // horizontal position of hot spot int yHotSpot, // vertical position of hot spot int nWidth, // cursor width int nHeight, // cursor height CONST VOID *pvANDPlane, // pointer to AND bitmask array CONST VOID *pvXORPlane // pointer to XOR bitmask array );
Parameters
hInst
Identifies the current instance of the application creating the cursor.
xHotSpot
Specifies the horizontal position of the cursor's hot spot.
yHotSpot
Specifies the vertical position of the cursor's hot spot.
nWidth
Specifies the width, in pixels, of the cursor.
nHeight
Specifies the height, in pixels, of the cursor.
pvANDplane
Points to an array of bytes that contains the bit values for the AND bitmask of the cursor, as in a device-dependent monochrome bitmap.
pvXORplane
Points to an array of bytes that contains the bit values for the XOR bitmask of the cursor, as in a device-dependent monochrome bitmap.
Return Values
If the function succeeds, the return value identifies the cursor. 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 that are supported by the current display driver, because the system cannot create cursors of other sizes. To determine the width and height supported by the display driver, use the GetSystemMetrics function, specifying the SM_CXCURSOR or SM_CYCURSOR value. Before closing, an application must call the DestroyCursor function to free any system resources associated with the cursor.
See Also
CreateIcon, DestroyCursor, GetModuleHandle, GetSystemMetrics, SetCursor
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
CreateCursor
Функция CreateCursor создает курсор, имеющий определенный размер, битовые образцы, и горячая точка.
HCURSOR CreateCursor(
HINSTANCE hInst, // РУЧКА в прикладной пример int xHotSpot, // горизонтальная позиция горячей точки int yHotSpot, // вертикальная позиция горячей точки int nWidth, // ширина курсора int nHeight, // высота курсора CONST ПУСТОТЫ *pvANDPlane, // указатель в И bitmask ПУСТОТУ массива CONST *указатель pvXORPlane // в XOR bitmask массив );
Параметры
hInst
Идентифицирует текущий пример приложения создавая курсор.
xHotSpot
Определяет горизонтальную позицию горячей точки курсора.
yHotSpot
Определяет вертикальную позицию горячей точки курсора.
nWidth
Определяет ширину, на пикселях, курсора.
nHeight
Определяет высоту, на пикселях, курсора.
pvANDplane
Точки на массив байтов, которые содержат битовые величины для И bitmask курсора, как в устройство-зависимом монохромном побитовом отображении.
pvXORplane
Точки на массив байтов, которые содержат битовые величины для XOR bitmask курсора, как в устройство-зависимом монохромном побитовом отображении.
Обратные Величины
Если функция добивается успеха, обратная величина идентифицирует курсор. Если функция терпит неудачу, обратная величина НЕДЕЙСТВИТЕЛЬНА. Для того, чтобы расширять информацию ошибки, назовите GetLastError.
Замечания
nWidth И параметры nHeight должны определить ширину и высоту, которые поддерживаны текущим дисплейным драйвером, поскольку система не может создать курсоры других размеров. Для того, чтобы определять ширину и высоту поддерживанные дисплейным драйвером, используйте функцию GetSystemMetrics, определяющую SM_CXCURSOR или величину SM_CYCURSOR. Перед закрытием, приложение должно назвать функцию DestroyCursor, чтобы освобождать любые системные ресурсы связанные курсором.
Смотри Также
CreateIcon, DestroyCursor, GetModuleHandle, GetSystemMetrics, SetCursor
|
|
|
|
| |