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
ac241bf7
Commit
ac241bf7
authored
Sep 17, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Check for macOS at runtime.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
48d62fc6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
35 deletions
+44
-35
recyclebin.c
dlls/shell32/recyclebin.c
+44
-35
No files found.
dlls/shell32/recyclebin.c
View file @
ac241bf7
...
@@ -79,47 +79,56 @@ static WCHAR *trash_dir;
...
@@ -79,47 +79,56 @@ static WCHAR *trash_dir;
static
WCHAR
*
trash_info_dir
;
static
WCHAR
*
trash_info_dir
;
static
ULONG
random_seed
;
static
ULONG
random_seed
;
extern
void
CDECL
wine_get_host_version
(
const
char
**
sysname
,
const
char
**
release
);
static
BOOL
is_macos
(
void
)
{
const
char
*
sysname
;
wine_get_host_version
(
&
sysname
,
NULL
);
return
!
strcmp
(
sysname
,
"Darwin"
);
}
static
BOOL
WINAPI
init_trash_dirs
(
INIT_ONCE
*
once
,
void
*
param
,
void
**
context
)
static
BOOL
WINAPI
init_trash_dirs
(
INIT_ONCE
*
once
,
void
*
param
,
void
**
context
)
{
{
static
const
WCHAR
homedirW
[]
=
{
'W'
,
'I'
,
'N'
,
'E'
,
'H'
,
'O'
,
'M'
,
'E'
,
'D'
,
'I'
,
'R'
,
0
};
const
WCHAR
*
home
=
_wgetenv
(
L"WINEHOMEDIR"
);
WCHAR
var
[
MAX_PATH
],
*
info
=
NULL
,
*
files
=
NULL
;
WCHAR
*
info
=
NULL
,
*
files
=
NULL
;
#ifdef __APPLE__
static
const
WCHAR
trashW
[]
=
{
'\\'
,
'.'
,
'T'
,
'r'
,
'a'
,
's'
,
'h'
,
0
};
if
(
!
GetEnvironmentVariableW
(
homedirW
,
var
,
MAX_PATH
))
return
TRUE
;
files
=
heap_alloc
(
(
lstrlenW
(
var
)
+
lstrlenW
(
trashW
)
+
1
)
*
sizeof
(
WCHAR
)
);
lstrcpyW
(
files
,
var
);
lstrcatW
(
files
,
trashW
);
files
[
1
]
=
'\\'
;
/* change \??\ to \\?\ */
#else
static
const
WCHAR
dataW
[]
=
{
'X'
,
'D'
,
'G'
,
'_'
,
'D'
,
'A'
,
'T'
,
'A'
,
'_'
,
'H'
,
'O'
,
'M'
,
'E'
,
0
};
static
const
WCHAR
infoW
[]
=
{
'\\'
,
'i'
,
'n'
,
'f'
,
'o'
,
0
};
static
const
WCHAR
filesW
[]
=
{
'\\'
,
'f'
,
'i'
,
'l'
,
'e'
,
's'
,
0
};
static
const
WCHAR
home_fmtW
[]
=
{
'%'
,
's'
,
'/'
,
'.'
,
'l'
,
'o'
,
'c'
,
'a'
,
'l'
,
'/'
,
's'
,
'h'
,
'a'
,
'r'
,
'e'
,
'/'
,
'T'
,
'r'
,
'a'
,
's'
,
'h'
,
0
};
static
const
WCHAR
config_fmtW
[]
=
{
'\\'
,
'?'
,
'?'
,
'\\'
,
'u'
,
'n'
,
'i'
,
'x'
,
'%'
,
's'
,
'/'
,
'T'
,
'r'
,
'a'
,
's'
,
'h'
,
0
};
const
WCHAR
*
fmt
=
config_fmtW
;
WCHAR
*
p
;
ULONG
len
;
ULONG
len
;
if
(
!
GetEnvironmentVariableW
(
dataW
,
var
+
8
,
MAX_PATH
-
8
)
||
!
var
[
8
])
if
(
!
home
)
return
TRUE
;
if
(
is_macos
())
{
{
if
(
!
GetEnvironmentVariableW
(
homedirW
,
var
,
MAX_PATH
))
return
TRUE
;
static
const
WCHAR
trashW
[]
=
{
'\\'
,
'.'
,
'T'
,
'r'
,
'a'
,
's'
,
'h'
,
0
};
fmt
=
home_fmtW
;
files
=
heap_alloc
(
(
lstrlenW
(
home
)
+
lstrlenW
(
trashW
)
+
1
)
*
sizeof
(
WCHAR
)
);
lstrcpyW
(
files
,
home
);
lstrcatW
(
files
,
trashW
);
files
[
1
]
=
'\\'
;
/* change \??\ to \\?\ */
}
else
{
const
WCHAR
*
data_home
=
_wgetenv
(
L"XDG_DATA_HOME"
);
const
WCHAR
*
fmt
=
L"%s/.local/share/Trash"
;
WCHAR
*
p
;
if
(
data_home
&&
data_home
[
0
]
==
'/'
)
{
home
=
data_home
;
fmt
=
L"
\\
??
\\
unix%s/Trash"
;
}
len
=
lstrlenW
(
home
)
+
lstrlenW
(
fmt
)
+
7
;
files
=
heap_alloc
(
len
*
sizeof
(
WCHAR
)
);
swprintf
(
files
,
len
,
fmt
,
home
);
files
[
1
]
=
'\\'
;
/* change \??\ to \\?\ */
for
(
p
=
files
;
*
p
;
p
++
)
if
(
*
p
==
'/'
)
*
p
=
'\\'
;
CreateDirectoryW
(
files
,
NULL
);
info
=
heap_alloc
(
len
*
sizeof
(
WCHAR
)
);
lstrcpyW
(
info
,
files
);
lstrcatW
(
files
,
L"
\\
files"
);
lstrcatW
(
info
,
L"
\\
info"
);
if
(
!
CreateDirectoryW
(
info
,
NULL
)
&&
GetLastError
()
!=
ERROR_ALREADY_EXISTS
)
goto
done
;
trash_info_dir
=
info
;
}
}
len
=
lstrlenW
(
var
)
+
lstrlenW
(
fmt
)
+
lstrlenW
(
filesW
)
+
1
;
files
=
heap_alloc
(
len
*
sizeof
(
WCHAR
)
);
swprintf
(
files
,
len
,
fmt
,
var
);
files
[
1
]
=
'\\'
;
/* change \??\ to \\?\ */
for
(
p
=
files
;
*
p
;
p
++
)
if
(
*
p
==
'/'
)
*
p
=
'\\'
;
CreateDirectoryW
(
files
,
NULL
);
info
=
heap_alloc
(
len
*
sizeof
(
WCHAR
)
);
lstrcpyW
(
info
,
files
);
lstrcatW
(
files
,
filesW
);
lstrcatW
(
info
,
infoW
);
if
(
!
CreateDirectoryW
(
info
,
NULL
)
&&
GetLastError
()
!=
ERROR_ALREADY_EXISTS
)
goto
done
;
trash_info_dir
=
info
;
#endif
if
(
!
CreateDirectoryW
(
files
,
NULL
)
&&
GetLastError
()
!=
ERROR_ALREADY_EXISTS
)
goto
done
;
if
(
!
CreateDirectoryW
(
files
,
NULL
)
&&
GetLastError
()
!=
ERROR_ALREADY_EXISTS
)
goto
done
;
trash_dir
=
files
;
trash_dir
=
files
;
...
...
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