Module: wine Branch: master Commit: c29c740de0d447fa2d44870ec225f7cb49ce0c1e URL: http://source.winehq.org/git/wine.git/?a=commit;h=c29c740de0d447fa2d44870ec2...
Author: James Hawkins jhawkins@codeweavers.com Date: Fri Feb 29 22:35:20 2008 -0600
janitorial: Remove links to any microsoft site.
---
dlls/user32/combo.c | 2 -- dlls/user32/comm16.c | 1 - dlls/user32/cursoricon.c | 2 -- dlls/user32/dde_client.c | 1 - dlls/user32/exticon.c | 1 - dlls/winex11.drv/init.c | 3 +-- dlls/winex11.drv/palette.c | 3 --- dlls/winex11.drv/xfont.c | 4 ---- 8 files changed, 1 insertions(+), 16 deletions(-)
diff --git a/dlls/user32/combo.c b/dlls/user32/combo.c index cd78891..549600e 100644 --- a/dlls/user32/combo.c +++ b/dlls/user32/combo.c @@ -1837,8 +1837,6 @@ static char *strdupA(LPCSTR str)
/*********************************************************************** * ComboWndProc_common - * - * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/pla... */ static LRESULT ComboWndProc_common( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, BOOL unicode ) diff --git a/dlls/user32/comm16.c b/dlls/user32/comm16.c index f09389f..8bd4a44 100644 --- a/dlls/user32/comm16.c +++ b/dlls/user32/comm16.c @@ -817,7 +817,6 @@ INT16 WINAPI SetCommState16(LPDCB16 lpdcb) * 2. if it is greater than 57600, the baud rate is 115200 * 3. use the actual baudrate * steps 2 and 3 are equivalent to 16550 baudrate divisor = 115200/BaudRate - * see http://support.microsoft.com/support/kb/articles/q108/9/28.asp */ switch(lpdcb->BaudRate) { diff --git a/dlls/user32/cursoricon.c b/dlls/user32/cursoricon.c index 0ec5b32..aa1bdf5 100644 --- a/dlls/user32/cursoricon.c +++ b/dlls/user32/cursoricon.c @@ -24,8 +24,6 @@ /* * Theory: * - * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwui/html/... - * * Cursors and icons are stored in a global heap block, with the * following layout: * diff --git a/dlls/user32/dde_client.c b/dlls/user32/dde_client.c index adec249..1a868ef 100644 --- a/dlls/user32/dde_client.c +++ b/dlls/user32/dde_client.c @@ -988,7 +988,6 @@ static WDML_QUEUE_STATE WDML_HandleReply(WDML_CONV* pConv, MSG* msg, HDDEDATA* h case WM_DDE_ACK: /* This happens at end of DdeClientTransaction XTYP_EXECUTE * Without this assignment, DdeClientTransaction's return value is undefined - * See also http://support.microsoft.com/kb/102574 */ *hdd = (HDDEDATA)TRUE; if (ack) diff --git a/dlls/user32/exticon.c b/dlls/user32/exticon.c index 8e9f938..e25e9c9 100644 --- a/dlls/user32/exticon.c +++ b/dlls/user32/exticon.c @@ -194,7 +194,6 @@ static BYTE * ICO_LoadIcon( LPBYTE peimage, LPicoICONDIRENTRY lpiIDE, ULONG *uSi * ICO_GetIconDirectory * * Reads .ico file and build phony ICONDIR struct - * see http://www.microsoft.com/win32dev/ui/icons.htm */ #define HEADER_SIZE (sizeof(CURSORICONDIR) - sizeof (CURSORICONDIRENTRY)) #define HEADER_SIZE_FILE (sizeof(icoICONDIR) - sizeof (icoICONDIRENTRY)) diff --git a/dlls/winex11.drv/init.c b/dlls/winex11.drv/init.c index ebd9dde..5e549b9 100644 --- a/dlls/winex11.drv/init.c +++ b/dlls/winex11.drv/init.c @@ -251,8 +251,7 @@ INT X11DRV_GetDeviceCaps( X11DRV_PDEVICE *physDev, INT cap ) case CAPS1: FIXME("(%p): CAPS1 is unimplemented, will return 0\n", physDev->hdc ); /* please see wingdi.h for the possible bit-flag values that need - to be returned. also, see - http://msdn.microsoft.com/library/ddkdoc/win95ddk/graphcnt_1m0p.htm */ + to be returned. */ return 0; case SIZEPALETTE: return palette_size; diff --git a/dlls/winex11.drv/palette.c b/dlls/winex11.drv/palette.c index 1b74e2c..356cb95 100644 --- a/dlls/winex11.drv/palette.c +++ b/dlls/winex11.drv/palette.c @@ -43,9 +43,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(palette); * the screendepth > 8 - we abandon palette mappings altogether * because pixel values can be calculated without X server * assistance. - * - * Windows palette manager is described in the - * http://premium.microsoft.com/msdn/library/techart/f30/f34/f40/d4d/sa942.htm */
#define NB_RESERVED_COLORS 20 /* number of fixed colors in system palette */ diff --git a/dlls/winex11.drv/xfont.c b/dlls/winex11.drv/xfont.c index 7dc3a40..6137be7 100644 --- a/dlls/winex11.drv/xfont.c +++ b/dlls/winex11.drv/xfont.c @@ -1029,9 +1029,6 @@ static BOOL LFD_ComposeLFD( const fontObject* fo,
/*********************************************************************** * X Font Resources - * - * font info - http://www.microsoft.com/kb/articles/q65/1/23.htm - * Windows font metrics - http://www.microsoft.com/kb/articles/q32/6/67.htm */ static void XFONT_GetLeading( const IFONTINFO16 *pFI, const XFontStruct* x_fs, INT16* pIL, INT16* pEL, const XFONTTRANS *XFT ) @@ -2404,7 +2401,6 @@ static int XFONT_GetDefResolution( int log_pixels_x, int log_pixels_y ) * weight, italics, underlines, strikeouts * * NOTE: you can experiment with different penalty weights to see what happens. - * http://premium.microsoft.com/msdn/library/techart/f365/f36b/f37b/d38b/sa8bf.... */ static UINT XFONT_Match( fontMatch* pfm ) {