Browse Source

Symbian: fix compilation and small include improvement

pull/2/head
Jean-Baptiste Kempf 16 years ago
parent
commit
8cee1ead29
  1. 4
      src/symbian/dirs.c
  2. 4
      src/symbian/path.cpp
  3. 2
      src/symbian/path.h

4
src/symbian/dirs.c

@ -25,10 +25,12 @@
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include "../../../../src/libvlc.h"
#include "../libvlc.h"
#include <vlc_charset.h>
#include <vlc_configuration.h>
#include "config/configuration.h"
#include <string.h>

4
src/symbian/path.cpp

@ -22,7 +22,9 @@
#include <string.h> /* strlen */
#include <utf.h> /* CnvUtfConverter */
#include "path.h"
extern "C" {
#include "path.h"
}
/*Way to Find AppPrivatePath (A Path where an application can store its private data) */
static TInt GetPrivatePath(TFileName& privatePath)

2
src/symbian/path.h

@ -18,5 +18,5 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
extern "C" char * GetConstPrivatePath(void);
char * GetConstPrivatePath(void);

Loading…
Cancel
Save