mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
[ICCVID][MSRLE32][MSVIDC32] Add VfW codecs version info (#6118)
Based on KRosUser's vfw.patch. CORE-15382
This commit is contained in:
parent
623e857a43
commit
8be912147b
4 changed files with 27 additions and 0 deletions
|
@ -20,6 +20,14 @@
|
|||
|
||||
#include "iccvid_private.h"
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Cinepak Compressor"
|
||||
#define REACTOS_STR_INTERNAL_NAME "iccvid"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "iccvid.dll"
|
||||
#include <reactos/version.rc>
|
||||
#endif
|
||||
|
||||
/* UTF-8 */
|
||||
#pragma code_page(65001)
|
||||
|
||||
|
|
|
@ -20,6 +20,13 @@
|
|||
|
||||
#include "msrle_private.h"
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS RLE Compressor"
|
||||
#define REACTOS_STR_INTERNAL_NAME "msrle32"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "msrle32.dll"
|
||||
#include <reactos/version.rc>
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Everything specific to any language goes
|
||||
|
|
|
@ -583,7 +583,11 @@ LRESULT WINAPI CRAM_DriverProc( DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg,
|
|||
if( info )
|
||||
{
|
||||
memset( info, 0, sizeof *info );
|
||||
#ifdef __REACTOS__
|
||||
info->dwMagic = MSVC_MAGIC;
|
||||
#else
|
||||
info->dwMagic = CRAM_MAGIC;
|
||||
#endif
|
||||
}
|
||||
r = (LRESULT) info;
|
||||
break;
|
||||
|
|
|
@ -18,6 +18,14 @@
|
|||
|
||||
#include "msvidc32_private.h"
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Video 1 Compressor"
|
||||
#define REACTOS_STR_INTERNAL_NAME "msvidc32"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "msvidc32.dll"
|
||||
#include <reactos/version.rc>
|
||||
#endif
|
||||
|
||||
/* UTF-8 */
|
||||
#pragma code_page(65001)
|
||||
|
||||
|
|
Loading…
Reference in a new issue