Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
7b56757c
Commit
7b56757c
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
c29c740d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
48 deletions
+9
-48
compobj_private.h
dlls/ole32/compobj_private.h
+1
-2
dcom.idl
dlls/ole32/dcom.idl
+1
-2
moniker.c
dlls/ole32/moniker.c
+2
-1
oleproxy.c
dlls/ole32/oleproxy.c
+1
-17
stg_prop.c
dlls/ole32/stg_prop.c
+3
-23
socket.c
dlls/ws2_32/socket.c
+1
-3
No files found.
dlls/ole32/compobj_private.h
View file @
7b56757c
...
...
@@ -269,8 +269,7 @@ void apartment_joinmta(void);
#define DM_HOSTOBJECT (WM_USER + 1)
/* WPARAM = 0, LPARAM = (struct host_object_params *) */
/*
* Per-thread values are stored in the TEB on offset 0xF80,
* see http://www.microsoft.com/msj/1099/bugslayer/bugslayer1099.htm
* Per-thread values are stored in the TEB on offset 0xF80
*/
/* will create if necessary */
...
...
dlls/ole32/dcom.idl
View file @
7b56757c
...
...
@@ -16,8 +16,7 @@
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
/*
see
http
:
//
www
.
microsoft.com/msj/0398/dcom.htm
*/
/*
and
the
official
DCOM
specification
/*
see
the
official
DCOM
specification
*
(
there
's a copy at http://www.grimes.demon.co.uk/DCOM/DCOMSpec.htm) */
import "unknwn.idl";
...
...
dlls/ole32/moniker.c
View file @
7b56757c
...
...
@@ -50,7 +50,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
/* see MSDN docs for IROTData::GetComparisonData, which states what this
* constant is (http://msdn2.microsoft.com/en-us/library/ms693773.aspx) */
* constant is
*/
#define MAX_COMPARISON_DATA 2048
static
LONG
WINAPI
rpc_filter
(
EXCEPTION_POINTERS
*
eptr
)
...
...
dlls/ole32/oleproxy.c
View file @
7b56757c
...
...
@@ -19,22 +19,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
/* Documentation on MSDN:
*
* (Top level COM documentation)
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnanchor/html/componentdevelopmentank.asp
*
* (COM Proxy)
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/comext_1q0p.asp
*
* (COM Stub)
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/comext_1lia.asp
*
* (Marshal)
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/comext_1gfn.asp
*
*/
#include "config.h"
#include <stdlib.h>
...
...
@@ -64,7 +48,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
static
ULONG
WINAPI
RURpcProxyBufferImpl_Release
(
LPRPCPROXYBUFFER
iface
);
/* From
: http://msdn.microsoft.com/library/en-us/com/cmi_m_4lda.asp
/* From
msdn:
*
* The first time a client requests a pointer to an interface on a
* particular object, COM loads an IClassFactory stub in the server
...
...
dlls/ole32/stg_prop.c
View file @
7b56757c
...
...
@@ -25,11 +25,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
*
* There's a decent overview of property set storage here:
* http://msdn.microsoft.com/archive/en-us/dnarolegen/html/msdn_propset.asp
* It's a little bit out of date, and more definitive references are given
* below, but it gives the best "big picture" that I've found.
*
* TODO:
* - I don't honor the maximum property set size.
* - Certain bogus files could result in reading past the end of a buffer.
...
...
@@ -68,9 +63,7 @@ static inline StorageImpl *impl_from_IPropertySetStorage( IPropertySetStorage *i
return
(
StorageImpl
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
StorageImpl
,
base
.
pssVtbl
));
}
/* These are documented in MSDN, e.g.
* http://msdn.microsoft.com/library/en-us/stg/stg/property_set_header.asp
* http://msdn.microsoft.com/library/library/en-us/stg/stg/section.asp
/* These are documented in MSDN,
* but they don't seem to be in any header file.
*/
#define PROPSETHDR_BYTEORDER_MAGIC 0xfffe
...
...
@@ -87,9 +80,6 @@ static inline StorageImpl *impl_from_IPropertySetStorage( IPropertySetStorage *i
#define CFTAG_FMTID (-3L)
#define CFTAG_NODATA 0L
/* The format version (and what it implies) is described here:
* http://msdn.microsoft.com/library/en-us/stg/stg/format_version.asp
*/
typedef
struct
tagPROPERTYSETHEADER
{
WORD
wByteOrder
;
/* always 0xfffe */
...
...
@@ -1421,9 +1411,7 @@ static HRESULT PropertyStorage_ReadFromStream(PropertyStorage_impl *This)
}
if
(
!
This
->
codePage
)
{
/* default to Unicode unless told not to, as specified here:
* http://msdn.microsoft.com/library/en-us/stg/stg/names_in_istorage.asp
*/
/* default to Unicode unless told not to, as specified on msdn */
if
(
This
->
grfFlags
&
PROPSETFLAG_ANSI
)
This
->
codePage
=
GetACP
();
else
...
...
@@ -2037,9 +2025,7 @@ static HRESULT PropertyStorage_ConstructEmpty(IStream *stm,
ps
->
grfFlags
=
grfFlags
;
if
(
ps
->
grfFlags
&
PROPSETFLAG_CASE_SENSITIVE
)
ps
->
format
=
1
;
/* default to Unicode unless told not to, as specified here:
* http://msdn.microsoft.com/library/en-us/stg/stg/names_in_istorage.asp
*/
/* default to Unicode unless told not to, as specified here on mdsn */
if
(
ps
->
grfFlags
&
PROPSETFLAG_ANSI
)
ps
->
codePage
=
GetACP
();
else
...
...
@@ -2507,8 +2493,6 @@ static const WCHAR szDocSummaryInfo[] = { 5,'D','o','c','u','m','e','n','t',
*
* NOTES
* str must be at least CCH_MAX_PROPSTG_NAME characters in length.
* Based on the algorithm described here:
* http://msdn.microsoft.com/library/en-us/stg/stg/names_in_istorage.asp
*/
HRESULT
WINAPI
FmtIdToPropStgName
(
const
FMTID
*
rfmtid
,
LPOLESTR
str
)
{
...
...
@@ -2574,10 +2558,6 @@ HRESULT WINAPI FmtIdToPropStgName(const FMTID *rfmtid, LPOLESTR str)
* RETURNS
* E_INVALIDARG if rfmtid or str is NULL or if str can't be converted to
* a format ID, S_OK otherwise.
*
* NOTES
* Based on the algorithm described here:
* http://msdn.microsoft.com/library/en-us/stg/stg/names_in_istorage.asp
*/
HRESULT
WINAPI
PropStgNameToFmtId
(
const
LPOLESTR
str
,
FMTID
*
rfmtid
)
{
...
...
dlls/ws2_32/socket.c
View file @
7b56757c
/*
* based on Windows Sockets 1.1 specs
* (ftp.microsoft.com:/Advsys/winsock/spec11/WINSOCK.TXT)
*
* Copyright (C) 1993,1994,1996,1997 John Brezak, Erik Bos, Alex Korobka.
* Copyright (C) 2005 Marcus Meissner
...
...
@@ -881,8 +880,7 @@ static unsigned int ws_sockaddr_ws2u(const struct WS_sockaddr* wsaddr, int wsadd
const
struct
WS_sockaddr_in6
*
win6
=
(
const
struct
WS_sockaddr_in6
*
)
wsaddr
;
/* Note: Windows has 2 versions of the sockaddr_in6 struct, one with
* scope_id, one without. Check:
* http://msdn.microsoft.com/library/en-us/winsock/winsock/sockaddr_2.asp
* scope_id, one without.
*/
if
(
wsaddrlen
>=
sizeof
(
struct
WS_sockaddr_in6_old
))
{
uaddrlen
=
sizeof
(
struct
sockaddr_in6
);
...
...
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