#include "petscsys.h"
#include "petscfix.h"
#include "petsc/private/fortranimpl.h"
/* dcoor.c */
/* Fortran interface file */

/*
* This file was generated automatically by bfort from the C source
* file.  
 */

#ifdef PETSC_USE_POINTER_CONVERSION
#if defined(__cplusplus)
extern "C" { 
#endif 
extern void *PetscToPointer(void*);
extern int PetscFromPointer(void *);
extern void PetscRmPointer(void*);
#if defined(__cplusplus)
} 
#endif 

#else

#define PetscToPointer(a) (a ? *(PetscFortranAddr *)(a) : 0)
#define PetscFromPointer(a) (PetscFortranAddr)(a)
#define PetscRmPointer(a)
#endif

#include "petscdraw.h"
#ifdef PETSC_HAVE_FORTRAN_CAPS
#define petscdrawsetcoordinates_ PETSCDRAWSETCOORDINATES
#elif !defined(PETSC_HAVE_FORTRAN_UNDERSCORE) && !defined(FORTRANDOUBLEUNDERSCORE)
#define petscdrawsetcoordinates_ petscdrawsetcoordinates
#endif
#ifdef PETSC_HAVE_FORTRAN_CAPS
#define petscdrawgetcoordinates_ PETSCDRAWGETCOORDINATES
#elif !defined(PETSC_HAVE_FORTRAN_UNDERSCORE) && !defined(FORTRANDOUBLEUNDERSCORE)
#define petscdrawgetcoordinates_ petscdrawgetcoordinates
#endif
/* Provide declarations for malloc/free if needed for strings */
#include <stdlib.h>


/* Definitions of Fortran Wrapper routines */
#if defined(__cplusplus)
extern "C" {
#endif
PETSC_EXTERN void  petscdrawsetcoordinates_(PetscDraw draw,PetscReal *xl,PetscReal *yl,PetscReal *xr,PetscReal *yr, int *ierr)
{
CHKFORTRANNULLOBJECT(draw);
*ierr = PetscDrawSetCoordinates(
	(PetscDraw)PetscToPointer((draw) ),*xl,*yl,*xr,*yr);
}
PETSC_EXTERN void  petscdrawgetcoordinates_(PetscDraw draw,PetscReal *xl,PetscReal *yl,PetscReal *xr,PetscReal *yr, int *ierr)
{
CHKFORTRANNULLOBJECT(draw);
CHKFORTRANNULLREAL(xl);
CHKFORTRANNULLREAL(yl);
CHKFORTRANNULLREAL(xr);
CHKFORTRANNULLREAL(yr);
*ierr = PetscDrawGetCoordinates(
	(PetscDraw)PetscToPointer((draw) ),xl,yl,xr,yr);
}
#if defined(__cplusplus)
}
#endif
