mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-02-05 22:54:57 +01:00
Don't expose zathura_jump_[st] in the public API.
It's only for internal use.
This commit is contained in:
parent
ad6afb81b1
commit
af04432892
2 changed files with 10 additions and 9 deletions
9
types.h
9
types.h
|
@ -19,15 +19,6 @@ typedef struct zathura_page_s zathura_page_t;
|
||||||
* Zathura
|
* Zathura
|
||||||
*/
|
*/
|
||||||
typedef struct zathura_s zathura_t;
|
typedef struct zathura_s zathura_t;
|
||||||
/**
|
|
||||||
* Jump
|
|
||||||
*/
|
|
||||||
typedef struct zathura_jump_s
|
|
||||||
{
|
|
||||||
unsigned int page;
|
|
||||||
double x;
|
|
||||||
double y;
|
|
||||||
} zathura_jump_t;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Plugin manager
|
* Plugin manager
|
||||||
|
|
10
zathura.h
10
zathura.h
|
@ -28,6 +28,16 @@ typedef struct _ZathuraDatabase zathura_database_t;
|
||||||
struct render_thread_s;
|
struct render_thread_s;
|
||||||
typedef struct render_thread_s render_thread_t;
|
typedef struct render_thread_s render_thread_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Jump
|
||||||
|
*/
|
||||||
|
typedef struct zathura_jump_s
|
||||||
|
{
|
||||||
|
unsigned int page;
|
||||||
|
double x;
|
||||||
|
double y;
|
||||||
|
} zathura_jump_t;
|
||||||
|
|
||||||
struct zathura_s
|
struct zathura_s
|
||||||
{
|
{
|
||||||
struct
|
struct
|
||||||
|
|
Loading…
Reference in a new issue