mirror of
https://github.com/rhaleblian/dslibris.git
synced 2025-06-18 16:55:41 -04:00
Downcase filenames.
This commit is contained in:
parent
d03139513d
commit
32a62ab39d
@ -52,10 +52,10 @@ https://github.com/rhaleblian/dslibris
|
||||
|
||||
#include "expat.h"
|
||||
|
||||
#include "Book.h"
|
||||
#include "Button.h"
|
||||
#include "Prefs.h"
|
||||
#include "Text.h"
|
||||
#include "book.h"
|
||||
#include "button.h"
|
||||
#include "prefs.h"
|
||||
#include "text.h"
|
||||
#include "main.h"
|
||||
#include "parse.h"
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef BOOK_H
|
||||
#define BOOK_H
|
||||
|
||||
#include "Page.h"
|
||||
#include "page.h"
|
||||
#include <nds.h>
|
||||
#include <string>
|
||||
#include <list>
|
@ -1,7 +1,7 @@
|
||||
#ifndef _button_h
|
||||
#define _button_h
|
||||
|
||||
#include "Text.h"
|
||||
#include "text.h"
|
||||
#include <unistd.h>
|
||||
#include <string>
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef _EPUB_H_
|
||||
#define _EPUB_H_
|
||||
|
||||
#include "Book.h"
|
||||
#include "book.h"
|
||||
#include <string>
|
||||
|
||||
typedef enum { PARSE_CONTAINER, PARSE_ROOTFILE, PARSE_CONTENT } epub_parse_t;
|
||||
|
@ -27,8 +27,8 @@ A Book contains a vector of Pages.
|
||||
#define PAGE_H
|
||||
|
||||
#include <nds.h>
|
||||
#include "Book.h"
|
||||
#include "Text.h"
|
||||
#include "book.h"
|
||||
#include "text.h"
|
||||
|
||||
class Page {
|
||||
class Book *book;
|
@ -2,7 +2,7 @@
|
||||
#define _parse_h
|
||||
|
||||
#include <expat.h>
|
||||
#include "Book.h"
|
||||
#include "book.h"
|
||||
|
||||
#define PAGEBUFSIZE 2048
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef _PREFS_H
|
||||
#define _PREFS_H
|
||||
#include "expat.h"
|
||||
#include "App.h"
|
||||
#include "app.h"
|
||||
|
||||
class Prefs
|
||||
{
|
@ -20,7 +20,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
*/
|
||||
|
||||
#include "App.h"
|
||||
#include "app.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
@ -40,9 +40,9 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#include "types.h"
|
||||
#include "main.h"
|
||||
#include "parse.h"
|
||||
#include "Book.h"
|
||||
#include "Button.h"
|
||||
#include "Text.h"
|
||||
#include "book.h"
|
||||
#include "button.h"
|
||||
#include "text.h"
|
||||
#include "version.h"
|
||||
|
||||
// less-than operator to compare books by title
|
@ -14,10 +14,10 @@
|
||||
#include "types.h"
|
||||
#include "main.h"
|
||||
#include "parse.h"
|
||||
#include "App.h"
|
||||
#include "Book.h"
|
||||
#include "Button.h"
|
||||
#include "Text.h"
|
||||
#include "app.h"
|
||||
#include "book.h"
|
||||
#include "button.h"
|
||||
#include "text.h"
|
||||
|
||||
//! Book-related methods for App class.
|
||||
|
@ -15,10 +15,10 @@
|
||||
#include "types.h"
|
||||
#include "main.h"
|
||||
#include "parse.h"
|
||||
#include "App.h"
|
||||
#include "Book.h"
|
||||
#include "Button.h"
|
||||
#include "Text.h"
|
||||
#include "app.h"
|
||||
#include "book.h"
|
||||
#include "button.h"
|
||||
#include "text.h"
|
||||
|
||||
#define MIN(x,y) (x < y ? x : y)
|
||||
#define MAX(x,y) (x > y ? x : y)
|
@ -17,10 +17,10 @@
|
||||
#include "types.h"
|
||||
#include "main.h"
|
||||
#include "parse.h"
|
||||
#include "App.h"
|
||||
#include "Book.h"
|
||||
#include "Button.h"
|
||||
#include "Text.h"
|
||||
#include "app.h"
|
||||
#include "book.h"
|
||||
#include "button.h"
|
||||
#include "text.h"
|
||||
|
||||
#define MIN(x,y) (x < y ? x : y)
|
||||
#define MAX(x,y) (x > y ? x : y)
|
@ -14,10 +14,10 @@
|
||||
#include "types.h"
|
||||
#include "main.h"
|
||||
#include "parse.h"
|
||||
#include "App.h"
|
||||
#include "Book.h"
|
||||
#include "Button.h"
|
||||
#include "Text.h"
|
||||
#include "app.h"
|
||||
#include "book.h"
|
||||
#include "button.h"
|
||||
#include "text.h"
|
||||
|
||||
#define MIN(x,y) (x < y ? x : y)
|
||||
#define MAX(x,y) (x > y ? x : y)
|
@ -1,5 +1,5 @@
|
||||
#if 0
|
||||
#include <App.h>
|
||||
#include <app.h>
|
||||
#include <dswifi9.h>
|
||||
#include <DSGUI/BIPCCodes.h>
|
||||
|
@ -1,8 +1,8 @@
|
||||
#include "Book.h"
|
||||
#include "book.h"
|
||||
#include "main.h"
|
||||
#include "parse.h"
|
||||
#include "epub.h"
|
||||
#include "App.h"
|
||||
#include "app.h"
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include <sys/param.h>
|
@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
#include <nds.h>
|
||||
#include <stdio.h>
|
||||
#include "Button.h"
|
||||
#include "button.h"
|
||||
|
||||
Button::Button() {
|
||||
}
|
@ -24,10 +24,10 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#include "dirent.h"
|
||||
#include "fat.h"
|
||||
|
||||
#include "App.h"
|
||||
#include "Book.h"
|
||||
#include "Button.h"
|
||||
#include "Text.h"
|
||||
#include "app.h"
|
||||
#include "book.h"
|
||||
#include "button.h"
|
||||
#include "text.h"
|
||||
#include "expat.h"
|
||||
#include "main.h"
|
||||
#include "parse.h"
|
||||
|
@ -18,7 +18,7 @@
|
||||
To contact the copyright holder: rayh23@sourceforge.net
|
||||
*/
|
||||
|
||||
#include "Page.h"
|
||||
#include "page.h"
|
||||
#include <string.h>
|
||||
#include <list>
|
||||
|
@ -4,9 +4,9 @@
|
||||
#include "sys/time.h"
|
||||
#include "nds.h"
|
||||
#include "main.h"
|
||||
#include "App.h"
|
||||
#include "Prefs.h"
|
||||
#include "Book.h"
|
||||
#include "app.h"
|
||||
#include "prefs.h"
|
||||
#include "book.h"
|
||||
|
||||
#define PARSEBUFSIZE 1024*64
|
||||
|
@ -28,11 +28,11 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#include "fat.h"
|
||||
#include "string.h"
|
||||
|
||||
#include "App.h"
|
||||
#include "app.h"
|
||||
#include "ft.h"
|
||||
#include "main.h"
|
||||
#include "version.h"
|
||||
#include "Text.h"
|
||||
#include "text.h"
|
||||
|
||||
extern char msg[];
|
||||
std::stringstream ss;
|
Loading…
Reference in New Issue
Block a user