Changeset 1769
- Timestamp:
- 01/01/10 14:02:54 (2 years ago)
- Files:
-
- trunk/libffado/src/ffadodevice.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/src/ffadodevice.h
r1498 r1769 68 68 * 69 69 * This function compares the GUID of two FFADODevices and returns true 70 * if the GUID of @ref a is larger than the GUID of @ref b . This is intended71 * to beused with the STL sort() algorithm.70 * if the GUID of a is larger than the GUID of b . This is intended to be 71 * used with the STL sort() algorithm. 72 72 * 73 73 * Note that GUID's are converted to integers for this. … … 76 76 * @param b pointer to second FFADODevice 77 77 * 78 * @returns true if the GUID of @ref a is larger than the GUID of @ref b .78 * @returns true if the GUID of a is larger than the GUID of b . 79 79 */ 80 80 static bool compareGUID( FFADODevice *a, FFADODevice *b ); … … 405 405 * channel (on the same port) 406 406 * 407 * @param i : Stream index 408 * @pre @ref i smaller than getStreamCount() 407 * @param i : Stream index (i has to be smaller than getStreamCount()) 409 408 * @return a StreamProcessor object if successful, NULL otherwise 410 409 */ … … 422 421 * Ieee1394Service object that is passed in the constructor. 423 422 * 424 * @param i : Stream index 425 * @pre @ref i smaller than getStreamCount() 423 * @param i : Stream index (i has to be smaller than getStreamCount()) 426 424 * @return true if successful, false if not 427 425 */ … … 429 427 430 428 /** 431 * @brief stops the stream with index @ref i 432 * 433 * @param i : Stream index 434 * @pre @ref i smaller than getStreamCount() 429 * @brief stops the stream with index i 430 * 431 * @param i : Stream index (i has to be smaller than getStreamCount()) 435 432 * @return true if successful, false if not 436 433 */
