change comments to old C style (oops, TC fix)

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/branches/UNSTABLE@1073 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Kenneth J Davis 2004-12-19 21:35:14 +00:00
parent 89c51f2223
commit e90387e6dd
1 changed files with 5 additions and 5 deletions

View File

@ -272,11 +272,11 @@ int FDKrnConfigMain(int argc, char **argv);
boot sector (optionally included).
*/
typedef struct DOSBootFiles {
const char * kernel; // filename boot sector loads and chains to
const char * dos; // optional secondary file for OS
WORD loadseg; // segment kernel file expects to start at
BOOL stdbs; // use FD boot sector (T) or oem compat one (F)
LONG minsize; // smallest dos file can be and be valid, 0=existance optional
const char * kernel; /* filename boot sector loads and chains to */
const char * dos; /* optional secondary file for OS */
WORD loadseg; /* segment kernel file expects to start at */
BOOL stdbs; /* use FD boot sector (T) or oem compat one (F) */
LONG minsize; /* smallest dos file can be and be valid, 0=existance optional */
} DOSBootFiles;
DOSBootFiles bootFiles[] = {
/* Note: This order is the order OEM:AUTO uses to determine DOS flavor. */