Add CD-TEXT to MS-Windows ASPI driver. (The first real CD driver!)

In the process we've had to remove "const" from get_aspi.
This commit is contained in:
rocky
2004-07-13 03:45:15 +00:00
parent de43320ad1
commit 5eb83082eb
8 changed files with 271 additions and 48 deletions

View File

@@ -1,5 +1,5 @@
/*
$Id: sample8.c,v 1.2 2004/07/11 14:25:07 rocky Exp $
$Id: sample8.c,v 1.3 2004/07/13 03:45:15 rocky Exp $
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
@@ -52,5 +52,28 @@ main(int argc, const char *argv[])
cdio_destroy(cdio);
cdio = cdio_open (NULL, DRIVER_UNKNOWN);
if (NULL == cdio) {
printf("Couldn't find CD\n");
return 1;
} else {
const cdtext_t *cdtext = cdio_get_cdtext(cdio);
if (NULL != cdtext) {
printf("CD-TEXT Title: %s\n",
cdtext->field[CDTEXT_TITLE] ?
cdtext->field[CDTEXT_TITLE] : "not set");
printf("CD-TEXT Performer: %s\n",
cdtext->field[CDTEXT_PERFORMER] ?
cdtext->field[CDTEXT_PERFORMER] : "not set"
);
} else {
printf("Didn't get CD-TEXT info.\n");
}
}
cdio_destroy(cdio);
return 0;
}