Changeset 1621 for trunk/src


Ignore:
Timestamp:
Nov 5, 1999, 6:42:13 PM (26 years ago)
Author:
achimha
Message:

source code cleanup, remove warnings

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 phaller Exp $
     1; $Id: iccio.asm,v 1.4 1999-11-05 17:42:12 achimha Exp $
    22
    33; **********************************************************************
     
    1515
    1616DATA32  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
    1819    EXTRN   ioentry:DWORD
    1920    EXTRN   gdt:WORD
     
    2223
    2324CODE32  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
    2527
    2628    ALIGN 04H
  • trunk/src/kernel32/old/kernel32exp.def

    r955 r1621  
    592592    _OS2memmove                               @906
    593593    ConvertNameId                             @1200
     594    DebugErrorBox                             @1201
    594595    WriteLog                                  @1202
    595596    WriteLogError                             @1214
     
    623624    _GetThreadTHDB@0                          @1235
    624625    _CreateWin32Exe@4                         @1236
     626    _RegisterLxDll@12                         @1238
     627    _UnregisterLxDll@4                        @1239
    625628    _HEAP_xalloc@12                           @1240
    626629    _HEAP_xrealloc@16                         @1241
  • trunk/src/kernel32/time.cpp

    r1532 r1621  
    1 /* $Id: time.cpp,v 1.5 1999-10-31 18:15:13 sandervl Exp $ */
     1/* $Id: time.cpp,v 1.6 1999-11-05 17:42:12 achimha Exp $ */
    22
    33/*
     
    658658   its possible that it fails when the time looks like ss:mm:hh as example*/
    659659   if (tflags & (TIME_NOMINUTESORSECONDS))
    660    { if ((pos = strstr ( format, ":mm")))
     660   { if ((pos = strstr ( format, ":mm")) != 0)
    661661     { memcpy ( pos, pos+3, strlen(format)-(pos-format)-2 );
    662662     }
    663663   }
    664664   if (tflags & (TIME_NOSECONDS))
    665    { if ((pos = strstr ( format, ":ss")))
     665   { if ((pos = strstr ( format, ":ss")) != 0)
    666666     { memcpy ( pos, pos+3, strlen(format)-(pos-format)-2 );
    667667     }
Note: See TracChangeset for help on using the changeset viewer.