45 lines
1.5 KiB
C
45 lines
1.5 KiB
C
/**************************************************************************************************
|
|
* This file is a part of Ultralight, an ultra-portable web-browser engine. *
|
|
* *
|
|
* See <https://ultralig.ht> for licensing and more. *
|
|
* *
|
|
* (C) 2024 Ultralight, Inc. *
|
|
**************************************************************************************************/
|
|
|
|
///
|
|
/// @file CAPI_ScrollEvent.h
|
|
///
|
|
/// Scroll event interface.
|
|
///
|
|
/// `#include <Ultralight/CAPI/CAPI_ScrollEvent.h>`
|
|
///
|
|
/// This file defines the C API for scroll events.
|
|
///
|
|
#ifndef ULTRALIGHT_CAPI_SCROLLEVENT_H
|
|
#define ULTRALIGHT_CAPI_SCROLLEVENT_H
|
|
|
|
#include <Ultralight/CAPI/CAPI_Defines.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/******************************************************************************
|
|
* Scroll Event
|
|
*****************************************************************************/
|
|
|
|
///
|
|
/// Create a scroll event, see ScrollEvent in the C++ API for help using this function.
|
|
///
|
|
ULExport ULScrollEvent ulCreateScrollEvent(ULScrollEventType type, int delta_x, int delta_y);
|
|
|
|
///
|
|
/// Destroy a scroll event.
|
|
///
|
|
ULExport void ulDestroyScrollEvent(ULScrollEvent evt);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // ULTRALIGHT_CAPI_SCROLLEVENT_H
|