- Timestamp:
- Nov 5, 1999, 6:42:13 PM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/iccio.asm
r100 r1621 1 ; $Id: iccio.asm,v 1. 3 1999-06-10 20:47:59 phallerExp $1 ; $Id: iccio.asm,v 1.4 1999-11-05 17:42:12 achimha Exp $ 2 2 3 3 ; ********************************************************************** … … 15 15 16 16 DATA32 SEGMENT DWORD PUBLIC USE32 'DATA' 17 ASSUME CS:FLAT ,DS:FLAT,SS:FLAT 17 ; ASSUME CS:FLAT ,DS:FLAT,SS:FLAT 18 ASSUME DS:FLAT,SS:FLAT 18 19 EXTRN ioentry:DWORD 19 20 EXTRN gdt:WORD … … 22 23 23 24 CODE32 SEGMENT DWORD PUBLIC USE32 'CODE' 24 ASSUME CS:FLAT ,DS:FLAT,SS:FLAT 25 ; ASSUME CS:FLAT ,DS:FLAT,SS:FLAT 26 ASSUME DS:FLAT,SS:FLAT 25 27 26 28 ALIGN 04H -
trunk/src/kernel32/old/kernel32exp.def
r955 r1621 592 592 _OS2memmove @906 593 593 ConvertNameId @1200 594 DebugErrorBox @1201 594 595 WriteLog @1202 595 596 WriteLogError @1214 … … 623 624 _GetThreadTHDB@0 @1235 624 625 _CreateWin32Exe@4 @1236 626 _RegisterLxDll@12 @1238 627 _UnregisterLxDll@4 @1239 625 628 _HEAP_xalloc@12 @1240 626 629 _HEAP_xrealloc@16 @1241 -
trunk/src/kernel32/time.cpp
r1532 r1621 1 /* $Id: time.cpp,v 1. 5 1999-10-31 18:15:13 sandervlExp $ */1 /* $Id: time.cpp,v 1.6 1999-11-05 17:42:12 achimha Exp $ */ 2 2 3 3 /* … … 658 658 its possible that it fails when the time looks like ss:mm:hh as example*/ 659 659 if (tflags & (TIME_NOMINUTESORSECONDS)) 660 { if ((pos = strstr ( format, ":mm")) )660 { if ((pos = strstr ( format, ":mm")) != 0) 661 661 { memcpy ( pos, pos+3, strlen(format)-(pos-format)-2 ); 662 662 } 663 663 } 664 664 if (tflags & (TIME_NOSECONDS)) 665 { if ((pos = strstr ( format, ":ss")) )665 { if ((pos = strstr ( format, ":ss")) != 0) 666 666 { memcpy ( pos, pos+3, strlen(format)-(pos-format)-2 ); 667 667 }
Note:
See TracChangeset
for help on using the changeset viewer.