janitorial: Remove links to any microsoft site.

This commit is contained in:
James Hawkins 2008-02-29 22:29:54 -06:00 committed by Alexandre Julliard
parent 00394486df
commit eedfacdfe7
8 changed files with 4 additions and 48 deletions

View File

@ -18,14 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * 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> #include <stdarg.h>
#define COBJMACROS #define COBJMACROS

View File

@ -901,9 +901,6 @@ static UINT iterate_appsearch(MSIRECORD *row, LPVOID param)
return r; 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) UINT ACTION_AppSearch(MSIPACKAGE *package)
{ {
static const WCHAR query[] = { static const WCHAR query[] = {

View File

@ -18,11 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * 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 <stdarg.h>
#include <stdio.h> #include <stdio.h>

View File

@ -332,12 +332,6 @@ done:
msi_free(version); 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) static VOID set_installer_properties(MSIPACKAGE *package)
{ {
WCHAR pth[MAX_PATH]; WCHAR pth[MAX_PATH];

View File

@ -18,11 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * 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. * 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; ret = EXCEPTION_CONTINUE_EXECUTION;
} }
break; break;
/* According to /* According to msdn,
* http://msdn.microsoft.com/library/en-us/vclib/html/_CRT_signal.asp
* the FPE signal handler takes as a second argument the type of * the FPE signal handler takes as a second argument the type of
* floating point exception. * floating point exception.
*/ */
@ -531,8 +525,6 @@ void msvcrt_free_signals(void)
/********************************************************************* /*********************************************************************
* signal (MSVCRT.@) * 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 * Some signals may never be generated except through an explicit call to
* raise. * raise.
*/ */

View File

@ -671,8 +671,7 @@ int CDECL _commit(int fd)
/********************************************************************* /*********************************************************************
* _dup2 (MSVCRT.@) * _dup2 (MSVCRT.@)
* NOTES * NOTES
* MSDN isn't clear on this point, but the remarks for _pipe, * 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/_crt__pipe.asp
* indicate file descriptors duplicated with _dup and _dup2 are always * indicate file descriptors duplicated with _dup and _dup2 are always
* inheritable. * inheritable.
*/ */

View File

@ -73,12 +73,6 @@
#endif /* STRING */ #endif /* STRING */
#endif /* CONSOLE */ #endif /* CONSOLE */
/*********************************************************************
* Implemented based on
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/html/_crt_format_specification_fields_.2d_.scanf_and_wscanf_functions.asp
* Extended by C. Scott Ananian <cananian@alumni.princeton.edu> to handle
* more types of format spec.
*/
_FUNCTION_ { _FUNCTION_ {
int rd = 0, consumed = 0; int rd = 0, consumed = 0;
int nch; int nch;
@ -314,8 +308,7 @@ _FUNCTION_ {
} }
} }
break; break;
/* According to /* According to msdn,
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_crt_scanf_type_field_characters.asp
* 's' reads a character string in a call to fscanf * 's' reads a character string in a call to fscanf
* and 'S' a wide character string and vice versa in a * and 'S' a wide character string and vice versa in a
* call to fwscanf. The 'h', 'w' and 'l' prefixes override * call to fwscanf. The 'h', 'w' and 'l' prefixes override
@ -454,8 +447,7 @@ _FUNCTION_ {
format++; format++;
} }
while(*format && (*format != ']')) { while(*format && (*format != ']')) {
/* According to: /* According to msdn:
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/html/_crt_scanf_width_specification.asp
* "Note that %[a-z] and %[z-a] are interpreted as equivalent to %[abcde...z]." */ * "Note that %[a-z] and %[z-a] are interpreted as equivalent to %[abcde...z]." */
if((*format == '-') && (*(format + 1) != ']')) { if((*format == '-') && (*(format + 1) != ']')) {
if ((*(format - 1)) < *(format + 1)) if ((*(format - 1)) < *(format + 1))

View File

@ -35,11 +35,6 @@
#include "wine/debug.h" #include "wine/debug.h"
#include "wine/unicode.h" #include "wine/unicode.h"
/**
* some documentation here:
* http://www.microsoft.com/typography/developers/uniscribe/uniscribe.htm
*/
WINE_DEFAULT_DEBUG_CHANNEL(uniscribe); WINE_DEFAULT_DEBUG_CHANNEL(uniscribe);
static const SCRIPT_PROPERTIES props[] = static const SCRIPT_PROPERTIES props[] =