Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/rarfilesource.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmada <jules.blok@gmail.com>2013-02-02 00:08:54 +0400
committerArmada <jules.blok@gmail.com>2013-02-02 02:42:36 +0400
commit176b5781b88aa0837899ed1ccaf218f3fc48c01b (patch)
tree5b12671b5062c2b572913b843331b2e54e218470
parent67ad7aa1676f7d5c0b1275bc1dc4e5c5db9ee621 (diff)
Make CRARFileSource constructor public.
-rw-r--r--RFS.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/RFS.h b/RFS.h
index 6a8ed45..b08bf8a 100644
--- a/RFS.h
+++ b/RFS.h
@@ -30,6 +30,9 @@ class CRARFileSource :
public IFileSourceFilter
{
public:
+ CRARFileSource (LPUNKNOWN punk, HRESULT *phr);
+ ~CRARFileSource ();
+
DECLARE_IUNKNOWN;
static CUnknown * WINAPI CreateInstance (LPUNKNOWN punk, HRESULT *phr);
@@ -46,9 +49,6 @@ public:
STDMETHODIMP GetCurFile (LPOLESTR *ppszFileName, AM_MEDIA_TYPE *pmt);
private:
- CRARFileSource (LPUNKNOWN punk, HRESULT *phr);
- ~CRARFileSource ();
-
static void UpdateArchiveName (wchar_t *ext, size_t len, int volume, bool new_numbering);
int ScanArchive (wchar_t *archive_name, List<File> *file_list, int *known_files_found);
static INT_PTR CALLBACK DlgFileList (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);