issue #1620: Renamed LocalStorage.c to LocalStorage.cpp

This commit is contained in:
James Chen 2013-01-06 14:40:54 +08:00
parent dc1490c8ae
commit 3822ceee8c
2 changed files with 0 additions and 9 deletions

View File

@ -33,10 +33,6 @@ THE SOFTWARE.
#include <stdio.h>
#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
#endif
/** Initializes the database. If path is null, it will create an in-memory DB */
void localStorageInit( const char *fullpath);
@ -52,9 +48,4 @@ const char* localStorageGetItem( const char *key );
/** removes an item from the LS */
void localStorageRemoveItem( const char *key );
#ifdef __cplusplus
}
#endif
#endif // __JSB_LOCALSTORAGE_H