janitorial: Remove links to any microsoft site.

This commit is contained in:
James Hawkins 2008-02-29 22:33:54 -06:00 committed by Alexandre Julliard
parent eedfacdfe7
commit 26ad93947b
8 changed files with 3 additions and 24 deletions

View File

@ -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;

View File

@ -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:

View File

@ -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 */

View File

@ -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 */

View File

@ -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)

View File

@ -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 */

View File

@ -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++;

View File

@ -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
*