summaryrefslogtreecommitdiff
path: root/portaudio/doc/src/tutorial/terminating_portaudio.dox
diff options
context:
space:
mode:
Diffstat (limited to 'portaudio/doc/src/tutorial/terminating_portaudio.dox')
-rw-r--r--portaudio/doc/src/tutorial/terminating_portaudio.dox20
1 files changed, 0 insertions, 20 deletions
diff --git a/portaudio/doc/src/tutorial/terminating_portaudio.dox b/portaudio/doc/src/tutorial/terminating_portaudio.dox
deleted file mode 100644
index 67f74f6..0000000
--- a/portaudio/doc/src/tutorial/terminating_portaudio.dox
+++ /dev/null
@@ -1,20 +0,0 @@
-/** @page terminating_portaudio Closing a Stream and Terminating PortAudio
-@ingroup tutorial
-
-When you are done with a stream, you should close it to free up resources:
-
-@code
- err = Pa_CloseStream( stream );
- if( err != paNoError ) goto error;
-@endcode
-
-We've already mentioned this in \ref initializing_portaudio, but in case you forgot, be sure to terminate PortAudio when you are done:
-
-@code
- err = Pa_Terminate( );
- if( err != paNoError ) goto error;
-@endcode
-
-Previous: \ref start_stop_abort | Next: \ref utility_functions
-
-*/ \ No newline at end of file