Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
cd7e38e7
Commit
cd7e38e7
authored
Oct 10, 2008
by
Geoffroy Couprie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WinCE: build dump and timeshift modules
parent
4c11c094
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
modules/access_filter/dump.c
modules/access_filter/dump.c
+5
-0
modules/access_filter/timeshift.c
modules/access_filter/timeshift.c
+2
-2
No files found.
modules/access_filter/dump.c
View file @
cd7e38e7
...
...
@@ -114,7 +114,12 @@ static int Open (vlc_object_t *obj)
return
VLC_ENOMEM
;
memset
(
p_sys
,
0
,
sizeof
(
*
p_sys
));
# ifndef UNDER_CE
if
((
p_sys
->
stream
=
tmpfile
())
==
NULL
)
# else
char
buf
[
75
];
if
(
GetTempFileName
(
"
\\
Temp
\\
"
,
"vlc"
,
0
,
buf
)
||
((
p_sys
->
stream
=
fopen
(
buf
,
"wb+"
))
==
NULL
))
#endif
{
msg_Err
(
access
,
"cannot create temporary file: %m"
);
free
(
p_sys
);
...
...
modules/access_filter/timeshift.c
View file @
cd7e38e7
...
...
@@ -40,7 +40,7 @@
#include <unistd.h>
#if
def WIN32
#if
defined (WIN32) && !defined (UNDER_CE)
# include <direct.h>
/* _wgetcwd */
#endif
...
...
@@ -579,7 +579,7 @@ static char *GetTmpFilePath( access_t *p_access )
if
(
psz_dir
==
NULL
)
{
#if
def WIN32
#if
defined (WIN32) && !defined (UNDER_CE)
DWORD
ret
=
GetTempPathW
(
0
,
NULL
);
wchar_t
wdir
[
ret
+
3
];
// can at least old "C:" + nul
const
wchar_t
*
pwdir
=
wdir
;
...
...
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