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
478eee17
Commit
478eee17
authored
Jul 31, 1999
by
Patrik Stridvall
Committed by
Alexandre Julliard
Jul 31, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eliminated warnings.
parent
5a08a028
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
30 additions
and
24 deletions
+30
-24
external.c
debugger/external.c
+1
-1
contmenu.c
dlls/shell32/contmenu.c
+0
-3
folders.c
dlls/shell32/folders.c
+1
-1
shelllink.c
dlls/shell32/shelllink.c
+4
-4
shlfolder.c
dlls/shell32/shlfolder.c
+1
-1
shlview.c
dlls/shell32/shlview.c
+1
-1
undocshell.h
include/wine/undocshell.h
+4
-1
mcimidi.c
multimedia/mcimidi.c
+4
-0
antimoniker.c
ole/antimoniker.c
+2
-2
compositemoniker.c
ole/compositemoniker.c
+2
-2
datacache.c
ole/datacache.c
+2
-2
filemoniker.c
ole/filemoniker.c
+2
-2
itemmoniker.c
ole/itemmoniker.c
+2
-2
olefont.c
ole/olefont.c
+2
-2
thread.c
scheduler/thread.c
+2
-0
No files found.
debugger/external.c
View file @
478eee17
...
...
@@ -117,7 +117,7 @@ void DEBUG_ExternalDebugger(void)
memset
(
pid_string
,
0
,
DBG_BUFF_SIZE
);
/* make pid into string */
sprintf
(
pid_string
,
"%
d"
,
attach_pid
);
sprintf
(
pid_string
,
"%
ld"
,
(
long
)
attach_pid
);
/* now exec the debugger to get it's own clean memory space */
if
(
dbg_no_xterm
)
...
...
dlls/shell32/contmenu.c
View file @
478eee17
...
...
@@ -311,9 +311,6 @@ static HRESULT WINAPI IContextMenu_fnInvokeCommand(
ICOM_THIS
(
IContextMenuImpl
,
iface
);
LPITEMIDLIST
pidlFQ
;
LPSHELLBROWSER
lpSB
;
LPSHELLVIEW
lpSV
;
HWND
hWndSV
;
SHELLEXECUTEINFOA
sei
;
int
i
;
...
...
dlls/shell32/folders.c
View file @
478eee17
...
...
@@ -287,7 +287,7 @@ static ULONG WINAPI IEIPersistFile_fnRelease(
* IEIPersistFile_GetClassID (IPersist)
*/
static
HRESULT
WINAPI
IEIPersistFile_fnGetClassID
(
const
IPersistFile
*
iface
,
IPersistFile
*
iface
,
LPCLSID
lpClassId
)
{
CLSID
StdFolderID
=
{
0x00000000
,
0x0000
,
0x0000
,
{
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
}
};
...
...
dlls/shell32/shelllink.c
View file @
478eee17
...
...
@@ -132,13 +132,13 @@ static ULONG WINAPI IPersistFile_fnRelease(IPersistFile* iface)
return
IShellLink_Release
((
IShellLink
*
)
This
);
}
static
HRESULT
WINAPI
IPersistFile_fnGetClassID
(
const
IPersistFile
*
iface
,
CLSID
*
pClassID
)
static
HRESULT
WINAPI
IPersistFile_fnGetClassID
(
IPersistFile
*
iface
,
CLSID
*
pClassID
)
{
_ICOM_THIS_From_IPersistFile
(
IShellLinkImpl
,
iface
)
FIXME
(
"(%p)
\n
"
,
This
);
return
NOERROR
;
}
static
HRESULT
WINAPI
IPersistFile_fnIsDirty
(
const
IPersistFile
*
iface
)
static
HRESULT
WINAPI
IPersistFile_fnIsDirty
(
IPersistFile
*
iface
)
{
_ICOM_THIS_From_IPersistFile
(
IShellLinkImpl
,
iface
)
FIXME
(
"(%p)
\n
"
,
This
);
...
...
@@ -181,7 +181,7 @@ static HRESULT WINAPI IPersistFile_fnSaveCompleted(IPersistFile* iface, LPCOLEST
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
pszFileName
));
return
NOERROR
;
}
static
HRESULT
WINAPI
IPersistFile_fnGetCurFile
(
const
IPersistFile
*
iface
,
LPOLESTR
*
ppszFileName
)
static
HRESULT
WINAPI
IPersistFile_fnGetCurFile
(
IPersistFile
*
iface
,
LPOLESTR
*
ppszFileName
)
{
_ICOM_THIS_From_IPersistFile
(
IShellLinkImpl
,
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
...
...
@@ -248,7 +248,7 @@ static ULONG WINAPI IPersistStream_fnAddRef(
*
*/
static
HRESULT
WINAPI
IPersistStream_fnGetClassID
(
const
IPersistStream
*
iface
,
IPersistStream
*
iface
,
CLSID
*
pClassID
)
{
_ICOM_THIS_From_IPersistStream
(
IShellLinkImpl
,
iface
);
...
...
dlls/shell32/shlfolder.c
View file @
478eee17
...
...
@@ -1742,7 +1742,7 @@ static ULONG WINAPI ISFPersistFolder_Release(
* ISFPersistFolder_GetClassID (IPersist)
*/
static
HRESULT
WINAPI
ISFPersistFolder_GetClassID
(
const
IPersistFolder
*
iface
,
IPersistFolder
*
iface
,
CLSID
*
lpClassId
)
{
_ICOM_THIS_From_IPersistFolder
(
IGenericSFImpl
,
iface
);
...
...
dlls/shell32/shlview.c
View file @
478eee17
...
...
@@ -140,7 +140,7 @@ static HRESULT IncludeObject(IShellViewImpl * This, LPCITEMIDLIST pidl)
{
TRACE
(
"ICommDlgBrowser::IncludeObject pidl=%p
\n
"
,
pidl
);
ret
=
ICommDlgBrowser_IncludeObject
(
This
->
pCommDlgBrowser
,
(
IShellView
*
)
This
,
pidl
);
TRACE
(
"--0x%08x
\n
"
,
ret
);
TRACE
(
"--0x%08
l
x
\n
"
,
ret
);
}
return
ret
;
}
...
...
include/wine/undocshell.h
View file @
478eee17
...
...
@@ -46,7 +46,10 @@ LPITEMIDLIST WINAPI ILCreateFromPathAW(LPVOID path);
*/
HRESULT
WINAPI
SHBindToParent
(
LPCITEMIDLIST
pidl
,
REFIID
riid
,
LPVOID
*
ppv
,
LPCITEMIDLIST
*
ppidlLast
);
HRESULT
WINAPI
StrRetToStrN
(
LPVOID
dest
,
DWORD
len
,
LPSTRRET
src
,
LPITEMIDLIST
pidl
);
HRESULT
WINAPI
StrRetToStrNA
(
LPVOID
dest
,
DWORD
len
,
LPSTRRET
src
,
LPITEMIDLIST
pidl
);
HRESULT
WINAPI
StrRetToStrNW
(
LPVOID
dest
,
DWORD
len
,
LPSTRRET
src
,
LPITEMIDLIST
pidl
);
HRESULT
WINAPI
StrRetToStrNAW
(
LPVOID
dest
,
DWORD
len
,
LPSTRRET
src
,
LPITEMIDLIST
pidl
);
#ifdef __cplusplus
}
/* extern "C" */
#endif
/* defined(__cplusplus) */
...
...
multimedia/mcimidi.c
View file @
478eee17
...
...
@@ -24,6 +24,8 @@
DEFAULT_DEBUG_CHANNEL
(
mcimidi
)
#ifdef SNDCTL_MIDI_INFO
typedef
struct
{
DWORD
dwFirst
;
/* offset in file of track */
DWORD
dwLast
;
/* number of bytes in file of track */
...
...
@@ -60,6 +62,8 @@ typedef struct tagWINE_MCIMIDI {
}
WINE_MCIMIDI
;
#endif
/* defined(SNDCTL_MIDI_INFO) */
/*======================================================================*
* MCI MIDI implemantation *
*======================================================================*/
...
...
ole/antimoniker.c
View file @
478eee17
...
...
@@ -39,7 +39,7 @@ static ULONG WINAPI AntiMonikerImpl_AddRef(IMoniker* iface);
static
ULONG
WINAPI
AntiMonikerImpl_Release
(
IMoniker
*
iface
);
/* IPersist prototype functions */
static
HRESULT
WINAPI
AntiMonikerImpl_GetClassID
(
const
IMoniker
*
iface
,
CLSID
*
pClassID
);
static
HRESULT
WINAPI
AntiMonikerImpl_GetClassID
(
IMoniker
*
iface
,
CLSID
*
pClassID
);
/* IPersistStream prototype functions */
static
HRESULT
WINAPI
AntiMonikerImpl_IsDirty
(
IMoniker
*
iface
);
...
...
@@ -193,7 +193,7 @@ ULONG WINAPI AntiMonikerImpl_Release(IMoniker* iface)
/******************************************************************************
* AntiMoniker_GetClassID
******************************************************************************/
HRESULT
WINAPI
AntiMonikerImpl_GetClassID
(
const
IMoniker
*
iface
,
CLSID
*
pClassID
)
HRESULT
WINAPI
AntiMonikerImpl_GetClassID
(
IMoniker
*
iface
,
CLSID
*
pClassID
)
{
TRACE
(
"(%p,%p),stub!
\n
"
,
iface
,
pClassID
);
...
...
ole/compositemoniker.c
View file @
478eee17
...
...
@@ -65,7 +65,7 @@ static ULONG WINAPI CompositeMonikerImpl_AddRef(IMoniker* iface);
static
ULONG
WINAPI
CompositeMonikerImpl_Release
(
IMoniker
*
iface
);
/* IPersist prototype functions */
static
HRESULT
WINAPI
CompositeMonikerImpl_GetClassID
(
const
IMoniker
*
iface
,
CLSID
*
pClassID
);
static
HRESULT
WINAPI
CompositeMonikerImpl_GetClassID
(
IMoniker
*
iface
,
CLSID
*
pClassID
);
/* IPersistStream prototype functions */
static
HRESULT
WINAPI
CompositeMonikerImpl_IsDirty
(
IMoniker
*
iface
);
...
...
@@ -255,7 +255,7 @@ ULONG WINAPI CompositeMonikerImpl_Release(IMoniker* iface)
/******************************************************************************
* CompositeMoniker_GetClassID
******************************************************************************/
HRESULT
WINAPI
CompositeMonikerImpl_GetClassID
(
const
IMoniker
*
iface
,
CLSID
*
pClassID
)
HRESULT
WINAPI
CompositeMonikerImpl_GetClassID
(
IMoniker
*
iface
,
CLSID
*
pClassID
)
{
TRACE
(
"(%p,%p),stub!
\n
"
,
iface
,
pClassID
);
...
...
ole/datacache.c
View file @
478eee17
...
...
@@ -213,7 +213,7 @@ static ULONG WINAPI DataCache_IPersistStorage_AddRef(
static
ULONG
WINAPI
DataCache_IPersistStorage_Release
(
IPersistStorage
*
iface
);
static
HRESULT
WINAPI
DataCache_GetClassID
(
const
IPersistStorage
*
iface
,
IPersistStorage
*
iface
,
CLSID
*
pClassID
);
static
HRESULT
WINAPI
DataCache_IsDirty
(
IPersistStorage
*
iface
);
...
...
@@ -1189,7 +1189,7 @@ static ULONG WINAPI DataCache_IPersistStorage_Release(
* See Windows documentation for more details on IPersistStorage methods.
*/
static
HRESULT
WINAPI
DataCache_GetClassID
(
const
IPersistStorage
*
iface
,
IPersistStorage
*
iface
,
CLSID
*
pClassID
)
{
TRACE
(
"(%p, %p)
\n
"
,
iface
,
pClassID
);
...
...
ole/filemoniker.c
View file @
478eee17
...
...
@@ -42,7 +42,7 @@ static ULONG WINAPI FileMonikerImpl_AddRef(IMoniker* iface);
static
ULONG
WINAPI
FileMonikerImpl_Release
(
IMoniker
*
iface
);
/* IPersist prototype functions */
static
HRESULT
WINAPI
FileMonikerImpl_GetClassID
(
const
IMoniker
*
iface
,
CLSID
*
pClassID
);
static
HRESULT
WINAPI
FileMonikerImpl_GetClassID
(
IMoniker
*
iface
,
CLSID
*
pClassID
);
/* IPersistStream prototype functions */
static
HRESULT
WINAPI
FileMonikerImpl_IsDirty
(
IMoniker
*
iface
);
...
...
@@ -199,7 +199,7 @@ ULONG WINAPI FileMonikerImpl_Release(IMoniker* iface)
/******************************************************************************
* FileMoniker_GetClassID
******************************************************************************/
HRESULT
WINAPI
FileMonikerImpl_GetClassID
(
const
IMoniker
*
iface
,
HRESULT
WINAPI
FileMonikerImpl_GetClassID
(
IMoniker
*
iface
,
CLSID
*
pClassID
)
/* Pointer to CLSID of object */
{
TRACE
(
"(%p,%p),stub!
\n
"
,
iface
,
pClassID
);
...
...
ole/itemmoniker.c
View file @
478eee17
...
...
@@ -43,7 +43,7 @@ static ULONG WINAPI ItemMonikerImpl_AddRef(IMoniker* iface);
static
ULONG
WINAPI
ItemMonikerImpl_Release
(
IMoniker
*
iface
);
/* IPersist prototype functions */
static
HRESULT
WINAPI
ItemMonikerImpl_GetClassID
(
const
IMoniker
*
iface
,
CLSID
*
pClassID
);
static
HRESULT
WINAPI
ItemMonikerImpl_GetClassID
(
IMoniker
*
iface
,
CLSID
*
pClassID
);
/* IPersistStream prototype functions */
static
HRESULT
WINAPI
ItemMonikerImpl_IsDirty
(
IMoniker
*
iface
);
...
...
@@ -198,7 +198,7 @@ ULONG WINAPI ItemMonikerImpl_Release(IMoniker* iface)
/******************************************************************************
* ItemMoniker_GetClassID
******************************************************************************/
HRESULT
WINAPI
ItemMonikerImpl_GetClassID
(
const
IMoniker
*
iface
,
CLSID
*
pClassID
)
HRESULT
WINAPI
ItemMonikerImpl_GetClassID
(
IMoniker
*
iface
,
CLSID
*
pClassID
)
{
TRACE
(
"(%p,%p),stub!
\n
"
,
iface
,
pClassID
);
...
...
ole/olefont.c
View file @
478eee17
...
...
@@ -152,7 +152,7 @@ static HRESULT WINAPI OLEFontImpl_IPersistStream_QueryInterface(IPersistStream*
VOID
**
ppvoid
);
static
ULONG
WINAPI
OLEFontImpl_IPersistStream_AddRef
(
IPersistStream
*
iface
);
static
ULONG
WINAPI
OLEFontImpl_IPersistStream_Release
(
IPersistStream
*
iface
);
static
HRESULT
WINAPI
OLEFontImpl_GetClassID
(
const
IPersistStream
*
iface
,
static
HRESULT
WINAPI
OLEFontImpl_GetClassID
(
IPersistStream
*
iface
,
CLSID
*
pClassID
);
static
HRESULT
WINAPI
OLEFontImpl_IsDirty
(
IPersistStream
*
iface
);
static
HRESULT
WINAPI
OLEFontImpl_Load
(
IPersistStream
*
iface
,
...
...
@@ -1136,7 +1136,7 @@ static ULONG WINAPI OLEFontImpl_IPersistStream_AddRef(
* See Windows documentation for more details on IPersistStream methods.
*/
static
HRESULT
WINAPI
OLEFontImpl_GetClassID
(
const
IPersistStream
*
iface
,
IPersistStream
*
iface
,
CLSID
*
pClassID
)
{
if
(
pClassID
==
0
)
...
...
scheduler/thread.c
View file @
478eee17
...
...
@@ -4,6 +4,8 @@
* Copyright 1996 Alexandre Julliard
*/
#include "config.h"
#include <assert.h>
#include <fcntl.h>
#include <sys/types.h>
...
...
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