Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
eedfacdf
Commit
eedfacdf
authored
Feb 29, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Mar 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
janitorial: Remove links to any microsoft site.
parent
00394486
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
4 additions
and
48 deletions
+4
-48
action.c
dlls/msi/action.c
+0
-8
appsearch.c
dlls/msi/appsearch.c
+0
-3
events.c
dlls/msi/events.c
+0
-5
package.c
dlls/msi/package.c
+0
-6
except.c
dlls/msvcrt/except.c
+1
-9
file.c
dlls/msvcrt/file.c
+1
-2
scanf.h
dlls/msvcrt/scanf.h
+2
-10
usp10.c
dlls/usp10/usp10.c
+0
-5
No files found.
dlls/msi/action.c
View file @
eedfacdf
...
...
@@ -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
...
...
dlls/msi/appsearch.c
View file @
eedfacdf
...
...
@@ -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
[]
=
{
...
...
dlls/msi/events.c
View file @
eedfacdf
...
...
@@ -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>
...
...
dlls/msi/package.c
View file @
eedfacdf
...
...
@@ -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
];
...
...
dlls/msvcrt/except.c
View file @
eedfacdf
...
...
@@ -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.
*/
...
...
dlls/msvcrt/file.c
View file @
eedfacdf
...
...
@@ -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.
*/
...
...
dlls/msvcrt/scanf.h
View file @
eedfacdf
...
...
@@ -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
))
...
...
dlls/usp10/usp10.c
View file @
eedfacdf
...
...
@@ -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
[]
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment