epoc32/include/coedef.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // COEDEF.H
     2 //
     3 // Copyright (c) 2008 Stéphane Lenclud, All rights reserved.
     4 // Copyright (c) 1997-1999 Symbian Ltd.  All rights reserved.
     5 //
     6 
     7 #ifndef __COEDEF_H__
     8 #define __COEDEF_H__
     9 
    10 #include <e32keys.h>
    11 
    12 //From coedef.h
    13 enum TKeyResponse
    14    {
    15    /** The key event was not handled. */
    16    EKeyWasNotConsumed,
    17    /** The key event was handled. */
    18    EKeyWasConsumed
    19    };
    20 
    21 #endif
    22