[Python-checkins] python/dist/src/PC winsound.c,1.12,1.13

doerwalter@users.sourceforge.net doerwalter@users.sourceforge.net
Thu, 22 May 2003 10:22:56 -0700


Update of /cvsroot/python/python/dist/src/PC
In directory sc8-pr-cvs1:/tmp/cvs-serv8733/PC

Modified Files:
	winsound.c 
Log Message:
sound_playsound() doesn't have to be visible externally,
so make it static.


Index: winsound.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/winsound.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** winsound.c	9 Apr 2003 19:38:08 -0000	1.12
--- winsound.c	22 May 2003 17:22:54 -0000	1.13
***************
*** 74,78 ****
  "Beep(frequency, duration) - Make a beep through the PC speaker.");
  
! PyObject *
  sound_playsound(PyObject *s, PyObject *args)
  {
--- 74,78 ----
  "Beep(frequency, duration) - Make a beep through the PC speaker.");
  
! static PyObject *
  sound_playsound(PyObject *s, PyObject *args)
  {