os/ossrv/genericopenlibs/openenvcore/libc/include/link.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 * Name        : link.h
    16 * Part of     : libc-sys component
    17 * To simulate links
    18 * Version     : 1.0
    19 *
    20 */
    21 
    22 
    23 
    24 
    25 #ifndef LINK_H
    26 #define LINK_H
    27 
    28 // INCLUDES
    29 #include <e32std.h>
    30 #include "systemspecialfilercg.h"
    31 
    32 
    33 // DATA TYPES
    34 
    35 struct SLinkInfo {
    36    struct SSpecialFileMagicHeader iMagicHeader;
    37    wchar_t iParentPath[KMaxFileName+1];
    38 };
    39 
    40 #endif      // LINK_H
    41 
    42 // End of File