ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/Frodo4/Src/main.h
(Generate patch)

Comparing Frodo4/Src/main.h (file contents):
Revision 1.3 by cebix, 2003-07-01T17:51:17Z vs.
Revision 1.4 by cebix, 2003-07-02T14:46:24Z

# Line 74 | Line 74 | public:
74          C64 *TheC64;
75  
76   private:
77 <        bool load_rom_files(void);
77 >        void load_rom(const char *which, const char *path, uint8 *where, size_t size, const uint8 *builtin);
78 >        void load_rom_files();
79  
80          char prefs_path[1024];  // Pathname of current preferences file
81          bool prefs_showing;             // true: Preferences editor is on screen
# Line 103 | Line 104 | public:
104          C64 *TheC64;
105  
106   private:
107 <        bool load_rom_files(void);
107 >        void load_rom(const char *which, const char *path, uint8 *where, size_t size, const uint8 *builtin);
108 >        void load_rom_files();
109  
110          char prefs_path[256];   // Pathname of current preferences file
111   };
# Line 132 | Line 134 | public:
134          C64 *TheC64;
135  
136   private:
137 <        bool load_rom_files(void);
137 >        void load_rom(const char *which, const char *path, uint8 *where, size_t size, const uint8 *builtin);
138 >        void load_rom_files();
139  
140          static char prefs_path[256];    // Pathname of current preferences file
141   };
# Line 154 | Line 157 | public:
157          C64 *TheC64;
158  
159   private:
160 <        bool load_rom_files(void);
160 >        void load_rom(const char *which, const char *path, uint8 *where, size_t size, const uint8 *builtin);
161 >        void load_rom_files();
162   };
163  
164   #endif
# Line 178 | Line 182 | public:
182          char prefs_path[256];   // Pathname of current preferences file
183  
184   private:
185 <        bool load_rom_files();
185 >        void load_rom(const char *which, const char *path, uint8 *where, size_t size, const uint8 *builtin);
186 >        void load_rom_files();
187   };
188  
189   // Global variables
# Line 224 | Line 229 | inline void Debug(const char *format, ..
229  
230   class Frodo
231   {
232 <  public:
233 <  Frodo(void);
234 <  ~Frodo(void);
235 <  void ReadyToRun(void);
232 > public:
233 >        Frodo();
234 >        ~Frodo();
235 >        void ReadyToRun(void);
236  
237 <  C64 *TheC64;
237 >        C64 *TheC64;
238  
239 <  private:
240 <  bool load_rom_files(void);
239 > private:
240 >        void load_rom(const char *which, const char *path, uint8 *where, size_t size, const uint8 *builtin);
241 >        void load_rom_files();
242   };
243  
244   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines