Use internal.h for internal types

This commit is contained in:
Moritz Lipp 2012-03-27 13:34:23 +02:00
parent 76f63bc1ef
commit 2f4076ccca
3 changed files with 18 additions and 6 deletions

View file

@ -7,6 +7,7 @@
#include <girara/types.h>
#include <girara/macros.h>
#include "internal.h"
#include "document.h"
#include "zathura.h"

View file

@ -26,12 +26,6 @@ typedef enum zathura_document_meta_e
ZATHURA_DOCUMENT_MODIFICATION_DATE /**< Modification data */
} 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
*/

17
internal.h Normal file
View 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