nanogui@linuxhacker.org
nanogui@linuxhacker.org
Short patch file for the port of Microwindows to VxWorks.
<mwin/winfunc.c> includes the local header files "device.h"
and "windows.h" first in order to properly resolve namespace
conflicts between Microwindows/Win32 and VxWorks.
BAT
--
Brent A. Thompson, Next Level Communications <www.nlc.com>
1776 22nd Street #100, West Des Moines, IA 50266-1444
EMail: <Thompson@nlc.com>, Phone: (515)991-3853
*** winfunc.c_0.88 Mon Oct 9 14:32:56 2000
--- winfunc.c Mon Oct 9 14:25:28 2000
***************
*** 1,10 ****
/*
* Copyright (c) 1999 Greg Haerr <greg@censoft.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
- #include "wintern.h"
#if 0
void GsBitmap(GR_DRAW_ID id, GR_GC_ID gc, GR_COORD x, GR_COORD y, GR_SIZE width,
--- 1,12 ----
/*
* Copyright (c) 1999 Greg Haerr <greg@censoft.com>
*/
+ #include "device.h"
+ #include "windows.h"
+ #include "wintern.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if 0
void GsBitmap(GR_DRAW_ID id, GR_GC_ID gc, GR_COORD x, GR_COORD y, GR_SIZE width,
nanogui@linuxhacker.org