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.6 by cebix, 2004-01-12T15:13:20Z vs.
Revision 1.7 by cebix, 2004-01-14T17:24:19Z

# Line 187 | Line 187 | extern HWND hwnd;
187   // Command line options.
188   extern BOOL full_screen;
189  
190 #if defined(DEBUG)
191
192 inline void Debug(const char *format, ...)
193 {
194        va_list args;
195        va_start(args, format);
196        char tmp[256];
197        vsprintf(tmp, format, args);
198        va_end(args);
199        OutputDebugString(tmp);
200 }
201
202 #else
203
204 inline void Debug(const char *format, ...)
205 {
206 }
207
208 #endif
209
210 #define DebugResult(message, val) \
211        Debug("%s: 0x%x (%d)\n", message, val, HRESULT_CODE(val))
212
190   #endif
191  
192  
# Line 237 | Line 214 | private:
214   extern C64 *TheC64;
215  
216  
217 + /*
218 + *  Functions
219 + */
220 +
221 + // Determine whether path name refers to a directory
222 + extern bool IsDirectory(const char *path);
223 +
224   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines