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