1 |
|
/* |
2 |
|
* main_Be.h - Main program, BeOS specific stuff |
3 |
|
* |
4 |
< |
* Frodo (C) 1994-1997,2002-2004 Christian Bauer |
4 |
> |
* Frodo (C) 1994-1997,2002-2005 Christian Bauer |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
359 |
|
MovePenTo(204, 52); |
360 |
|
DrawString("<Christian.Bauer@uni-mainz.de>"); |
361 |
|
MovePenTo(204, 75); |
362 |
< |
DrawString(B_UTF8_COPYRIGHT " Copyright 1994-1997,2002-2004"); |
362 |
> |
DrawString(B_UTF8_COPYRIGHT " Copyright 1994-1997,2002-2005"); |
363 |
|
MovePenTo(204, 87); |
364 |
|
DrawString("Freely distributable."); |
365 |
|
} |
388 |
|
{ |
389 |
|
new AboutWindow(); |
390 |
|
} |
391 |
+ |
|
392 |
+ |
|
393 |
+ |
/* |
394 |
+ |
* Determine whether path name refers to a directory |
395 |
+ |
*/ |
396 |
+ |
|
397 |
+ |
bool IsDirectory(const char *path) |
398 |
+ |
{ |
399 |
+ |
struct stat st; |
400 |
+ |
return stat(path.c_str(), &st) == 0 && S_ISDIR(st.st_mode); |
401 |
+ |
} |