Changeset 5344
- Timestamp:
- Mar 21, 2001, 12:18:56 AM (25 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
-
changelog (modified) (2 diffs)
-
include/win/options.h (modified) (3 diffs)
-
src/ddraw/OS2UTIL.CPP (modified) (2 diffs)
-
src/ddraw/cio2.h (modified) (1 diff)
-
src/ddraw/ddraw.CPP (modified) (4 diffs)
-
src/ddraw/os2fsdd.h (modified) (2 diffs)
-
src/ddraw/rectangle.cpp (modified) (2 diffs)
-
src/ddraw/rectangle.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r5343 r5344 1 /* $Id: changelog,v 1.1312 2001-03-20 22:57:06 bird Exp $ */ 1 /* $Id: changelog,v 1.1313 2001-03-20 23:18:54 mike Exp $ */ 2 3 2001-03-20: Michal Necasek <michalnec@volny.cz> 4 - include/DDRAW: 5 o Cleaned up so that it builds with Watcom. Still lots 6 of warnings and Watcom build doesn't seem to work right now. 2 7 3 8 2001-03-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no> … … 23 28 - GDI32: o Check y inversion when resyncing dib section 24 29 25 2001-03-19: Michal Necasek <michalnec@volny.cz>26 - include: o Few updates/fixes for wmake. Enabled .AUTOEPEND which27 seems to be working fine for DSOUND28 30 29 31 2001-03-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no> -
trunk/include/win/options.h
r5276 r5344 1 /* $Id: options.h,v 1. 6 2001-02-28 20:22:44 sandervlExp $ */1 /* $Id: options.h,v 1.7 2001-03-20 23:18:55 mike Exp $ */ 2 2 3 3 /* … … 12 12 13 13 //#include "windef.h" 14 15 #ifdef __cplusplus 16 extern "C" { 17 #endif 14 18 15 19 /* Supported languages */ … … 111 115 extern void VERSION_ParseDosVersion( const char *arg ); 112 116 117 #ifdef __cplusplus 118 } 119 #endif 120 113 121 #endif /* __WINE_OPTIONS_H */ -
trunk/src/ddraw/OS2UTIL.CPP
r4870 r5344 1 /* $Id: OS2UTIL.CPP,v 1.1 0 2001-01-02 18:21:39 sandervlExp $ */1 /* $Id: OS2UTIL.CPP,v 1.11 2001-03-20 23:18:55 mike Exp $ */ 2 2 3 3 /* … … 49 49 //****************************************************************************** 50 50 51 extern "C" { 51 52 BOOL APIENTRY _GpiEnableYInversion (HPS hps, LONG lHeight); 53 } 52 54 53 55 void InverseDC(HDC hdc, LONG lHeight) -
trunk/src/ddraw/cio2.h
r1746 r5344 10 10 extern "C" 11 11 { 12 int io_init1();13 int io_init2(short);14 int io_exit1();12 int _System io_init1(); 13 int _System io_init2(short); 14 int _System _io_exit1(); 15 15 16 char c_inb1(short);17 short c_inw1(short);18 long c_inl1(short);19 void c_outb1(short,char);20 void c_outw1(short,short);21 void c_outl1(short,long);16 char _System c_inb1(short); 17 short _System c_inw1(short); 18 long _System c_inl1(short); 19 void _System c_outb1(short,char); 20 void _System c_outw1(short,short); 21 void _System c_outl1(short,long); 22 22 int psw(); 23 23 } -
trunk/src/ddraw/ddraw.CPP
r5326 r5344 1 /* $Id: ddraw.CPP,v 1.1 7 2001-03-18 21:44:44mike Exp $ */1 /* $Id: ddraw.CPP,v 1.18 2001-03-20 23:18:55 mike Exp $ */ 2 2 3 3 /* … … 28 28 #include <misc.h> 29 29 30 extern "C" { 31 30 32 //****************************************************************************** 31 33 //****************************************************************************** … … 71 73 72 74 //****************************************************************************** 73 typedef BOOL (FAR PASCAL * LPDDENUMCALLBACKA)(GUID FAR *, LPSTR, LPSTR, LPVOID);75 //typedef BOOL (FAR PASCAL * LPDDENUMCALLBACKA)(GUID FAR *, LPSTR, LPSTR, LPVOID); 74 76 //****************************************************************************** 75 77 HRESULT WIN32API OS2DirectDrawEnumerateA(LPDDENUMCALLBACKA lpCallback, … … 285 287 }//****************************************************************************** 286 288 289 } -
trunk/src/ddraw/os2fsdd.h
r5330 r5344 11 11 #ifndef __OS2FSDD__ 12 12 #define __OS2FSDD__ 13 14 #ifdef __cplusplus 15 extern "C" { 16 #endif 13 17 14 18 ULONG APIENTRY Gre32Entry3(ULONG,ULONG,ULONG); … … 43 47 #define GreResurrection(a,b,c) (BOOL) _Gre32Entry5((HDC)(a),(LONG)(b),(c),0L,NGreResurrection) 44 48 49 50 #ifdef __cplusplus 51 } 52 #endif 53 45 54 ULONG SetSVGAMode (ULONG ulHorRes, 46 55 ULONG ulVerRes, -
trunk/src/ddraw/rectangle.cpp
r5326 r5344 1 /* $Id: rectangle.cpp,v 1. 4 2001-03-18 21:44:46 mike Exp $ */1 /* $Id: rectangle.cpp,v 1.5 2001-03-20 23:18:56 mike Exp $ */ 2 2 3 3 /* … … 10 10 */ 11 11 12 typedef long BOOL;12 typedef unsigned long BOOL; 13 13 14 14 #include "rectangle.h" -
trunk/src/ddraw/rectangle.h
r5326 r5344 1 /* $Id: rectangle.h,v 1. 5 2001-03-18 21:44:46 mike Exp $ */1 /* $Id: rectangle.h,v 1.6 2001-03-20 23:18:56 mike Exp $ */ 2 2 3 3 /* … … 30 30 /*------------------------------- Comparisons --------------------------------*/ 31 31 BOOL 32 operator == ( const DDRectangle &rectangle ) const,33 operator != ( const DDRectangle &rectangle ) const;32 operator == ( const DDRectangle &rectangle ) const, 33 operator != ( const DDRectangle &rectangle ) const; 34 34 35 35 /*--------------------------------- Testing ----------------------------------*/
Note:
See TracChangeset
for help on using the changeset viewer.
