openenvutils/telnetserver/inc/dummy.h
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // This file contains the declarations for unsupported functions. These functions
       
    15 // should be revisited to check the feasibility of supporting them.  
       
    16 // 
       
    17 //
       
    18  
       
    19 #ifdef __SYMBIAN32__
       
    20 #ifndef dummy_h
       
    21 #define dummy_h
       
    22 
       
    23 #include "termios.h"
       
    24 #include <unistd.h>
       
    25 
       
    26 int cfsetispeed(struct termios *, speed_t);
       
    27 int cfsetospeed(struct termios *, speed_t);
       
    28 int	tcgetattr(int, struct termios *);
       
    29 int	tcsetattr(int, int, const struct termios *);
       
    30 void openlog(const char *path, int opt, int fac);
       
    31 void closelog(void); 
       
    32 
       
    33 #endif //dummy_h
       
    34 
       
    35 #endif //__SYMBIAN32__