Platform SDK: Broadcast Architecture |
The GetRecord method returns a record object. C syntax is shown.
void *GetRecord( LONG RecordNumber );
Returns a void pointer that receives the record object. Your application should cast this void pointer to the appropriate object type before it can access the record.
The object GetRecord returns contains information corresponding to a single record for the appropriate table in the Guide database. For example, if your application calls the GetRecord method of a CEpisodeTRecordset object, an episode record object is returned. Thus, your application should cast the void pointer returned by CEpisodeTRecordset::GetRecord to a CEpisodeT pointer.
Once GetRecord returns the record object, your application can use the methods of the record object to retrieve and set field values for that record.
When the record object is no longer needed, your application should destroy it.
Windows NT/2000: Unsupported.
Windows 95/98: Requires Windows 98.
Header: Declared in dbsets.h.
Import Library: Use dbsets.lib or dbsetsst.lib.