Module: wine
Branch: master
Commit: eedfacdfe7628876490a73f70c785bbbed6e679f
URL: http://source.winehq.org/git/wine.git/?a=commit;h=eedfacdfe7628876490a73f70…
Author: James Hawkins <jhawkins(a)codeweavers.com>
Date: Fri Feb 29 22:29:54 2008 -0600
janitorial: Remove links to any microsoft site.
---
dlls/msi/action.c | 8 --------
dlls/msi/appsearch.c | 3 ---
dlls/msi/events.c | 5 -----
dlls/msi/package.c | 6 ------
dlls/msvcrt/except.c | 10 +---------
dlls/msvcrt/file.c | 3 +--
dlls/msvcrt/scanf.h | 12 ++----------
dlls/usp10/usp10.c | 5 -----
8 files changed, 4 insertions(+), 48 deletions(-)
diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index d5fad0c..6efe14c 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -18,14 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
-/*
- * Pages I need
- *
-http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/installexecutesequence_table.asp
-
-http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/standard_actions_reference.asp
- */
-
#include <stdarg.h>
#define COBJMACROS
diff --git a/dlls/msi/appsearch.c b/dlls/msi/appsearch.c
index a1e6045..0743aee 100644
--- a/dlls/msi/appsearch.c
+++ b/dlls/msi/appsearch.c
@@ -901,9 +901,6 @@ static UINT iterate_appsearch(MSIRECORD *row, LPVOID param)
return r;
}
-/* http://msdn.microsoft.com/library/en-us/msi/setup/appsearch_table.asp
- * is the best reference for the AppSearch table and how it's used.
- */
UINT ACTION_AppSearch(MSIPACKAGE *package)
{
static const WCHAR query[] = {
diff --git a/dlls/msi/events.c b/dlls/msi/events.c
index b85a5c5..6b6ead9 100644
--- a/dlls/msi/events.c
+++ b/dlls/msi/events.c
@@ -18,11 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
-
-/*
-http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/controlevent_overview.asp
-*/
-
#include <stdarg.h>
#include <stdio.h>
diff --git a/dlls/msi/package.c b/dlls/msi/package.c
index 2ffbfb5..672de8d 100644
--- a/dlls/msi/package.c
+++ b/dlls/msi/package.c
@@ -332,12 +332,6 @@ done:
msi_free(version);
}
-/*
- * There are a whole slew of these we need to set
- *
- *
-http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/properties.asp
- */
static VOID set_installer_properties(MSIPACKAGE *package)
{
WCHAR pth[MAX_PATH];
diff --git a/dlls/msvcrt/except.c b/dlls/msvcrt/except.c
index 9af5ff2..4cb1436 100644
--- a/dlls/msvcrt/except.c
+++ b/dlls/msvcrt/except.c
@@ -18,11 +18,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
*
- * NOTES:
- *
- * See http://www.microsoft.com/msj/0197/exception/exception.htm,
- * but don't believe all of it.
- *
* FIXME: Incomplete support for nested exceptions/try block cleanup.
*/
@@ -468,8 +463,7 @@ static LONG WINAPI msvcrt_exception_filter(struct _EXCEPTION_POINTERS *except)
ret = EXCEPTION_CONTINUE_EXECUTION;
}
break;
- /* According to
- * http://msdn.microsoft.com/library/en-us/vclib/html/_CRT_signal.asp
+ /* According to msdn,
* the FPE signal handler takes as a second argument the type of
* floating point exception.
*/
@@ -531,8 +525,6 @@ void msvcrt_free_signals(void)
/*********************************************************************
* signal (MSVCRT.@)
- * MS signal handling is described here:
- * http://msdn.microsoft.com/library/en-us/vclib/html/_CRT_signal.asp
* Some signals may never be generated except through an explicit call to
* raise.
*/
diff --git a/dlls/msvcrt/file.c b/dlls/msvcrt/file.c
index e8189a1..c2539c2 100644
--- a/dlls/msvcrt/file.c
+++ b/dlls/msvcrt/file.c
@@ -671,8 +671,7 @@ int CDECL _commit(int fd)
/*********************************************************************
* _dup2 (MSVCRT.@)
* NOTES
- * MSDN isn't clear on this point, but the remarks for _pipe,
- * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html…
+ * MSDN isn't clear on this point, but the remarks for _pipe
* indicate file descriptors duplicated with _dup and _dup2 are always
* inheritable.
*/
diff --git a/dlls/msvcrt/scanf.h b/dlls/msvcrt/scanf.h
index 7fe3cc4..a3ca454 100644
--- a/dlls/msvcrt/scanf.h
+++ b/dlls/msvcrt/scanf.h
@@ -73,12 +73,6 @@
#endif /* STRING */
#endif /* CONSOLE */
-/*********************************************************************
- * Implemented based on
- * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/h…
- * Extended by C. Scott Ananian <cananian(a)alumni.princeton.edu> to handle
- * more types of format spec.
- */
_FUNCTION_ {
int rd = 0, consumed = 0;
int nch;
@@ -314,8 +308,7 @@ _FUNCTION_ {
}
}
break;
- /* According to
- * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html…
+ /* According to msdn,
* 's' reads a character string in a call to fscanf
* and 'S' a wide character string and vice versa in a
* call to fwscanf. The 'h', 'w' and 'l' prefixes override
@@ -454,8 +447,7 @@ _FUNCTION_ {
format++;
}
while(*format && (*format != ']')) {
- /* According to:
- * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/h…
+ /* According to msdn:
* "Note that %[a-z] and %[z-a] are interpreted as equivalent to %[abcde...z]." */
if((*format == '-') && (*(format + 1) != ']')) {
if ((*(format - 1)) < *(format + 1))
diff --git a/dlls/usp10/usp10.c b/dlls/usp10/usp10.c
index 28b0f90..3f0c896 100644
--- a/dlls/usp10/usp10.c
+++ b/dlls/usp10/usp10.c
@@ -35,11 +35,6 @@
#include "wine/debug.h"
#include "wine/unicode.h"
-/**
- * some documentation here:
- * http://www.microsoft.com/typography/developers/uniscribe/uniscribe.htm
- */
-
WINE_DEFAULT_DEBUG_CHANNEL(uniscribe);
static const SCRIPT_PROPERTIES props[] =
Module: wine
Branch: master
Commit: 00394486df414122682846f09fa2b8299911db50
URL: http://source.winehq.org/git/wine.git/?a=commit;h=00394486df414122682846f09…
Author: James Hawkins <jhawkins(a)codeweavers.com>
Date: Fri Feb 29 22:28:45 2008 -0600
janitorial: Remove links to any microsoft site.
---
dlls/lz32/tests/lzexpand_main.c | 5 +----
dlls/mscms/tests/profile.c | 5 +----
dlls/mshtml/service.c | 1 -
dlls/ntdll/tests/error.c | 3 +--
dlls/ntdll/version.c | 2 --
dlls/rpcrt4/cproxy.c | 4 ----
dlls/rpcrt4/ndr_stubless.h | 1 -
dlls/rpcrt4/rpc_defs.h | 2 --
8 files changed, 3 insertions(+), 20 deletions(-)
diff --git a/dlls/lz32/tests/lzexpand_main.c b/dlls/lz32/tests/lzexpand_main.c
index b51067b..c67883a 100644
--- a/dlls/lz32/tests/lzexpand_main.c
+++ b/dlls/lz32/tests/lzexpand_main.c
@@ -54,10 +54,7 @@ static char filename2[] = "testfile.yyy";
a simple text file with the contents "This is a test file."
The file was created using COMPRESS.EXE from the Windows Server 2003
- Resource Kit from Microsoft. The resource kit was retrieved from the
- following URL:
-
- http://www.microsoft.com/downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7…
+ Resource Kit from Microsoft.
*/
static const unsigned char compressed_file[] =
{0x53,0x5A,0x44,0x44,0x88,0xF0,0x27,0x33,0x41,
diff --git a/dlls/mscms/tests/profile.c b/dlls/mscms/tests/profile.c
index 68d14d2..efcd3b5 100644
--- a/dlls/mscms/tests/profile.c
+++ b/dlls/mscms/tests/profile.c
@@ -98,10 +98,7 @@ static const WCHAR machineW[] = { 'd','u','m','m','y',0 };
/* To do any real functionality testing with this suite you need a copy of
* the freely distributable standard RGB color space profile. It comes
* standard with Windows, but on Wine you probably need to install it yourself
- * in one of the locations mentioned below. Here's a link to the profile in
- * a self extracting zip file:
- *
- * http://download.microsoft.com/download/whistler/hwdev1/1.0/wxp/en-us/ColorP…
+ * in one of the locations mentioned below.
*/
/* Two common places to find the standard color space profile, relative
diff --git a/dlls/mshtml/service.c b/dlls/mshtml/service.c
index 66fa8b6..a74729e 100644
--- a/dlls/mshtml/service.c
+++ b/dlls/mshtml/service.c
@@ -232,7 +232,6 @@ static HRESULT WINAPI ServiceProvider_QueryService(IServiceProvider *iface, REFG
{
HTMLDocument *This = SERVPROV_THIS(iface);
- /* See http://msdn.microsoft.com/workshop/browser/hosting/wbcustompart2.asp */
if(IsEqualGUID(&CLSID_CMarkup, guidService)) {
FIXME("(%p)->(CLSID_CMarkup %s %p)\n", This, debugstr_guid(riid), ppv);
return E_NOINTERFACE;
diff --git a/dlls/ntdll/tests/error.c b/dlls/ntdll/tests/error.c
index 77d30ee..ab5c0d4 100644
--- a/dlls/ntdll/tests/error.c
+++ b/dlls/ntdll/tests/error.c
@@ -32,8 +32,7 @@
#include "winreg.h"
#include "winternl.h"
-/* FIXME!!! this test checks only mappings, defined by MSDN:
- * http://support.microsoft.com/default.aspx?scid=KB;EN-US;q113996&
+/* FIXME!!! this test checks only mappings, defined by MSDN
* It is necessary to add other mappings and to test them up to Windows XP.
*
* Some Windows platforms don't know about all the mappings, and in such
diff --git a/dlls/ntdll/version.c b/dlls/ntdll/version.c
index 0f18833..e519144 100644
--- a/dlls/ntdll/version.c
+++ b/dlls/ntdll/version.c
@@ -86,8 +86,6 @@ static const RTL_OSVERSIONINFOEXW VersionData[NB_WINDOWS_VERSIONS] =
* Win95osr2.1: 4, 3, 0x40304BC, " B " (according to doc)
* Win95osr2.5: 4, 3, 0x40304BE, " C " (according to doc)
* Win95a/b can be discerned via regkey SubVersionNumber
- * See also:
- * http://support.microsoft.com/support/kb/articles/q158/2/38.asp
*/
sizeof(RTL_OSVERSIONINFOEXW), 4, 0, 0x40003B6, VER_PLATFORM_WIN32_WINDOWS,
{0},
diff --git a/dlls/rpcrt4/cproxy.c b/dlls/rpcrt4/cproxy.c
index 084285a..6ddaccd 100644
--- a/dlls/rpcrt4/cproxy.c
+++ b/dlls/rpcrt4/cproxy.c
@@ -58,10 +58,6 @@ static const IRpcProxyBufferVtbl StdProxy_Vtbl;
#define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
-/* How the Windows stubless proxy thunks work is explained at
- * http://msdn.microsoft.com/library/en-us/dnmsj99/html/com0199.asp,
- * but I'll use a slightly different method, to make life easier */
-
#if defined(__i386__)
#include "pshpack1.h"
diff --git a/dlls/rpcrt4/ndr_stubless.h b/dlls/rpcrt4/ndr_stubless.h
index 02850d1..6ee5ff6 100644
--- a/dlls/rpcrt4/ndr_stubless.h
+++ b/dlls/rpcrt4/ndr_stubless.h
@@ -23,7 +23,6 @@
/* there can't be any alignment with the structures in this file */
#include "pshpack1.h"
-/* From http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/pa… */
typedef struct _NDR_PROC_HEADER
{
/* type of handle to use:
diff --git a/dlls/rpcrt4/rpc_defs.h b/dlls/rpcrt4/rpc_defs.h
index c0c3609..f552490 100644
--- a/dlls/rpcrt4/rpc_defs.h
+++ b/dlls/rpcrt4/rpc_defs.h
@@ -22,8 +22,6 @@
#ifndef __WINE_RPC_DEFS_H
#define __WINE_RPC_DEFS_H
-/* info from http://www.microsoft.com/msj/0398/dcomtextfigs.htm */
-
typedef struct
{
unsigned char rpc_ver; /* RPC major version (5) */