- Timestamp:
- Mar 21, 2001, 12:18:56 AM (24 years ago)
- Location:
- trunk/src/ddraw
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
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.