Create a name that identifies the type of the audio hardware
#include <audio_driver.h>
void ado_card_set_shortname( ado_card_t *card,
                             char *name );
- card
- The card argument that io-audio passed to your
  Audio HW DLL's
  ctrl_init()
  function (see the Organization of a Driver chapter).
- name
- The short name for the card.
  This name is expected to enable the user to distinguish between
  different makes and models of sound hardware, but isn't expected to be
  unique across multiple invocations of the same driver.
  For example, SoundBlaster16.
  
 
|  | If an application needs to distinguish between invocations of the same
  driver, it should use the card's long name; see
  ado_card_set_longname(). |  
 
 
The ado_card_set_shortname() convenience
function stores a character string
of up to 32 characters that identifies the type of the audio hardware.
QNX Neutrino
| Safety: |  | 
|---|
| Cancellation point | No | 
| Interrupt handler | No | 
| Signal handler | No | 
| Thread | No | 
ado_card_set_longname()