hpdf_destination.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * << Haru Free PDF Library >> -- hpdf_destination.c
  3. *
  4. * URL: http://libharu.org
  5. *
  6. * Copyright (c) 1999-2006 Takeshi Kanno <[email protected]>
  7. * Copyright (c) 2007-2009 Antony Dovgal <[email protected]>
  8. *
  9. * Permission to use, copy, modify, distribute and sell this software
  10. * and its documentation for any purpose is hereby granted without fee,
  11. * provided that the above copyright notice appear in all copies and
  12. * that both that copyright notice and this permission notice appear
  13. * in supporting documentation.
  14. * It is provided "as is" without express or implied warranty.
  15. *
  16. */
  17. #ifndef _HPDF_DESTINATION_H
  18. #define _HPDF_DESTINATION_H
  19. #include "hpdf_objects.h"
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /*----------------------------------------------------------------------------*/
  24. /*----- HPDF_Destination -----------------------------------------------------*/
  25. HPDF_Destination
  26. HPDF_Destination_New (HPDF_MMgr mmgr,
  27. HPDF_Page target,
  28. HPDF_Xref xref);
  29. HPDF_BOOL
  30. HPDF_Destination_Validate (HPDF_Destination dst);
  31. #ifdef __cplusplus
  32. }
  33. #endif /* __cplusplus */
  34. #endif /* _HPDF_DESTINATION_H */