DtMmdbStylesheetGetName(library call) DtMmdbStylesheetGetName(library call)
NAME [Toc] [Back]
DtMmdbStylesheetGetName - obtains the name of a stylesheet
SYNOPSIS [Toc] [Back]
#include <DtMmdb.h>
const char* DtMmdbStylesheetGetName(
DtMmdbInfoRequest* request);
DESCRIPTION [Toc] [Back]
The DtMmdbStylesheetGetName function returns the name of the specified
stylesheet object. Do not use the free function on the returned
pointer.
ARGUMENTS [Toc] [Back]
request Specifies the bookcase in the bookcase descriptor field and
the stylesheet object's Database Engine identifier, in the
primary_oid field.
RETURN VALUE [Toc] [Back]
If DtMmdbStylesheetGetName completes successfully, it returns a
pointer to a NULL-terminated name character string. If it fails, it
returns a NULL pointer.
EXAMPLE [Toc] [Back]
The following shows how a DtMmdbStylesheetGetName call might be coded.
DtMmdbInfoRequest request;
/* fill the request here */
request.primary_oid = DtMmdbSectionGetStyleSheetId(&request);
DtMmdbStylesheetGetName(&request);
SEE ALSO [Toc] [Back]
TO BE SUPPLIED
- 1 - Formatted: January 24, 2005 [ Back ] |