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
e4c1227e
Commit
e4c1227e
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
7b56757c
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
2 additions
and
28 deletions
+2
-28
storage32.c
dlls/ole32/storage32.c
+0
-3
d3d9types.h
include/d3d9types.h
+0
-9
ndrtypes.h
include/ndrtypes.h
+1
-3
rpcproxy.h
include/rpcproxy.h
+0
-2
ws2tcpip.h
include/ws2tcpip.h
+0
-3
dialog.c
programs/notepad/dialog.c
+1
-3
winedump.h
tools/winedump/winedump.h
+0
-5
No files found.
dlls/ole32/storage32.c
View file @
e4c1227e
...
...
@@ -28,9 +28,6 @@
* The compound file implementation of IStorage used for create
* and manage substorages and streams within a storage object
* residing in a compound file object.
*
* MSDN
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/stg/stg/istorage_compound_file_implementation.asp
*/
#include <assert.h>
...
...
include/d3d9types.h
View file @
e4c1227e
...
...
@@ -226,15 +226,6 @@ typedef enum _D3DDECLUSAGE {
D3DDECLUSAGE_SAMPLE
=
13
}
D3DDECLUSAGE
;
/* MSDN is quite confussing at this point...
http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/directx9_c/directx/graphics/reference/d3d/constants/OTHER_D3D.asp
says D3DMAX, and D3DMAXDECLUSAGE = D3DDECLUSAGE_DEPTH
http://msdn.microsoft.com/library/default.asp?url=/archive/en-us/directx9_c_summer_03/directx/graphics/reference/d3d/constants/other_d3d.asp
says MAXD3D, and D3DDECLUSAGE_SAMPLE
So both are defined
*/
#define D3DMAXDECLUSAGE D3DDECLUSAGE_SAMPLE
#define D3DMAXDECLUSAGEINDEX 15
#define D3DMAXDECLLENGTH 18
...
...
include/ndrtypes.h
View file @
e4c1227e
...
...
@@ -31,9 +31,7 @@ typedef struct
unsigned
short
MustFree
:
1
;
/* 0x0002 - server interpreter MUST size this
* parameter, other parameters may be skipped, using the value in
* NDR_PROC_PARTIAL_OIF_HEADER::constant_server_buffer_size instead. */
unsigned
short
IsPipe
:
1
;
/* 0x0004 - The parameter is a pipe handle. See
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/pipes.asp
* for more information on pipes. */
unsigned
short
IsPipe
:
1
;
/* 0x0004 - The parameter is a pipe handle */
unsigned
short
IsIn
:
1
;
/* 0x0008 - The parameter is an input */
unsigned
short
IsOut
:
1
;
/* 0x0010 - The parameter is an output */
unsigned
short
IsReturn
:
1
;
/* 0x0020 - The parameter is to be returned */
...
...
include/rpcproxy.h
View file @
e4c1227e
...
...
@@ -350,8 +350,6 @@ ULONG WINAPI CStdStubBuffer2_Release(IRpcStubBuffer *This) \
#if 0
/* see http://www.microsoft.com/msj/0199/com/com0199.aspx */
RPCRTAPI HRESULT RPC_ENTRY
CreateProxyFromTypeInfo( LPTYPEINFO pTypeInfo, LPUNKNOWN pUnkOuter, REFIID riid,
LPRPCPROXYBUFFER *ppProxy, LPVOID *ppv );
...
...
include/ws2tcpip.h
View file @
e4c1227e
...
...
@@ -90,9 +90,6 @@ typedef struct WS(in_addr6)
u_char
s6_addr
[
16
];
/* IPv6 address */
}
IN6_ADDR
,
*
PIN6_ADDR
,
*
LPIN6_ADDR
;
/* check for sockaddr_in6 / sockaddr_in6_old madness:
* http://msdn.microsoft.com/library/en-us/winsock/winsock/sockaddr_2.asp
*/
typedef
struct
WS
(
sockaddr_in6
)
{
short
sin6_family
;
/* AF_INET6 */
...
...
programs/notepad/dialog.c
View file @
e4c1227e
...
...
@@ -265,9 +265,7 @@ void DoOpenFile(LPCWSTR szFileName)
SendMessage
(
Globals
.
hEdit
,
EM_EMPTYUNDOBUFFER
,
0
,
0
);
SetFocus
(
Globals
.
hEdit
);
/* If the file starts with .LOG, add a time/date at the end and set cursor after
* See http://support.microsoft.com/?kbid=260563
*/
/* If the file starts with .LOG, add a time/date at the end and set cursor after */
if
(
GetWindowTextW
(
Globals
.
hEdit
,
log
,
sizeof
(
log
)
/
sizeof
(
log
[
0
]))
&&
!
lstrcmp
(
log
,
dotlog
))
{
static
const
WCHAR
lfW
[]
=
{
'\r'
,
'\n'
,
0
};
...
...
tools/winedump/winedump.h
View file @
e4c1227e
...
...
@@ -25,11 +25,6 @@
* All the cool functionality (prototyping, call tracing, forwarding)
* relies on Patrik Stridvall's 'function_grep.pl' script to work.
*
* http://msdn.microsoft.com/library/periodic/period96/msj/S330.htm
* This article provides both a description and freely downloadable
* implementation, in source code form, of how to extract symbols
* from Win32 PE executables/DLLs.
*
* http://www.kegel.com/mangle.html
* Gives information on the name mangling scheme used by MS compilers,
* used as the starting point for the code here. Contains a few
...
...
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