mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2024-12-27 05:48:20 +01:00
Initial documentation.
This commit is contained in:
parent
a18b8fd606
commit
10ab119922
4
Makefile
4
Makefile
@ -25,7 +25,7 @@ DSONAME =
|
|||||||
LDFLAGS =
|
LDFLAGS =
|
||||||
LIBS = -lz
|
LIBS = -lz
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
VERSION = 1.0
|
VERSION = 0.1
|
||||||
prefix = /usr/local
|
prefix = /usr/local
|
||||||
|
|
||||||
|
|
||||||
@ -142,6 +142,6 @@ DOCFLAGS = \
|
|||||||
--docversion $(VERSION)
|
--docversion $(VERSION)
|
||||||
|
|
||||||
doc:
|
doc:
|
||||||
codedoc $(DOCFLAGS) --title "pdfio Programming Manual" pdfio.h $(LIBOBJS:.o=.c) --body pdfio.md pdfio.xml >pdfio.html
|
codedoc $(DOCFLAGS) --title "pdfio Programming Manual v$(VERSION)" pdfio.h $(LIBOBJS:.o=.c) --body pdfio.md pdfio.xml >pdfio.html
|
||||||
codedoc $(DOCFLAGS) --title "pdf read/write library" --man pdfio --section 3 --body pdfio.md pdfio.xml >pdfio.3
|
codedoc $(DOCFLAGS) --title "pdf read/write library" --man pdfio --section 3 --body pdfio.md pdfio.xml >pdfio.3
|
||||||
rm -f pdfio.xml
|
rm -f pdfio.xml
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
// Local types...
|
// Local types...
|
||||||
//
|
//
|
||||||
|
|
||||||
typedef pdfio_obj_t *(*image_func_t)(pdfio_dict_t *dict, int fd);
|
typedef pdfio_obj_t *(*_pdfio_image_func_t)(pdfio_dict_t *dict, int fd);
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -910,7 +910,7 @@ pdfioFileCreateImageObject(
|
|||||||
pdfio_obj_t *obj; // Image object
|
pdfio_obj_t *obj; // Image object
|
||||||
int fd; // File
|
int fd; // File
|
||||||
unsigned char buffer[32]; // Read buffer
|
unsigned char buffer[32]; // Read buffer
|
||||||
image_func_t copy_func = NULL; // Image copy function
|
_pdfio_image_func_t copy_func = NULL; // Image copy function
|
||||||
|
|
||||||
|
|
||||||
// Range check input...
|
// Range check input...
|
||||||
|
@ -657,7 +657,7 @@ pdfioFileOpen(
|
|||||||
// '_pdfioObjAdd()' - Add an object to a file.
|
// '_pdfioObjAdd()' - Add an object to a file.
|
||||||
//
|
//
|
||||||
|
|
||||||
pdfio_obj_t * // O - Object
|
static pdfio_obj_t * // O - Object
|
||||||
add_obj(pdfio_file_t *pdf, // I - PDF file
|
add_obj(pdfio_file_t *pdf, // I - PDF file
|
||||||
size_t number, // I - Object number
|
size_t number, // I - Object number
|
||||||
unsigned short generation, // I - Object generation
|
unsigned short generation, // I - Object generation
|
||||||
|
2441
pdfio.html
2441
pdfio.html
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user