Changeset 2243 for trunk/src/fastdep


Ignore:
Timestamp:
Jan 10, 2009, 3:24:02 AM (17 years ago)
Author:
bird
Message:

*: Updated copyright to 2009 and normalized name & email.

Location:
trunk/src/fastdep
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/fastdep/Makefile

    r785 r2243  
    66#   Makefile for the Quick-and-Dirty dependency utility. (FastDep)
    77#
    8 #   Copyright (c) 1999-2002 knut st. osmundsen (bird-kBuild-spam@anduin.net)
     8#   Copyright (c) 1999-2009 knut st. osmundsen (bird-kBuild-spamix@anduin.net)
    99#
    1010#   GPL
  • trunk/src/fastdep/Makefile.kmk

    r2019 r2243  
    55
    66#
    7 # Copyright (c) 2007-2008 knut st. osmundsen <bird-src-spam@anduin.net>
     7# Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/src/fastdep/avl.c

    r7 r2243  
    55 * Copyright (c) 1999 knut st. osmundsen
    66 *
    7  * Project Odin Software License can be found in LICENSE.TXT
     7 * GPL
    88 *
    99 */
  • trunk/src/fastdep/avl.h

    r7 r2243  
    1111 *
    1212 *
    13  * Copyright (c) 1999-2000 knut st. osmundsen
     13 * Copyright (c) 1999-2009 knut st. osmundsen
    1414 *
    15  * Project Odin Software License can be found in LICENSE.TXT
     15 * GPL
    1616 *
    1717 */
  • trunk/src/fastdep/fastdep.c

    r1149 r2243  
    33 * Fast dependents. (Fast = Quick and Dirty!)
    44 *
    5  * Copyright (c) 1999-2002 knut st. osmundsen (bird-kBuild-spam@anduin.net)
     5 * Copyright (c) 1999-2009 knut st. osmundsen (bird-kBuild-spamix@anduin.net)
    66 *
    77 * GPL
     
    10061006        "\n"
    10071007        "Options and files could be mixed.\n"
    1008         " copyright (c) 1999-2002 knut st. osmundsen (bird-kBuild-spam@anduin.net)\n",
     1008        " copyright (c) 1999-2009 knut st. osmundsen (bird-kBuild-spamix@anduin.net)\n",
    10091009        ODIN32_BUILD_NR,
    10101010        pszDefaultDepFile
  • trunk/src/fastdep/os2fake-win.c

    r7 r2243  
    11/* $Id$
    2  * 
     2 *
    33 * OS/2 Fake library for Win32.
    4  * 
     4 *
    55 * Copyright (c) 2001 knut st. osmundsen (knut.stange.osmundsen@mynd.no)
    66 *
    7  * Project Odin Software License can be found in LICENSE.TXT
     7 * GPL
    88 *
    99 */
     
    4444        ULONG   ulWin;
    4545        ULONG   ulOs2;
    46     }       aConvAttr[] = 
    47     {                                 
     46    }       aConvAttr[] =
     47    {
    4848        {FILE_ATTRIBUTE_READONLY,   FILE_READONLY},
    4949        {FILE_ATTRIBUTE_HIDDEN,     FILE_HIDDEN},
     
    5151        {FILE_ATTRIBUTE_DIRECTORY,  FILE_DIRECTORY},
    5252        {FILE_ATTRIBUTE_ARCHIVE,    FILE_ARCHIVED}
    53     };                                   
     53    };
    5454    ULONG   ulOS2Attr = 0;
    5555    int     i;
     
    129129            {
    130130                WIN32_FILE_ATTRIBUTE_DATA   fad;
    131                
     131
    132132                if (GetFileAttributesEx(pszPathName, GetFileExInfoStandard, &fad)) //W98, NT4 and above.
    133133                {
    134134                    PFILESTATUS3    pfst3 = (PFILESTATUS3)(pInfoBuf);
    135                    
     135
    136136                    if (fad.nFileSizeHigh > 0)
    137137                        rc = ERROR_BAD_LENGTH;
     
    156156    return rc;
    157157}
    158            
     158
    159159
    160160APIRET OS2ENTRY         DosFindFirst(
     
    219219    {
    220220        PFILEFINDBUF3   pfindbuf = (PFILEFINDBUF3)pFindBuf;
    221        
     221
    222222        memcpy(pfindbuf->achName, FindData.cFileName, pfindbuf->cchName = strlen(FindData.cFileName) + 1);
    223223        pfindbuf->cbFile = pfindbuf->cbFileAlloc = FindData.nFileSizeHigh > 0 ? 0xffffffff : FindData.nFileSizeLow;
     
    267267    {
    268268        PFILEFINDBUF3   pfindbuf = (PFILEFINDBUF3)pFindBuf;
    269        
     269
    270270        memcpy(pfindbuf->achName, FindData.cFileName, pfindbuf->cchName = strlen(FindData.cFileName) + 1);
    271271        pfindbuf->cbFile = pfindbuf->cbFileAlloc = FindData.nFileSizeHigh > 0 ? 0xffffffff : FindData.nFileSizeLow;
     
    295295
    296296
    297                    
     297
  • trunk/src/fastdep/os2fake.h

    r7 r2243  
    11/* $Id$
    2  * 
     2 *
    33 * Structures, defines and function prototypes for the OS/2 fake library.
    4  *
    5  * Copyright (c) 2001 knut st. osmundsen (knut.stange.osmundsen@mynd.no)
    64 *
    7  * Project Odin Software License can be found in LICENSE.TXT
     5 * Copyright (c) 2001-2009 knut st. osmundsen (knut.stange.osmundsen@mynd.no)
     6 *
     7 * GPL
    88 *
    99 */
    10  
    11  
     10
     11
    1212#ifndef _os2fake_h_
    1313#define _os2fake_h_
    1414
    15                    
     15
    1616/*******************************************************************************
    1717*   Defined Constants And Macros                                               *
    1818*******************************************************************************/
    1919#ifndef OS2ENTRY
    20 #define OS2ENTRY   
     20#define OS2ENTRY
    2121#endif
    2222
     
    3535#define FIL_QUERYFULLNAME       5
    3636#endif
    37    
     37
    3838#define FILE_NORMAL             0x0000
    3939#define FILE_READONLY           0x0001
     
    9494#endif
    9595#if !defined(_WINNT_) && !defined(PVOID)
    96 typedef VOID *          PVOID; 
     96typedef VOID *          PVOID;
    9797#endif
    9898
     
    149149typedef struct _FILEFINDBUF3    /* findbuf3 */
    150150{
    151     ULONG   oNextEntryOffset;   
     151    ULONG   oNextEntryOffset;
    152152    FDATE   fdateCreation;
    153153    FTIME   ftimeCreation;
     
    158158    ULONG   cbFile;
    159159    ULONG   cbFileAlloc;
    160     ULONG   attrFile;           
     160    ULONG   attrFile;
    161161    UCHAR   cchName;
    162162    CHAR    achName[CCHMAXPATHCOMP];
Note: See TracChangeset for help on using the changeset viewer.