home *** CD-ROM | disk | FTP | other *** search
- /*
- name: generic.c
-
- Generic display routines (none!)
- --------------------------------
-
- */
-
-
- #include <stdio.h>
-
- #include "defs.h"
- #include "extern.h"
-
-
- #define DISPLAY_NONE 0
-
-
- long OpenDisplay(long DisplayType)
- {
- if(DisplayType!=DISPLAY_NONE) {
- fprintf(stderr,"Warning: Unsupported display type (%d)\n",DisplayType);
- }
-
- return(0L);
- }
-
-
- void CloseDisplay(void)
- {
-
- }
-
-
- void DisplayPlot(int x, int y, unsigned char RGBColor[])
- {
-
- }
-