mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-28 22:25:59 +01:00
Use internal.h for internal types
This commit is contained in:
parent
76f63bc1ef
commit
2f4076ccca
3 changed files with 18 additions and 6 deletions
|
@ -7,6 +7,7 @@
|
||||||
#include <girara/types.h>
|
#include <girara/types.h>
|
||||||
#include <girara/macros.h>
|
#include <girara/macros.h>
|
||||||
|
|
||||||
|
#include "internal.h"
|
||||||
#include "document.h"
|
#include "document.h"
|
||||||
#include "zathura.h"
|
#include "zathura.h"
|
||||||
|
|
||||||
|
|
|
@ -26,12 +26,6 @@ typedef enum zathura_document_meta_e
|
||||||
ZATHURA_DOCUMENT_MODIFICATION_DATE /**< Modification data */
|
ZATHURA_DOCUMENT_MODIFICATION_DATE /**< Modification data */
|
||||||
} zathura_document_meta_t;
|
} zathura_document_meta_t;
|
||||||
|
|
||||||
typedef struct zathura_password_dialog_info_s
|
|
||||||
{
|
|
||||||
char* path; /**< Path to the file */
|
|
||||||
zathura_t* zathura; /**< Zathura session */
|
|
||||||
} zathura_password_dialog_info_t;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Document
|
* Document
|
||||||
*/
|
*/
|
||||||
|
|
17
internal.h
Normal file
17
internal.h
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
||||||
|
|
||||||
|
#ifndef INTERNAL_H
|
||||||
|
#define INTERNAL_H
|
||||||
|
|
||||||
|
#include "zathura.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Zathura password dialog
|
||||||
|
*/
|
||||||
|
typedef struct zathura_password_dialog_info_s
|
||||||
|
{
|
||||||
|
char* path; /**< Path to the file */
|
||||||
|
zathura_t* zathura; /**< Zathura session */
|
||||||
|
} zathura_password_dialog_info_t;
|
||||||
|
|
||||||
|
#endif // INTERNAL_H
|
Loading…
Reference in a new issue