comparison src/video/SDL_video.c @ 4399:ae9c094e9200 SDL-1.2

Patched to compile on Visual C++.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 24 Jan 2010 17:54:57 +0000
parents fe15c4e8efe6
children
comparison
equal deleted inserted replaced
4398:fe15c4e8efe6 4399:ae9c094e9200
1674 this->glPopAttrib(); 1674 this->glPopAttrib();
1675 } 1675 }
1676 #endif 1676 #endif
1677 } 1677 }
1678 1678
1679
1680 void SDL_Audio_SetCaption(const char *caption);
1681
1679 /* 1682 /*
1680 * Sets/Gets the title and icon text of the display window, if any. 1683 * Sets/Gets the title and icon text of the display window, if any.
1681 */ 1684 */
1682 void SDL_WM_SetCaption (const char *title, const char *icon) 1685 void SDL_WM_SetCaption (const char *title, const char *icon)
1683 { 1686 {
1701 video->SetCaption(this, video->wm_title,video->wm_icon); 1704 video->SetCaption(this, video->wm_title,video->wm_icon);
1702 } 1705 }
1703 } 1706 }
1704 1707
1705 /* PulseAudio can make use of this information. */ 1708 /* PulseAudio can make use of this information. */
1706 extern void SDL_Audio_SetCaption(const char *caption);
1707 SDL_Audio_SetCaption(title); 1709 SDL_Audio_SetCaption(title);
1708 } 1710 }
1709 1711
1710 void SDL_WM_GetCaption (char **title, char **icon) 1712 void SDL_WM_GetCaption (char **title, char **icon)
1711 { 1713 {