00001 /* 00002 * ============================================================================== 00003 * Name : EPos_TPosLmDatabaseEvent.h 00004 * Part of : Mobile Location Framework/Landmarks 00005 * Interface : SDK/S60, Landmarks Database Management API 00006 * Description : TPosLmDatabaseEvent 00007 * Version : %version: 2 % 00008 * 00009 * Copyright © 2005-2006 Nokia. All rights reserved. 00010 * This material, including documentation and any related computer 00011 * programs, is protected by copyright controlled by Nokia. All 00012 * rights are reserved. Copying, including reproducing, storing, 00013 * adapting or translating, any or all of this material requires the 00014 * prior written consent of Nokia. This material also contains 00015 * confidential information which may not be disclosed to others 00016 * without the prior written consent of Nokia. 00017 * ============================================================================ 00018 * Template version: 4.0 00019 */ 00020 00021 #ifndef TPOSLMDATABASEEVENT_H 00022 #define TPOSLMDATABASEEVENT_H 00023 00024 #include <e32def.h> 00025 00034 enum TPosLmDatabaseEventType 00035 { 00036 EPosLmDbUnknownEvent= 0, 00042 EPosLmDbDatabaseRegistered = 100, 00047 EPosLmDbDatabaseUnregistered, 00051 EPosLmDbSettingsModified, 00055 EPosLmDbMediaRemoved = 200, 00058 EPosLmDbMediaInserted, 00061 EPosLmDbNewDefaultDbLocation = 300 00065 }; 00066 00072 struct TPosLmDatabaseEvent 00073 { 00074 TPosLmDatabaseEventType iEventType; 00075 TUint8 iUnused[8]; 00076 }; 00077 00078 // TPOSLMDATABASEEVENT_H 00079 #endif 00080 00081