/*********************************************************************
 * EDGE DETECTOR XP
 * 
 * Levent Besik, levent@cs.earlham.edu
 * Hassan Halta, hassan@cs.earlham.edu
 *
 * Declaration of pixel_chunk struct. The routines are defined
 * in pixel_chunk.c. This is a neat a way to send and recieve
 * 2D arrays in PVM.
 * 
 * Generated by PET (Pvm Encoding Tool) Version 0.1 
  *********************************************************************/ 

/* The size of the array should be the same as MAX_ARRAY_SIZE in pEdge.h */
struct pixel_chunk {
   int     chunk[800][800]; 
};

