James Hawkins : janitorial: Remove links to any microsoft site.

Alexandre Julliard julliard at winehq.org
Sat Mar 1 06:13:24 CST 2008


Module: wine
Branch: master
Commit: e4c1227ec99459f2179104d6f6fd5dd66fa9e8ec
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e4c1227ec99459f2179104d6f6fd5dd66fa9e8ec

Author: James Hawkins <jhawkins at 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/istorage_compound_file_implementation.asp
  */
 
 #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/pipes.asp
-     *  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




More information about the wine-cvs mailing list