Changeset 30

Show
Ignore:
Timestamp:
10/13/02 14:42:21 (6 years ago)
Author:
rossbencina
Message:

added Pa_GetVersionText function

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pa_proposals/trunk/possibilities.html

    r29 r30  
    5252 
    5353 
    54 <H4>Pa_GetVersion() Function</H4> 
     54<H4>Version querying functions</H4> 
    5555 
    5656<P> 
    5757Some clients could benefit from being able to determine which version of 
    5858PortAudio is in use. This could be achieved using the following version  
    59 querying function: 
     59querying functions: 
    6060</P> 
    6161 
    6262<PRE> 
    63 /* return the release number of the currently running build of PortAudio */ 
     63/* return the release number of the currently running build of PortAudio, eg 1900 */ 
    6464int Pa_GetVersion(); 
     65 
     66/* return a textual description of the current PortAudio build, eg "PortAudio V19-devel 13 October 2002" */ 
     67const char* Pa_GetVersionText(); 
    6568</PRE> 
    6669