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
e28c014a
Commit
e28c014a
authored
Jul 03, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-Wpointer-sign fixes.
parent
126af865
Show whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
27 additions
and
27 deletions
+27
-27
autocomplete.c
dlls/shell32/autocomplete.c
+1
-1
classes.c
dlls/shell32/classes.c
+2
-2
cpanelfolder.c
dlls/shell32/cpanelfolder.c
+1
-1
dataobject.c
dlls/shell32/dataobject.c
+2
-2
dde.c
dlls/shell32/dde.c
+1
-1
dragdrophelper.c
dlls/shell32/dragdrophelper.c
+1
-1
enumidlist.c
dlls/shell32/enumidlist.c
+1
-1
folders.c
dlls/shell32/folders.c
+1
-1
pidl.c
dlls/shell32/pidl.c
+1
-1
pidl.h
dlls/shell32/pidl.h
+1
-1
shell32_main.h
dlls/shell32/shell32_main.h
+2
-2
shelllink.c
dlls/shell32/shelllink.c
+2
-2
shellole.c
dlls/shell32/shellole.c
+2
-2
shfldr_desktop.c
dlls/shell32/shfldr_desktop.c
+1
-1
shfldr_fs.c
dlls/shell32/shfldr_fs.c
+1
-1
shfldr_mycomp.c
dlls/shell32/shfldr_mycomp.c
+1
-1
shfldr_unixfs.c
dlls/shell32/shfldr_unixfs.c
+2
-2
shlfsbind.c
dlls/shell32/shlfsbind.c
+1
-1
shlview.c
dlls/shell32/shlview.c
+1
-1
shv_bg_cmenu.c
dlls/shell32/shv_bg_cmenu.c
+1
-1
shv_item_cmenu.c
dlls/shell32/shv_item_cmenu.c
+1
-1
No files found.
dlls/shell32/autocomplete.c
View file @
e28c014a
...
...
@@ -64,7 +64,7 @@ typedef struct
{
const
IAutoCompleteVtbl
*
lpVtbl
;
const
IAutoComplete2Vtbl
*
lpvtblAutoComplete2
;
DWORD
ref
;
LONG
ref
;
BOOL
enabled
;
HWND
hwndEdit
;
HWND
hwndListBox
;
...
...
dlls/shell32/classes.c
View file @
e28c014a
...
...
@@ -49,7 +49,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell);
#define MAX_EXTENSION_LENGTH 20
BOOL
HCR_MapTypeToValueW
(
LPCWSTR
szExtension
,
LPWSTR
szFileType
,
DWORD
len
,
BOOL
bPrependDot
)
BOOL
HCR_MapTypeToValueW
(
LPCWSTR
szExtension
,
LPWSTR
szFileType
,
LONG
len
,
BOOL
bPrependDot
)
{
HKEY
hkey
;
WCHAR
szTemp
[
MAX_EXTENSION_LENGTH
+
2
];
...
...
@@ -83,7 +83,7 @@ BOOL HCR_MapTypeToValueW(LPCWSTR szExtension, LPWSTR szFileType, DWORD len, BOOL
return
TRUE
;
}
BOOL
HCR_MapTypeToValueA
(
LPCSTR
szExtension
,
LPSTR
szFileType
,
DWORD
len
,
BOOL
bPrependDot
)
BOOL
HCR_MapTypeToValueA
(
LPCSTR
szExtension
,
LPSTR
szFileType
,
LONG
len
,
BOOL
bPrependDot
)
{
HKEY
hkey
;
char
szTemp
[
MAX_EXTENSION_LENGTH
+
2
];
...
...
dlls/shell32/cpanelfolder.c
View file @
e28c014a
...
...
@@ -59,7 +59,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell);
typedef
struct
{
const
IShellFolder2Vtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
const
IPersistFolder2Vtbl
*
lpVtblPersistFolder2
;
const
IShellExecuteHookWVtbl
*
lpVtblShellExecuteHookW
;
const
IShellExecuteHookAVtbl
*
lpVtblShellExecuteHookA
;
...
...
dlls/shell32/dataobject.c
View file @
e28c014a
...
...
@@ -43,7 +43,7 @@ typedef struct
{
/* IUnknown fields */
const
IEnumFORMATETCVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
/* IEnumFORMATETC fields */
UINT
posFmt
;
UINT
countFmt
;
...
...
@@ -205,7 +205,7 @@ typedef struct
{
/* IUnknown fields */
const
IDataObjectVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
/* IDataObject fields */
LPITEMIDLIST
pidl
;
...
...
dlls/shell32/dde.c
View file @
e28c014a
...
...
@@ -73,7 +73,7 @@ static inline HDDEDATA Dde_OnRequest(UINT uFmt, HCONV hconv, HSZ hszTopic,
static
inline
DWORD
Dde_OnExecute
(
HCONV
hconv
,
HSZ
hszTopic
,
HDDEDATA
hdata
)
{
char
*
pszCommand
;
BYTE
*
pszCommand
;
pszCommand
=
DdeAccessData
(
hdata
,
NULL
);
if
(
!
pszCommand
)
...
...
dlls/shell32/dragdrophelper.c
View file @
e28c014a
...
...
@@ -49,7 +49,7 @@ WINE_DEFAULT_DEBUG_CHANNEL (shell);
typedef
struct
{
const
IDropTargetHelperVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
}
IDropTargetHelperImpl
;
static
const
IDropTargetHelperVtbl
vt_IDropTargetHelper
;
...
...
dlls/shell32/enumidlist.c
View file @
e28c014a
...
...
@@ -46,7 +46,7 @@ typedef struct tagENUMLIST
typedef
struct
{
const
IEnumIDListVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
LPENUMLIST
mpFirst
;
LPENUMLIST
mpLast
;
LPENUMLIST
mpCurrent
;
...
...
dlls/shell32/folders.c
View file @
e28c014a
...
...
@@ -50,7 +50,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell);
typedef
struct
{
const
IExtractIconWVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
const
IPersistFileVtbl
*
lpvtblPersistFile
;
const
IExtractIconAVtbl
*
lpvtblExtractIconA
;
LPITEMIDLIST
pidl
;
...
...
dlls/shell32/pidl.c
View file @
e28c014a
...
...
@@ -1336,7 +1336,7 @@ HRESULT WINAPI SHBindToParent(LPCITEMIDLIST pidl, REFIID riid, LPVOID *ppv, LPCI
*
*************************************************************************
*/
LPITEMIDLIST
_ILAlloc
(
PIDLTYPE
type
,
size_
t
size
)
LPITEMIDLIST
_ILAlloc
(
PIDLTYPE
type
,
unsigned
in
t
size
)
{
LPITEMIDLIST
pidlOut
=
NULL
;
...
...
dlls/shell32/pidl.h
View file @
e28c014a
...
...
@@ -206,7 +206,7 @@ BOOL _ILIsCPanelStruct (LPCITEMIDLIST pidl);
* - two bytes are the NULL PIDL terminator
* Sets type of the returned PIDL to type.
*/
LPITEMIDLIST
_ILAlloc
(
PIDLTYPE
type
,
size_
t
size
);
LPITEMIDLIST
_ILAlloc
(
PIDLTYPE
type
,
unsigned
in
t
size
);
/* Creates a PIDL with guid format and type type, which must be one of PT_GUID,
* PT_SHELLEXT, or PT_YAGUID.
...
...
dlls/shell32/shell32_main.h
View file @
e28c014a
...
...
@@ -56,14 +56,14 @@ BOOL PidlToSicIndex (IShellFolder * sh, LPCITEMIDLIST pidl, BOOL bBigIcon, UINT
INT
SIC_GetIconIndex
(
LPCWSTR
sSourceFile
,
INT
dwSourceIndex
,
DWORD
dwFlags
);
/* Classes Root */
BOOL
HCR_MapTypeToValueW
(
LPCWSTR
szExtension
,
LPWSTR
szFileType
,
DWORD
len
,
BOOL
bPrependDot
);
BOOL
HCR_MapTypeToValueW
(
LPCWSTR
szExtension
,
LPWSTR
szFileType
,
LONG
len
,
BOOL
bPrependDot
);
BOOL
HCR_GetExecuteCommandW
(
HKEY
hkeyClass
,
LPCWSTR
szClass
,
LPCWSTR
szVerb
,
LPWSTR
szDest
,
DWORD
len
);
BOOL
HCR_GetDefaultIconW
(
LPCWSTR
szClass
,
LPWSTR
szDest
,
DWORD
len
,
LPDWORD
dwNr
);
BOOL
HCR_GetDefaultIconFromGUIDW
(
REFIID
riid
,
LPWSTR
szDest
,
DWORD
len
,
LPDWORD
dwNr
);
BOOL
HCR_GetClassNameW
(
REFIID
riid
,
LPWSTR
szDest
,
DWORD
len
);
/* ANSI versions of above functions, supposed to go away as soon as they are not used anymore */
BOOL
HCR_MapTypeToValueA
(
LPCSTR
szExtension
,
LPSTR
szFileType
,
DWORD
len
,
BOOL
bPrependDot
);
BOOL
HCR_MapTypeToValueA
(
LPCSTR
szExtension
,
LPSTR
szFileType
,
LONG
len
,
BOOL
bPrependDot
);
BOOL
HCR_GetDefaultIconA
(
LPCSTR
szClass
,
LPSTR
szDest
,
DWORD
len
,
LPDWORD
dwNr
);
BOOL
HCR_GetClassNameA
(
REFIID
riid
,
LPSTR
szDest
,
DWORD
len
);
...
...
dlls/shell32/shelllink.c
View file @
e28c014a
...
...
@@ -133,7 +133,7 @@ typedef struct
const
IShellExtInitVtbl
*
lpvtblShellExtInit
;
const
IContextMenuVtbl
*
lpvtblContextMenu
;
DWORD
ref
;
LONG
ref
;
/* data structures according to the informations in the link */
LPITEMIDLIST
pPidl
;
...
...
@@ -660,7 +660,7 @@ static LPWSTR Stream_LoadPath( LPSTR p, DWORD maxlen )
static
HRESULT
Stream_LoadLocation
(
IStream
*
stm
,
volume_info
*
volume
,
LPWSTR
*
path
)
{
unsigned
char
*
p
=
NULL
;
char
*
p
=
NULL
;
LOCATION_INFO
*
loc
;
HRESULT
r
;
int
n
;
...
...
dlls/shell32/shellole.c
View file @
e28c014a
...
...
@@ -502,11 +502,11 @@ HRESULT WINAPI SHGetDesktopFolder(IShellFolder **psf)
typedef
struct
{
const
IClassFactoryVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
CLSID
*
rclsid
;
LPFNCREATEINSTANCE
lpfnCI
;
const
IID
*
riidInst
;
U
LONG
*
pcRefDll
;
/* pointer to refcounter in external dll (ugrrr...) */
LONG
*
pcRefDll
;
/* pointer to refcounter in external dll (ugrrr...) */
}
IDefClFImpl
;
static
const
IClassFactoryVtbl
dclfvt
;
...
...
dlls/shell32/shfldr_desktop.c
View file @
e28c014a
...
...
@@ -61,7 +61,7 @@ WINE_DEFAULT_DEBUG_CHANNEL (shell);
typedef
struct
{
const
IShellFolder2Vtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
CLSID
*
pclsid
;
...
...
dlls/shell32/shfldr_fs.c
View file @
e28c014a
...
...
@@ -61,7 +61,7 @@ WINE_DEFAULT_DEBUG_CHANNEL (shell);
typedef
struct
{
const
IUnknownVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
const
IShellFolder2Vtbl
*
lpvtblShellFolder
;
const
IPersistFolder3Vtbl
*
lpvtblPersistFolder3
;
const
IDropTargetVtbl
*
lpvtblDropTarget
;
...
...
dlls/shell32/shfldr_mycomp.c
View file @
e28c014a
...
...
@@ -56,7 +56,7 @@ WINE_DEFAULT_DEBUG_CHANNEL (shell);
typedef
struct
{
const
IShellFolder2Vtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
const
IPersistFolder2Vtbl
*
lpVtblPersistFolder2
;
/* both paths are parsible from the desktop */
...
...
dlls/shell32/shfldr_unixfs.c
View file @
e28c014a
...
...
@@ -98,7 +98,7 @@ typedef struct tagStatStruct {
typedef
struct
_UnixFolder
{
const
IShellFolder2Vtbl
*
lpIShellFolder2Vtbl
;
const
IPersistFolder2Vtbl
*
lpIPersistFolder2Vtbl
;
U
LONG
m_cRef
;
LONG
m_cRef
;
CHAR
*
m_pszPath
;
LPITEMIDLIST
m_pidlLocation
;
LPITEMIDLIST
*
m_apidlSubDirs
;
...
...
@@ -1306,7 +1306,7 @@ HRESULT WINAPI UnixDosFolder_Constructor(IUnknown *pUnkOuter, REFIID riid, LPVOI
*/
typedef
struct
_UnixSubFolderIterator
{
const
IEnumIDListVtbl
*
lpIEnumIDListVtbl
;
U
LONG
m_cRef
;
LONG
m_cRef
;
UnixFolder
*
m_pUnixFolder
;
ULONG
m_cIdx
;
SHCONTF
m_fFilter
;
...
...
dlls/shell32/shlfsbind.c
View file @
e28c014a
...
...
@@ -43,7 +43,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(pidl);
typedef
struct
{
const
IFileSystemBindDataVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
WIN32_FIND_DATAW
findFile
;
}
IFileSystemBindDataImpl
;
...
...
dlls/shell32/shlview.c
View file @
e28c014a
...
...
@@ -77,7 +77,7 @@ typedef struct
typedef
struct
{
const
IShellViewVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
const
IOleCommandTargetVtbl
*
lpvtblOleCommandTarget
;
const
IDropTargetVtbl
*
lpvtblDropTarget
;
const
IDropSourceVtbl
*
lpvtblDropSource
;
...
...
dlls/shell32/shv_bg_cmenu.c
View file @
e28c014a
...
...
@@ -45,7 +45,7 @@ typedef struct
{
const
IContextMenu2Vtbl
*
lpVtbl
;
IShellFolder
*
pSFParent
;
DWORD
ref
;
LONG
ref
;
BOOL
bDesktop
;
}
BgCmImpl
;
...
...
dlls/shell32/shv_item_cmenu.c
View file @
e28c014a
...
...
@@ -44,7 +44,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell);
*/
typedef
struct
{
const
IContextMenu2Vtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
IShellFolder
*
pSFParent
;
LPITEMIDLIST
pidl
;
/* root pidl */
LPITEMIDLIST
*
apidl
;
/* array of child pidls */
...
...
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