diff options
| author | John Hawthorn <jhawthor@uvic.ca> | 2008-06-22 01:34:45 -0700 | 
|---|---|---|
| committer | John Hawthorn <jhawthor@uvic.ca> | 2008-06-22 01:34:45 -0700 | 
| commit | 292cf3ee0494b14e6f82df755ae02b2f078afc35 (patch) | |
| tree | 624dd892b6d44e85131a5a192eb3093ebc1e0428 /src/meh.h | |
| parent | 12fe3f62f2931f296beb130840c091542647319b (diff) | |
| download | mirror-meh-292cf3ee0494b14e6f82df755ae02b2f078afc35.tar.gz mirror-meh-292cf3ee0494b14e6f82df755ae02b2f078afc35.tar.bz2 mirror-meh-292cf3ee0494b14e6f82df755ae02b2f078afc35.zip | |
cleanup
Diffstat (limited to 'src/meh.h')
| -rw-r--r-- | src/meh.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| @@ -10,15 +10,15 @@ struct imageformat{  struct image{  	unsigned char *buf; -	int width, height; +	unsigned int width, height;  	FILE *f;  	struct imageformat *fmt;  };  #include "X11/Xlib.h" -XImage *ximage(struct image *img, int width, int height); -void setaspect(int w, int h); +XImage *ximage(struct image *img, unsigned int width, unsigned int height); +void setaspect(unsigned int w, unsigned int h);  void xinit(); -void drawimage(struct image *img, int width, int height); +void drawimage(struct image *img, unsigned int width, unsigned int height); | 
