forked from mia/Aegisub
change __stdcall to FFMS_CC, should improve portability
Originally committed to SVN as r2397.
This commit is contained in:
parent
87b91ea3ec
commit
dde0214246
2 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@
|
|||
|
||||
///////////////
|
||||
// Update indexing progress
|
||||
int __stdcall FFmpegSourceProvider::UpdateIndexingProgress(int State, int64_t Current, int64_t Total, void *Private) {
|
||||
int FFMS_CC FFmpegSourceProvider::UpdateIndexingProgress(int State, int64_t Current, int64_t Total, void *Private) {
|
||||
IndexingProgressDialog *Progress = (IndexingProgressDialog *)Private;
|
||||
|
||||
if (Progress->IndexingCanceled)
|
||||
|
|
|
@ -53,7 +53,7 @@ public:
|
|||
DialogProgress *ProgressDialog;
|
||||
};
|
||||
|
||||
static int __stdcall UpdateIndexingProgress(int State, int64_t Current, int64_t Total, void *Private);
|
||||
static int FFMS_CC UpdateIndexingProgress(int State, int64_t Current, int64_t Total, void *Private);
|
||||
FrameIndex *DoIndexing(FrameIndex *Index, wxString Filename, wxString Cachename, int Trackmask, bool IgnoreDecodeErrors);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue