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:25:18 +0400
committerArmada <jules.blok@gmail.com>2013-02-02 02:42:37 +0400
commitd0a74937a8315104a46b62968b1a30bf2bac959f (patch)
tree135646586cc15a66b48f8be2696ee51b7a7fcb8f /Mediatype.cpp
parent19b94b05379e04858b8ff38f48964a9f4c29056f (diff)
Renamed classes to use less generic names.
Allows for easier integration by reducing conflicts.
Diffstat (limited to 'Mediatype.cpp')
-rw-r--r--Mediatype.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mediatype.cpp b/Mediatype.cpp
index 2bfd536..611888b 100644
--- a/Mediatype.cpp
+++ b/Mediatype.cpp
@@ -123,7 +123,7 @@ static int parseCheckBytes (wchar_t *valueData, CheckByteDetails **checkBytes)
/* parses the HKEY_CLASSES_ROOT\Media Type registry key and
fills the mediaTypeList with all valid byte marks and their
corresponding major/subtypes */
-int getMediaTypeList (List<MediaType> *mediaTypeList)
+int getMediaTypeList (CRFSList<MediaType> *mediaTypeList)
{
//these values come from http://msdn.microsoft.com/en-us/library/ms724872(VS.85).aspx
#define MAX_VALUE_SIZE 16384
@@ -243,7 +243,7 @@ int getMediaTypeList (List<MediaType> *mediaTypeList)
return mediaTypeCount;
}
-int checkFileForMediaType (File *file, List<MediaType> *mediaTypeList, MediaType **foundMediaType)
+int checkFileForMediaType (CRFSFile *file, CRFSList<MediaType> *mediaTypeList, MediaType **foundMediaType)
{
MediaType *mt;
CheckByteGroup *cbg;