www.pudn.com > nokie_soundplayer.rar > sound.cpp


/* Copyright (c) 2004, Nokia. All rights reserved */ 
 
 
// INCLUDE FILES 
#include "SoundApp.h" 
 
 
// ========================== OTHER EXPORTED FUNCTIONS ========================= 
 
// ----------------------------------------------------------------------------- 
// E32Dll() 
// Entry point function for Symbian Apps. 
// ----------------------------------------------------------------------------- 
// 
GLDEF_C TInt E32Dll( TDllReason ) 
    { 
    return KErrNone; 
    } 
 
// ----------------------------------------------------------------------------- 
// NewApplication() 
// Create an application, and return a pointer to it 
// ----------------------------------------------------------------------------- 
// 
EXPORT_C CApaApplication* NewApplication() 
    { 
    return ( static_cast( new CSoundApplication ) ); 
    } 
 
// End of File