- Timestamp:
- Mar 19, 2001, 7:56:57 PM (25 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
-
changelog (modified) (2 diffs)
-
doc/Odin.ini.txt (modified) (3 diffs)
-
include/initdll.h (modified) (2 diffs)
-
include/odin32.dbg.wat.mk (modified) (3 diffs)
-
include/odin32.post.wat.mk (modified) (2 diffs)
-
include/odin32.tools.wat.mk (modified) (2 diffs)
-
src/dsound/OS2SNDBUFFER.CPP (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r5329 r5331 1 /* $Id: changelog,v 1.1308 2001-03-19 14:54:03 bird Exp $ */ 1 /* $Id: changelog,v 1.1309 2001-03-19 18:56:55 mike Exp $ */ 2 3 2001-03-19: Michal Necasek <michalnec@volny.cz> 4 - include: o Few updates/fixes for wmake. Enabled .AUTOEPEND which 5 seems to be working fine for DSOUND 2 6 3 7 2001-03-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no> … … 5 9 now work as executed thru pec.exe. 6 10 - Kernel32: o Init VIO Console for Pe2Lx CUI images. 7 8 2001-03-18: Michal Necasek <michalnec@volny.cz>9 - DDRAW: o Finally merged DDRAW and DDRAW\NEW. A new key in ODIN.INI10 controls which version to use:11 11 12 12 [DirectDraw] -
trunk/doc/Odin.ini.txt
r5310 r5331 1 /* $Id: Odin.ini.txt,v 1. 3 2001-03-13 18:52:03 sandervlExp $ */1 /* $Id: Odin.ini.txt,v 1.4 2001-03-19 18:56:56 mike Exp $ */ 2 2 3 3 Odin initialization file documentation 4 4 5 5 [COLORS] 6 UseWinColors Use Windows colors7 values: 1/08 default: 19 SaveColors Save/restore colors to/from Odin.ini10 values: 1/011 default: 06 UseWinColors Use Windows colors 7 values: 1/0 8 default: 1 9 SaveColors Save/restore colors to/from Odin.ini 10 values: 1/0 11 default: 0 12 12 13 13 [DLLRENAMEWIN] … … 29 29 30 30 [TWAIN] 31 TwainIF values 1,2,3 (default=1)32 1 -> Use CFM Twain Driver33 2 -> Use STI Twain Driver (not supported at the moment)34 3 -> Use SANE Driver (not supported at the moment)31 TwainIF values 1,2,3 (default=1) 32 1 -> Use CFM Twain Driver 33 2 -> Use STI Twain Driver (not supported at the moment) 34 3 -> Use SANE Driver (not supported at the moment) 35 35 36 36 [CODEPAGES] … … 38 38 Display Display codepage (i.e. 1251 for Cyrillic) 39 39 40 [DirectDraw] 41 Fullscreen=[1|0] Use/don't use fullscreen DirectDraw 42 40 43 Odin.ini is stored in the directory where the environment string 41 44 ODIN_INI points to. The default path is the directory of -
trunk/include/initdll.h
r5305 r5331 13 13 #if (__IBMCPP__ == 300) || (__IBMC__ == 300) 14 14 void _Optlink __ctordtorInit( void ); 15 #define ctordtorInit() __ctordtorInit()15 #define ctordtorInit() __ctordtorInit() 16 16 17 17 void _Optlink __ctordtorTerm( void ); 18 #define ctordtorTerm() __ctordtorTerm()18 #define ctordtorTerm() __ctordtorTerm() 19 19 20 20 #elif (__IBMCPP__ == 360) || (__IBMC__ == 360) 21 21 void _Optlink __ctordtorInit( int flag ); 22 #define ctordtorInit() __ctordtorInit(0)22 #define ctordtorInit() __ctordtorInit(0) 23 23 24 24 void _Optlink __ctordtorTerm( int flag ); 25 #define ctordtorTerm() __ctordtorTerm(0)25 #define ctordtorTerm() __ctordtorTerm(0) 26 26 27 27 #else … … 56 56 #define ctordtorTerm() 57 57 58 #ifdef __cplusplus 59 extern "C" { 60 //prevent Watcom from mucking with this name 61 extern DWORD _Resource_PEResTab; 62 #pragma aux _Resource_PEResTab "*"; 63 } 64 #endif 65 58 66 #endif 59 67 -
trunk/include/odin32.dbg.wat.mk
r4826 r5331 1 # $Id: odin32.dbg.wat.mk,v 1. 3 2000-12-17 19:54:55 birdExp $1 # $Id: odin32.dbg.wat.mk,v 1.4 2001-03-19 18:56:56 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 … … 112 112 # Linker flags. 113 113 # 114 LDFLAGS = option maxe=125, quiet, symfile, nodefaultlibs LIBPath $(%WATCOM)\lib386\os2;$(%WATCOM)\lib386115 LDFLAGS_ODINCRT = option maxe=125, quiet, symfile LIBPath $(%WATCOM)\lib386\os2;$(%WATCOM)\lib386114 LDFLAGS = option maxe=125, caseexact, quiet, symfile, nodefaultlibs LIBPath $(%WATCOM)\lib386\os2;$(%WATCOM)\lib386 115 LDFLAGS_ODINCRT = option maxe=125, caseexact, quiet, symfile LIBPath $(%WATCOM)\lib386\os2;$(%WATCOM)\lib386 116 116 117 117 !ifndef NODEBUGINFO -
trunk/include/odin32.post.wat.mk
r5288 r5331 1 # $Id: odin32.post.wat.mk,v 1.1 1 2001-03-06 21:44:39mike Exp $1 # $Id: odin32.post.wat.mk,v 1.12 2001-03-19 18:56:56 mike Exp $ 2 2 3 3 # … … 112 112 lib: $(OBJDIR) \ 113 113 $(OBJDIR)\$(ORGTARGET).lib \ 114 $(ODIN32_LIB)\$(ORGTARGET).lib 114 $(ODIN32_LIB)\$(ORGTARGET).lib \ 115 .SYMBOLIC 115 116 !endif 116 117 -
trunk/include/odin32.tools.wat.mk
r5288 r5331 1 # $Id: odin32.tools.wat.mk,v 1. 3 2001-03-06 21:44:39mike Exp $1 # $Id: odin32.tools.wat.mk,v 1.4 2001-03-19 18:56:56 mike Exp $ 2 2 3 3 # … … 54 54 .res : $(OBJDIR) 55 55 56 .c.obj: #.AUTODEPEND56 .c.obj: .AUTODEPEND 57 57 $(CC) $(CFLAGS) $(CINCLUDES) $(CDEFINES) -fo$(OBJDIR)\$^&.obj $^&.c 58 58 59 .cpp.obj: #.AUTODEPEND59 .cpp.obj: .AUTODEPEND 60 60 $(CXX) $(CXXFLAGS) $(CINCLUDES) $(CDEFINES) -fo$(OBJDIR)\$^&.obj $^&.cpp 61 61 -
trunk/src/dsound/OS2SNDBUFFER.CPP
r5292 r5331 1 /* $Id: OS2SNDBUFFER.CPP,v 1.1 0 2001-03-10 06:21:06mike Exp $ */1 /* $Id: OS2SNDBUFFER.CPP,v 1.11 2001-03-19 18:56:57 mike Exp $ */ 2 2 3 3 /* … … 548 548 OS2IDirectSoundBuffer *me = (OS2IDirectSoundBuffer *)This; 549 549 550 ULONG ulBytesToPlay;551 552 550 dprintf(("DSOUND-OS2IDirectSoundBuffer::SoundBufPlay (buf=%X)", me)); 553 551 if (me == NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.
