Changeset 391 for python/trunk/Doc/library/winsound.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/library/winsound.rst
r2 r391 28 28 .. function:: PlaySound(sound, flags) 29 29 30 Call the underlying :c func:`PlaySound` function from the Platform API. The30 Call the underlying :c:func:`PlaySound` function from the Platform API. The 31 31 *sound* parameter may be a filename, audio data as a string, or ``None``. Its 32 32 interpretation depends on the value of *flags*, which can be a bitwise ORed … … 38 38 .. function:: MessageBeep([type=MB_OK]) 39 39 40 Call the underlying :c func:`MessageBeep` function from the Platform API. This40 Call the underlying :c:func:`MessageBeep` function from the Platform API. This 41 41 plays a sound as specified in the registry. The *type* argument specifies which 42 42 sound to play; possible values are ``-1``, ``MB_ICONASTERISK``, … … 134 134 Return immediately if the sound driver is busy. 135 135 136 .. note:: 137 138 This flag is not supported on modern Windows platforms. 139 136 140 137 141 .. data:: MB_ICONASTERISK
Note:
See TracChangeset
for help on using the changeset viewer.