Module: wine
Branch: master
Commit: e4c1227ec99459f2179104d6f6fd5dd66fa9e8ec
URL: http://source.winehq.org/git/wine.git/?a=commit;h=e4c1227ec99459f2179104d6f…
Author: James Hawkins <jhawkins(a)codeweavers.com>
Date: Fri Feb 29 22:37:21 2008 -0600
janitorial: Remove links to any microsoft site.
---
dlls/ole32/storage32.c | 3 ---
include/d3d9types.h | 9 ---------
include/ndrtypes.h | 4 +---
include/rpcproxy.h | 2 --
include/ws2tcpip.h | 3 ---
programs/notepad/dialog.c | 4 +---
tools/winedump/winedump.h | 5 -----
7 files changed, 2 insertions(+), 28 deletions(-)
diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c
index ac0cbbf..389b047 100644
--- a/dlls/ole32/storage32.c
+++ b/dlls/ole32/storage32.c
@@ -28,9 +28,6 @@
* The compound file implementation of IStorage used for create
* and manage substorages and streams within a storage object
* residing in a compound file object.
- *
- * MSDN
- * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/stg/stg/is…
*/
#include <assert.h>
diff --git a/include/d3d9types.h b/include/d3d9types.h
index 1a0ebec..83e54b8 100644
--- a/include/d3d9types.h
+++ b/include/d3d9types.h
@@ -226,15 +226,6 @@ typedef enum _D3DDECLUSAGE {
D3DDECLUSAGE_SAMPLE = 13
} D3DDECLUSAGE;
-/* MSDN is quite confussing at this point...
-http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/directx9_c/directx/graphics/reference/d3d/constants/OTHER_D3D.asp
-says D3DMAX, and D3DMAXDECLUSAGE = D3DDECLUSAGE_DEPTH
-http://msdn.microsoft.com/library/default.asp?url=/archive/en-us/directx9_c_summer_03/directx/graphics/reference/d3d/constants/other_d3d.asp
-says MAXD3D, and D3DDECLUSAGE_SAMPLE
-
-So both are defined
-*/
-
#define D3DMAXDECLUSAGE D3DDECLUSAGE_SAMPLE
#define D3DMAXDECLUSAGEINDEX 15
#define D3DMAXDECLLENGTH 18
diff --git a/include/ndrtypes.h b/include/ndrtypes.h
index 5d932fa..8605b73 100644
--- a/include/ndrtypes.h
+++ b/include/ndrtypes.h
@@ -31,9 +31,7 @@ typedef struct
unsigned short MustFree : 1; /* 0x0002 - server interpreter MUST size this
* parameter, other parameters may be skipped, using the value in
* NDR_PROC_PARTIAL_OIF_HEADER::constant_server_buffer_size instead. */
- unsigned short IsPipe : 1; /* 0x0004 - The parameter is a pipe handle. See
- * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/pi…
- * for more information on pipes. */
+ unsigned short IsPipe : 1; /* 0x0004 - The parameter is a pipe handle */
unsigned short IsIn : 1; /* 0x0008 - The parameter is an input */
unsigned short IsOut : 1; /* 0x0010 - The parameter is an output */
unsigned short IsReturn : 1; /* 0x0020 - The parameter is to be returned */
diff --git a/include/rpcproxy.h b/include/rpcproxy.h
index eaf2a6a..7bec080 100644
--- a/include/rpcproxy.h
+++ b/include/rpcproxy.h
@@ -350,8 +350,6 @@ ULONG WINAPI CStdStubBuffer2_Release(IRpcStubBuffer *This) \
#if 0
-/* see http://www.microsoft.com/msj/0199/com/com0199.aspx */
-
RPCRTAPI HRESULT RPC_ENTRY
CreateProxyFromTypeInfo( LPTYPEINFO pTypeInfo, LPUNKNOWN pUnkOuter, REFIID riid,
LPRPCPROXYBUFFER *ppProxy, LPVOID *ppv );
diff --git a/include/ws2tcpip.h b/include/ws2tcpip.h
index 57a1dc7..9a68e24 100644
--- a/include/ws2tcpip.h
+++ b/include/ws2tcpip.h
@@ -90,9 +90,6 @@ typedef struct WS(in_addr6)
u_char s6_addr[16]; /* IPv6 address */
} IN6_ADDR, *PIN6_ADDR, *LPIN6_ADDR;
-/* check for sockaddr_in6 / sockaddr_in6_old madness:
- * http://msdn.microsoft.com/library/en-us/winsock/winsock/sockaddr_2.asp
- */
typedef struct WS(sockaddr_in6)
{
short sin6_family; /* AF_INET6 */
diff --git a/programs/notepad/dialog.c b/programs/notepad/dialog.c
index c21c2d7..ea469c1 100644
--- a/programs/notepad/dialog.c
+++ b/programs/notepad/dialog.c
@@ -265,9 +265,7 @@ void DoOpenFile(LPCWSTR szFileName)
SendMessage(Globals.hEdit, EM_EMPTYUNDOBUFFER, 0, 0);
SetFocus(Globals.hEdit);
- /* If the file starts with .LOG, add a time/date at the end and set cursor after
- * See http://support.microsoft.com/?kbid=260563
- */
+ /* If the file starts with .LOG, add a time/date at the end and set cursor after */
if (GetWindowTextW(Globals.hEdit, log, sizeof(log)/sizeof(log[0])) && !lstrcmp(log, dotlog))
{
static const WCHAR lfW[] = { '\r','\n',0 };
diff --git a/tools/winedump/winedump.h b/tools/winedump/winedump.h
index 2e15e24..f3caf94 100644
--- a/tools/winedump/winedump.h
+++ b/tools/winedump/winedump.h
@@ -25,11 +25,6 @@
* All the cool functionality (prototyping, call tracing, forwarding)
* relies on Patrik Stridvall's 'function_grep.pl' script to work.
*
- * http://msdn.microsoft.com/library/periodic/period96/msj/S330.htm
- * This article provides both a description and freely downloadable
- * implementation, in source code form, of how to extract symbols
- * from Win32 PE executables/DLLs.
- *
* http://www.kegel.com/mangle.html
* Gives information on the name mangling scheme used by MS compilers,
* used as the starting point for the code here. Contains a few
Module: wine
Branch: master
Commit: 7b56757cf68f6ec38ffedb616b5f830496f41669
URL: http://source.winehq.org/git/wine.git/?a=commit;h=7b56757cf68f6ec38ffedb616…
Author: James Hawkins <jhawkins(a)codeweavers.com>
Date: Fri Feb 29 22:36:46 2008 -0600
janitorial: Remove links to any microsoft site.
---
dlls/ole32/compobj_private.h | 3 +--
dlls/ole32/dcom.idl | 3 +--
dlls/ole32/moniker.c | 3 ++-
dlls/ole32/oleproxy.c | 18 +-----------------
dlls/ole32/stg_prop.c | 26 +++-----------------------
dlls/ws2_32/socket.c | 4 +---
6 files changed, 9 insertions(+), 48 deletions(-)
diff --git a/dlls/ole32/compobj_private.h b/dlls/ole32/compobj_private.h
index 1c49956..ba80edf 100644
--- a/dlls/ole32/compobj_private.h
+++ b/dlls/ole32/compobj_private.h
@@ -269,8 +269,7 @@ void apartment_joinmta(void);
#define DM_HOSTOBJECT (WM_USER + 1) /* WPARAM = 0, LPARAM = (struct host_object_params *) */
/*
- * Per-thread values are stored in the TEB on offset 0xF80,
- * see http://www.microsoft.com/msj/1099/bugslayer/bugslayer1099.htm
+ * Per-thread values are stored in the TEB on offset 0xF80
*/
/* will create if necessary */
diff --git a/dlls/ole32/dcom.idl b/dlls/ole32/dcom.idl
index 6e5a454..d4abf43 100644
--- a/dlls/ole32/dcom.idl
+++ b/dlls/ole32/dcom.idl
@@ -16,8 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
-/* see http://www.microsoft.com/msj/0398/dcom.htm */
-/* and the official DCOM specification
+/* see the official DCOM specification
* (there's a copy at http://www.grimes.demon.co.uk/DCOM/DCOMSpec.htm) */
import "unknwn.idl";
diff --git a/dlls/ole32/moniker.c b/dlls/ole32/moniker.c
index b191821..dca2a1c 100644
--- a/dlls/ole32/moniker.c
+++ b/dlls/ole32/moniker.c
@@ -50,7 +50,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(ole);
/* see MSDN docs for IROTData::GetComparisonData, which states what this
- * constant is (http://msdn2.microsoft.com/en-us/library/ms693773.aspx) */
+ * constant is
+ */
#define MAX_COMPARISON_DATA 2048
static LONG WINAPI rpc_filter(EXCEPTION_POINTERS *eptr)
diff --git a/dlls/ole32/oleproxy.c b/dlls/ole32/oleproxy.c
index 4f91d7e..015d3fc 100644
--- a/dlls/ole32/oleproxy.c
+++ b/dlls/ole32/oleproxy.c
@@ -19,22 +19,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
-/* Documentation on MSDN:
- *
- * (Top level COM documentation)
- * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnanchor/h…
- *
- * (COM Proxy)
- * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/co…
- *
- * (COM Stub)
- * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/co…
- *
- * (Marshal)
- * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/co…
- *
- */
-
#include "config.h"
#include <stdlib.h>
@@ -64,7 +48,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
static ULONG WINAPI RURpcProxyBufferImpl_Release(LPRPCPROXYBUFFER iface);
-/* From: http://msdn.microsoft.com/library/en-us/com/cmi_m_4lda.asp
+/* From msdn:
*
* The first time a client requests a pointer to an interface on a
* particular object, COM loads an IClassFactory stub in the server
diff --git a/dlls/ole32/stg_prop.c b/dlls/ole32/stg_prop.c
index 6f4c690..b688855 100644
--- a/dlls/ole32/stg_prop.c
+++ b/dlls/ole32/stg_prop.c
@@ -25,11 +25,6 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
- * There's a decent overview of property set storage here:
- * http://msdn.microsoft.com/archive/en-us/dnarolegen/html/msdn_propset.asp
- * It's a little bit out of date, and more definitive references are given
- * below, but it gives the best "big picture" that I've found.
- *
* TODO:
* - I don't honor the maximum property set size.
* - Certain bogus files could result in reading past the end of a buffer.
@@ -68,9 +63,7 @@ static inline StorageImpl *impl_from_IPropertySetStorage( IPropertySetStorage *i
return (StorageImpl *)((char*)iface - FIELD_OFFSET(StorageImpl, base.pssVtbl));
}
-/* These are documented in MSDN, e.g.
- * http://msdn.microsoft.com/library/en-us/stg/stg/property_set_header.asp
- * http://msdn.microsoft.com/library/library/en-us/stg/stg/section.asp
+/* These are documented in MSDN,
* but they don't seem to be in any header file.
*/
#define PROPSETHDR_BYTEORDER_MAGIC 0xfffe
@@ -87,9 +80,6 @@ static inline StorageImpl *impl_from_IPropertySetStorage( IPropertySetStorage *i
#define CFTAG_FMTID (-3L)
#define CFTAG_NODATA 0L
-/* The format version (and what it implies) is described here:
- * http://msdn.microsoft.com/library/en-us/stg/stg/format_version.asp
- */
typedef struct tagPROPERTYSETHEADER
{
WORD wByteOrder; /* always 0xfffe */
@@ -1421,9 +1411,7 @@ static HRESULT PropertyStorage_ReadFromStream(PropertyStorage_impl *This)
}
if (!This->codePage)
{
- /* default to Unicode unless told not to, as specified here:
- * http://msdn.microsoft.com/library/en-us/stg/stg/names_in_istorage.asp
- */
+ /* default to Unicode unless told not to, as specified on msdn */
if (This->grfFlags & PROPSETFLAG_ANSI)
This->codePage = GetACP();
else
@@ -2037,9 +2025,7 @@ static HRESULT PropertyStorage_ConstructEmpty(IStream *stm,
ps->grfFlags = grfFlags;
if (ps->grfFlags & PROPSETFLAG_CASE_SENSITIVE)
ps->format = 1;
- /* default to Unicode unless told not to, as specified here:
- * http://msdn.microsoft.com/library/en-us/stg/stg/names_in_istorage.asp
- */
+ /* default to Unicode unless told not to, as specified here on mdsn */
if (ps->grfFlags & PROPSETFLAG_ANSI)
ps->codePage = GetACP();
else
@@ -2507,8 +2493,6 @@ static const WCHAR szDocSummaryInfo[] = { 5,'D','o','c','u','m','e','n','t',
*
* NOTES
* str must be at least CCH_MAX_PROPSTG_NAME characters in length.
- * Based on the algorithm described here:
- * http://msdn.microsoft.com/library/en-us/stg/stg/names_in_istorage.asp
*/
HRESULT WINAPI FmtIdToPropStgName(const FMTID *rfmtid, LPOLESTR str)
{
@@ -2574,10 +2558,6 @@ HRESULT WINAPI FmtIdToPropStgName(const FMTID *rfmtid, LPOLESTR str)
* RETURNS
* E_INVALIDARG if rfmtid or str is NULL or if str can't be converted to
* a format ID, S_OK otherwise.
- *
- * NOTES
- * Based on the algorithm described here:
- * http://msdn.microsoft.com/library/en-us/stg/stg/names_in_istorage.asp
*/
HRESULT WINAPI PropStgNameToFmtId(const LPOLESTR str, FMTID *rfmtid)
{
diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c
index fb6a20d..502f309 100644
--- a/dlls/ws2_32/socket.c
+++ b/dlls/ws2_32/socket.c
@@ -1,6 +1,5 @@
/*
* based on Windows Sockets 1.1 specs
- * (ftp.microsoft.com:/Advsys/winsock/spec11/WINSOCK.TXT)
*
* Copyright (C) 1993,1994,1996,1997 John Brezak, Erik Bos, Alex Korobka.
* Copyright (C) 2005 Marcus Meissner
@@ -881,8 +880,7 @@ static unsigned int ws_sockaddr_ws2u(const struct WS_sockaddr* wsaddr, int wsadd
const struct WS_sockaddr_in6* win6 = (const struct WS_sockaddr_in6*)wsaddr;
/* Note: Windows has 2 versions of the sockaddr_in6 struct, one with
- * scope_id, one without. Check:
- * http://msdn.microsoft.com/library/en-us/winsock/winsock/sockaddr_2.asp
+ * scope_id, one without.
*/
if (wsaddrlen >= sizeof(struct WS_sockaddr_in6_old)) {
uaddrlen = sizeof(struct sockaddr_in6);