janitorial: Remove links to any microsoft site.
This commit is contained in:
parent
00394486df
commit
eedfacdfe7
|
@ -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
|
||||
|
|
|
@ -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[] = {
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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];
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
|
|
|
@ -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/_crt__pipe.asp
|
||||
* MSDN isn't clear on this point, but the remarks for _pipe
|
||||
* indicate file descriptors duplicated with _dup and _dup2 are always
|
||||
* inheritable.
|
||||
*/
|
||||
|
|
|
@ -73,12 +73,6 @@
|
|||
#endif /* STRING */
|
||||
#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_ {
|
||||
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/_crt_scanf_type_field_characters.asp
|
||||
/* 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/html/_crt_scanf_width_specification.asp
|
||||
/* 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))
|
||||
|
|
|
@ -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[] =
|
||||
|
|
Loading…
Reference in New Issue