Changeset 5288 for trunk/include
- Timestamp:
- Mar 6, 2001, 10:44:40 PM (25 years ago)
- Location:
- trunk/include
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/odin.h
r5148 r5288 51 51 #define WIN32API __stdcall 52 52 #define WINAPI __stdcall 53 #define SYSTEM _ _stdcall53 #define SYSTEM _System 54 54 #define PASCAL __stdcall 55 55 #define UNALIGNED 56 57 //MN: For some strange reason Watcom doesn't define these for C++! 58 // This is not the best place to define them though. 59 #ifdef __cplusplus 60 #define min(a,b) (((a) < (b)) ? (a) : (b)) 61 #define max(a,b) (((a) > (b)) ? (a) : (b)) 62 #endif 63 56 64 #else 57 65 -
trunk/include/odin32.post.wat.mk
r4992 r5288 1 # $Id: odin32.post.wat.mk,v 1.1 0 2001-01-20 18:18:56 birdExp $1 # $Id: odin32.post.wat.mk,v 1.11 2001-03-06 21:44:39 mike Exp $ 2 2 3 3 # … … 358 358 !ifndef NOTEXPDEF 359 359 $(OBJDIR)\$(ORGTARGET).lib: $(OBJDIR)\$(ORGTARGET)exp.def 360 $(IMPLIB) $(IMPLIBFLAGS) $ [@360 $(IMPLIB) $(IMPLIBFLAGS) $@ $[@ 361 361 !else 362 362 $(OBJDIR)\$(TARGET).lib: $(DEFFILE) … … 382 382 $(OBJDIR)\bldlevel.$(DEFFILE): $(DEFFILE) 383 383 $(BLDLEVELINF) $(DEFFILE) $@ -R"$(DEFFILE)" \ 384 -V" #define=ODIN32_VERSION,$(ODIN32_INCLUDE)\odinbuild.h" \385 -M" #define=ODIN32_BUILD_NR,$(ODIN32_INCLUDE)\odinbuild.h"384 -V"$#define=ODIN32_VERSION,$(ODIN32_INCLUDE)\odinbuild.h" \ 385 -M"$#define=ODIN32_BUILD_NR,$(ODIN32_INCLUDE)\odinbuild.h" 386 386 387 387 -
trunk/include/odin32.rel.wat.mk
r4826 r5288 1 # $Id: odin32.rel.wat.mk,v 1. 3 2000-12-17 19:54:56 birdExp $1 # $Id: odin32.rel.wat.mk,v 1.4 2001-03-06 21:44:39 mike Exp $ 2 2 3 3 # … … 19 19 SOMLIB = somtk.lib 20 20 RTLLIB = clib3r.lib 21 RTLLIB_O = clib3r.lib 21 RTLLIB_O = clib3r.lib plbrdll.lib mt7rdll.lib 22 22 DLLENTRY = $(ODIN32_LIB)\dllentry.obj 23 23 ODINCRT = odincrtd -
trunk/include/odin32.tools.wat.mk
r4770 r5288 1 # $Id: odin32.tools.wat.mk,v 1. 2 2000-12-09 16:04:23 phallerExp $1 # $Id: odin32.tools.wat.mk,v 1.3 2001-03-06 21:44:39 mike Exp $ 2 2 3 3 # 4 4 # Odin32 API 5 5 # 6 # Watcom C/C++ 11.x tools and in terference rules.6 # Watcom C/C++ 11.x tools and inference rules. 7 7 # 8 8 … … 11 11 # Watcom Specific tools 12 12 # 13 MAPSYM = ..\..\$(ODIN32_TOOLS)\mapsymWat.cmd13 MAPSYM = $(ODIN32_TOOLS)\mapsymWat.cmd 14 14 KDEF2WAT = $(ODIN32_TOOLS)\kDef2Wat.exe 15 15 -
trunk/include/odinlx.h
r4930 r5288 1 /* $Id: odinlx.h,v 1. 6 2001-01-11 18:03:48 sandervlExp $ */1 /* $Id: odinlx.h,v 1.7 2001-03-06 21:44:39 mike Exp $ */ 2 2 3 3 /* … … 17 17 #include <versionos2.h> 18 18 19 extern "C" { 20 19 21 typedef ULONG (* WIN32API WIN32DLLENTRY)(ULONG hInstance, ULONG reason, LPVOID reserved); 20 22 typedef int (* WIN32API WINMAIN)(HANDLE hInstance, HANDLE hPrevInstance, LPSTR lpCmdLine, int nShowCmd); … … 24 26 //System dlls set EntryPoint to 0 25 27 //Parameters: 26 // HINSTANCE hInstance 28 // HINSTANCE hInstance - OS/2 module handle 27 29 // WIN32DLLENTRY EntryPoint - Win32 dll entrypoint address 28 30 // PVOID pResData - pointer to win32 resource data … … 34 36 //Returns: Odin32 module handle 35 37 //****************************************************************************** 36 DWORD WIN32API RegisterLxDll(HINSTANCE hInstance, WIN32DLLENTRY EntryPoint, 37 PVOID pResData, 38 DWORD MajorImageVersion = ODINNT_MAJOR_VERSION, 38 DWORD WIN32API RegisterLxDll(HINSTANCE hInstance, WIN32DLLENTRY EntryPoint, 39 PVOID pResData, 40 DWORD MajorImageVersion = ODINNT_MAJOR_VERSION, 39 41 DWORD MinorImageVersion = ODINNT_MINOR_VERSION, 40 42 DWORD Subsystem = IMAGE_SUBSYSTEM_WINDOWS_CUI); … … 50 52 //****************************************************************************** 51 53 BOOL WIN32API RegisterLxExe(WINMAIN EntryPoint, PVOID pResData); 52 54 } 53 55 #endif -
trunk/include/win/wine/dd_obj_base.h
r2640 r5288 1 /* $Id: dd_obj_base.h,v 1. 3 2000-02-04 23:12:19 hughExp $ */1 /* $Id: dd_obj_base.h,v 1.4 2001-03-06 21:44:39 mike Exp $ */ 2 2 /* 3 3 * This file defines the macros and types necessary to define COM interfaces, … … 8 8 #define __WINE_DD_OBJ_BASE_H 9 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 10 13 11 14 /***************************************************************************** … … 679 682 #endif 680 683 684 #ifdef __cplusplus 685 } 686 #endif 681 687 682 688 #endif /* __WINE_WINE_OBJ_BASE_H */
Note:
See TracChangeset
for help on using the changeset viewer.