From 26ad93947bea85a9daeb25dcb972fd8dc1bddaa3 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Fri, 29 Feb 2008 22:33:54 -0600 Subject: [PATCH] janitorial: Remove links to any microsoft site. --- dlls/d3d9/device.c | 2 +- dlls/ddraw/ddraw.c | 4 ---- dlls/gdi32/dib.c | 3 --- dlls/gdi32/freetype.c | 4 ---- dlls/setupapi/setupx_main.c | 2 -- dlls/shell32/shellpath.c | 7 +------ dlls/shell32/shlexec.c | 4 +--- dlls/svrapi/svrapi_main.c | 1 - 8 files changed, 3 insertions(+), 24 deletions(-) diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index 7d63a1092ae..4eade046d36 100644 --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -1407,7 +1407,7 @@ static HRESULT WINAPI IDirect3DDevice9Impl_DrawRectPatch(LPDIRECT3DDEVICE9 ifa LeaveCriticalSection(&d3d9_cs); return hr; } -/*http://msdn.microsoft.com/library/default.asp?url=/library/en-us/directx9_c/directx/graphics/reference/d3d/interfaces/idirect3ddevice9/DrawTriPatch.asp*/ + static HRESULT WINAPI IDirect3DDevice9Impl_DrawTriPatch(LPDIRECT3DDEVICE9 iface, UINT Handle, CONST float* pNumSegs, CONST D3DTRIPATCH_INFO* pTriPatchInfo) { IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface; HRESULT hr; diff --git a/dlls/ddraw/ddraw.c b/dlls/ddraw/ddraw.c index e87043ad0d6..4cac55d42ff 100644 --- a/dlls/ddraw/ddraw.c +++ b/dlls/ddraw/ddraw.c @@ -73,10 +73,6 @@ static const DDDEVICEIDENTIFIER2 deviceidentifier = * method. * The returned interface is AddRef()-ed before it's returned * - * Rules for QueryInterface: - * http://msdn.microsoft.com/library/default.asp? \ - * url=/library/en-us/com/html/6db17ed8-06e4-4bae-bc26-113176cc7e0e.asp - * * Used for version 1, 2, 4 and 7 * * Params: diff --git a/dlls/gdi32/dib.c b/dlls/gdi32/dib.c index d53b8f2e173..f5e8707de1d 100644 --- a/dlls/gdi32/dib.c +++ b/dlls/gdi32/dib.c @@ -82,7 +82,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(bitmap); * DIB_GetDIBWidthBytes * * Return the width of a DIB bitmap in bytes. DIB bitmap data is 32-bit aligned. - * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/bitmaps_87eb.asp */ int DIB_GetDIBWidthBytes( int width, int depth ) { @@ -570,8 +569,6 @@ static const RGBTRIPLE DefLogPaletteTriples[20] = { /* Copy of Default Logical P * RETURNS * Success: Number of scan lines copied from bitmap * Failure: 0 - * - * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/bitmaps_87eb.asp */ INT WINAPI GetDIBits( HDC hdc, /* [in] Handle to device context */ diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c index b92c0bedc88..d011cd849a9 100644 --- a/dlls/gdi32/freetype.c +++ b/dlls/gdi32/freetype.c @@ -2625,10 +2625,6 @@ static LONG load_VDMX(GdiFont *font, LONG height) LONG ppem = 0; int i; - /* For documentation on VDMX records, see - * http://www.microsoft.com/OpenType/OTSpec/vdmx.htm - */ - result = WineEngGetFontData(font, MS_VDMX_TAG, 0, hdr, 6); if(result == GDI_ERROR) /* no vdmx table present, use linear scaling */ diff --git a/dlls/setupapi/setupx_main.c b/dlls/setupapi/setupx_main.c index 9b12ff79b86..197eac3becc 100644 --- a/dlls/setupapi/setupx_main.c +++ b/dlls/setupapi/setupx_main.c @@ -22,11 +22,9 @@ * See: * http://www.geocities.com/SiliconValley/Network/5317/drivers.html * http://willemer.de/informatik/windows/inf_info.htm (German) - * http://www.microsoft.com/ddk/ddkdocs/win98ddk/devinst_12uw.htm * DDK: setupx.h * http://mmatrix.tripod.com/customsystemfolder/infsysntaxfull.html * http://www.rdrop.com/~cary/html/inf_faq.html - * http://support.microsoft.com/support/kb/articles/q194/6/40.asp * * Stuff tested with: * - rs405deu.exe (German Acroread 4.05 setup) diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index 5be77d74ef4..796e539cd98 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -1624,17 +1624,12 @@ end: * Most values can be overridden in either * HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders * or in the same location in HKLM. - * The registry usage is explained by the following tech note: - * http://www.microsoft.com/windows2000/techinfo/reskit/en-us/default.asp?url=/windows2000/techinfo/reskit/en-us/regentry/36173.asp * The "Shell Folders" registry key was used in NT4 and earlier systems. * Beginning with Windows 2000, the "User Shell Folders" key is used, so * changes made to it are made to the former key too. This synchronization is * done on-demand: not until someone requests the value of one of these paths * (by calling one of the SHGet functions) is the value synchronized. - * Furthermore, as explained here: - * http://www.microsoft.com/windows2000/techinfo/reskit/en-us/default.asp?url=/windows2000/techinfo/reskit/en-us/regentry/36276.asp - * the HKCU paths take precedence over the HKLM paths. - * + * Furthermore, the HKCU paths take precedence over the HKLM paths. */ HRESULT WINAPI SHGetFolderPathW( HWND hwndOwner, /* [I] owner window */ diff --git a/dlls/shell32/shlexec.c b/dlls/shell32/shlexec.c index f55e05c1a7f..f562bc6461a 100644 --- a/dlls/shell32/shlexec.c +++ b/dlls/shell32/shlexec.c @@ -681,9 +681,7 @@ UINT SHELL_FindExecutable(LPCWSTR lpPath, LPCWSTR lpFile, LPCWSTR lpOperation, } else { - /* Truncate on first space, like Windows: - * http://support.microsoft.com/?scid=kb%3Ben-us%3B140724 - */ + /* Truncate on first space */ WCHAR *p = lpResult; while (*p != ' ' && *p != '\0') p++; diff --git a/dlls/svrapi/svrapi_main.c b/dlls/svrapi/svrapi_main.c index 9649772c99b..364ecfd80ea 100644 --- a/dlls/svrapi/svrapi_main.c +++ b/dlls/svrapi/svrapi_main.c @@ -1,6 +1,5 @@ /* * Part of NETAPI on Windows 9x -* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/stgmgmt/fs/netshareenum.asp * * Copyright 2006 Konstantin Petrov *