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
f84dd14d
Commit
f84dd14d
authored
May 19, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: more dialogs when submitting the bug reports
Close #4798
parent
1fe559b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
bin/winvlc.c
bin/winvlc.c
+13
-1
No files found.
bin/winvlc.c
View file @
f84dd14d
...
...
@@ -236,13 +236,25 @@ static void check_crashdump()
swprintf
(
remote_file
,
L"/crashs/%04d%02d%02d%02d%02d%02d"
,
now
.
wYear
,
now
.
wMonth
,
now
.
wDay
,
now
.
wHour
,
now
.
wMinute
,
now
.
wSecond
);
FtpPutFile
(
ftp
,
wdir
,
remote_file
,
FTP_TRANSFER_TYPE_BINARY
,
0
);
if
(
FtpPutFile
(
ftp
,
wdir
,
remote_file
,
FTP_TRANSFER_TYPE_BINARY
,
0
)
)
MessageBox
(
NULL
,
L"Report sent correctly. Thanks a lot for the help."
,
L"Report sent"
,
MB_OK
);
else
MessageBox
(
NULL
,
L"There was an issue while transferring to the FTP server. "
\
"Thanks a lot for the help anyway."
,
L"Report sent"
,
MB_OK
);
InternetCloseHandle
(
ftp
);
}
else
fprintf
(
stderr
,
"Can't connect to FTP server%d
\n
"
,
GetLastError
());
InternetCloseHandle
(
Hint
);
}
else
{
MessageBox
(
NULL
,
L"There was an issue while connecting to Internet. "
\
"Thanks a lot for the help anyway."
,
L"Report sent"
,
MB_OK
);
}
}
_wremove
(
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