From 539c0488661c6f7539eca5f3474f909414542a0d Mon Sep 17 00:00:00 2001 From: bossiel Date: Sun, 28 Jul 2013 04:32:17 +0000 Subject: [PATCH] Add version info in all standalone plugins --- branches/2.0/doubango/bindings/version.rc | 8 +- .../plugins/pluginCUDA/pluginCUDA.vcproj | 4 + .../pluginCUDA/plugin_cuda_codec_h264.cxx | 36 ++++--- .../doubango/plugins/pluginCUDA/version.rc | 102 ++++++++++++++++++ .../pluginDirectShow/pluginDirectShow.vcproj | 8 ++ .../plugins/pluginDirectShow/version.rc | 102 ++++++++++++++++++ .../plugins/pluginWASAPI/pluginWASAPI.vcproj | 4 + .../doubango/plugins/pluginWASAPI/version.rc | 102 ++++++++++++++++++ .../pluginWinAudioDSP.vcproj | 48 ++++++++- .../plugins/pluginWinAudioDSP/version.rc | 102 ++++++++++++++++++ .../plugins/pluginWinMF/pluginWinMF.vcproj | 4 + .../doubango/plugins/pluginWinMF/version.rc | 102 ++++++++++++++++++ branches/2.0/doubango/tinyDAV/src/tdav.c | 2 +- branches/2.0/doubango/tinyDAV/version.rc | 8 +- branches/2.0/doubango/tinyHTTP/version.rc | 8 +- branches/2.0/doubango/tinyIPSec/version.rc | 8 +- branches/2.0/doubango/tinyMEDIA/version.rc | 8 +- branches/2.0/doubango/tinyMSRP/version.rc | 8 +- branches/2.0/doubango/tinyNET/version.rc | 8 +- branches/2.0/doubango/tinyRTP/version.rc | 8 +- branches/2.0/doubango/tinySAK/version.rc | 8 +- branches/2.0/doubango/tinySDP/version.rc | 8 +- branches/2.0/doubango/tinySIGCOMP/version.rc | 8 +- branches/2.0/doubango/tinySIP/version.rc | 8 +- branches/2.0/doubango/tinySMS/version.rc | 8 +- branches/2.0/doubango/tinyXCAP/version.rc | 8 +- branches/2.0/doubango/version_w32.sh | 9 +- 27 files changed, 663 insertions(+), 74 deletions(-) create mode 100644 branches/2.0/doubango/plugins/pluginCUDA/version.rc create mode 100644 branches/2.0/doubango/plugins/pluginDirectShow/version.rc create mode 100644 branches/2.0/doubango/plugins/pluginWASAPI/version.rc create mode 100644 branches/2.0/doubango/plugins/pluginWinAudioDSP/version.rc create mode 100644 branches/2.0/doubango/plugins/pluginWinMF/version.rc diff --git a/branches/2.0/doubango/bindings/version.rc b/branches/2.0/doubango/bindings/version.rc index 487bb06f..a207a500 100644 --- a/branches/2.0/doubango/bindings/version.rc +++ b/branches/2.0/doubango/bindings/version.rc @@ -53,8 +53,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,0,0,835 - PRODUCTVERSION 2,0,0,835 + FILEVERSION 2,0,0,962 + PRODUCTVERSION 2,0,0,962 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -71,12 +71,12 @@ BEGIN BEGIN VALUE "CompanyName", "Doubango telecom" VALUE "FileDescription", "Doubango IMS Framework" - VALUE "FileVersion", "2.0.0.835" + VALUE "FileVersion", "2.0.0.962" VALUE "InternalName", "tinywrap.dll" VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved." VALUE "OriginalFilename", "tinywrap.dll" VALUE "ProductName", "Doubango IMS Framework" - VALUE "ProductVersion", "2.0.0.835" + VALUE "ProductVersion", "2.0.0.962" END END BLOCK "VarFileInfo" diff --git a/branches/2.0/doubango/plugins/pluginCUDA/pluginCUDA.vcproj b/branches/2.0/doubango/plugins/pluginCUDA/pluginCUDA.vcproj index 90e85f13..d0d13a46 100644 --- a/branches/2.0/doubango/plugins/pluginCUDA/pluginCUDA.vcproj +++ b/branches/2.0/doubango/plugins/pluginCUDA/pluginCUDA.vcproj @@ -214,6 +214,10 @@ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav" UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}" > + + diff --git a/branches/2.0/doubango/plugins/pluginCUDA/plugin_cuda_codec_h264.cxx b/branches/2.0/doubango/plugins/pluginCUDA/plugin_cuda_codec_h264.cxx index cbed27ca..61d4e994 100644 --- a/branches/2.0/doubango/plugins/pluginCUDA/plugin_cuda_codec_h264.cxx +++ b/branches/2.0/doubango/plugins/pluginCUDA/plugin_cuda_codec_h264.cxx @@ -347,7 +347,8 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da return 0; } - if(!self->opened || !h264->encoder.pInst /*|| !h264->decoder.pInst->IsReady()*/){ + if(!self->opened || !h264->encoder.pInst) + { TSK_DEBUG_ERROR("Decoder not opened or not ready"); return 0; } @@ -355,7 +356,8 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da HRESULT hr = S_OK; /* Packet lost? */ - if((h264->decoder.last_seq + 1) != rtp_hdr->seq_num && h264->decoder.last_seq){ + if((h264->decoder.last_seq + 1) != rtp_hdr->seq_num && h264->decoder.last_seq) + { TSK_DEBUG_INFO("[H.264] Packet loss, seq_num=%d", (h264->decoder.last_seq + 1)); } h264->decoder.last_seq = rtp_hdr->seq_num; @@ -368,7 +370,8 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da |F|NRI| Type | +---------------+ */ - if(*((uint8_t*)in_data) & 0x80){ + if(*((uint8_t*)in_data) & 0x80) + { TSK_DEBUG_WARN("F=1"); /* reset accumulator */ h264->decoder.accumulator = 0; @@ -376,7 +379,8 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da } /* get payload */ - if((ret = tdav_codec_h264_get_pay(in_data, in_size, (const void**)&pay_ptr, &pay_size, &append_scp)) || !pay_ptr || !pay_size){ + if((ret = tdav_codec_h264_get_pay(in_data, in_size, (const void**)&pay_ptr, &pay_size, &append_scp)) || !pay_ptr || !pay_size) + { TSK_DEBUG_ERROR("Depayloader failed to get H.264 content"); return 0; } @@ -386,24 +390,30 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da sps_or_pps = append_scp && pay_ptr && ((pay_ptr[0] & 0x1F) == 7 || (pay_ptr[0] & 0x1F) == 8); // start-accumulator - if(!h264->decoder.accumulator){ - if(size_to_copy > xmax_size){ + if(!h264->decoder.accumulator) + { + if(size_to_copy > xmax_size) + { TSK_DEBUG_ERROR("%u too big to contain valid encoded data. xmax_size=%u", size_to_copy, xmax_size); return 0; } - if(!(h264->decoder.accumulator = tsk_calloc(size_to_copy, sizeof(uint8_t)))){ + if(!(h264->decoder.accumulator = tsk_calloc(size_to_copy, sizeof(uint8_t)))) + { TSK_DEBUG_ERROR("Failed to allocated new buffer"); return 0; } h264->decoder.accumulator_size = size_to_copy; } - if((h264->decoder.accumulator_pos + size_to_copy) >= xmax_size){ + if((h264->decoder.accumulator_pos + size_to_copy) >= xmax_size) + { TSK_DEBUG_ERROR("BufferOverflow"); h264->decoder.accumulator_pos = 0; return 0; } - if((h264->decoder.accumulator_pos + size_to_copy) > h264->decoder.accumulator_size){ - if(!(h264->decoder.accumulator = tsk_realloc(h264->decoder.accumulator, (h264->decoder.accumulator_pos + size_to_copy)))){ + if((h264->decoder.accumulator_pos + size_to_copy) > h264->decoder.accumulator_size) + { + if(!(h264->decoder.accumulator = tsk_realloc(h264->decoder.accumulator, (h264->decoder.accumulator_pos + size_to_copy)))) + { TSK_DEBUG_ERROR("Failed to reallocated new buffer"); h264->decoder.accumulator_pos = 0; h264->decoder.accumulator_size = 0; @@ -412,7 +422,8 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da h264->decoder.accumulator_size = (h264->decoder.accumulator_pos + size_to_copy); } - if(append_scp){ + if(append_scp) + { memcpy(&((uint8_t*)h264->decoder.accumulator)[h264->decoder.accumulator_pos], H264_START_CODE_PREFIX, start_code_prefix_size); h264->decoder.accumulator_pos += start_code_prefix_size; } @@ -420,6 +431,7 @@ static tsk_size_t cuda_codec_h264_decode(tmedia_codec_t* self, const void* in_da h264->decoder.accumulator_pos += pay_size; // end-accumulator + if(sps_or_pps) { // http://libav-users.943685.n4.nabble.com/Decode-H264-streams-how-to-fill-AVCodecContext-from-SPS-PPS-td2484472.html @@ -723,7 +735,7 @@ int cuda_codec_h264_open_encoder(cuda_codec_h264_t* self) self->encoder.ctxParams.iPictureType = (int)FRAME_PICTURE; self->encoder.ctxParams.Fieldmode = MODE_FRAME; self->encoder.ctxParams.Presets = (NVVE_PRESETS_TARGET)-1;//Should be iPod, Zune ... - self->encoder.ctxParams.iP_Interval = 1; + // self->encoder.ctxParams.iP_Interval = 1; self->encoder.ctxParams.iAspectRatio[0] = 1; self->encoder.ctxParams.iAspectRatio[1] = 1; self->encoder.ctxParams.iAspectRatio[2] = 0; diff --git a/branches/2.0/doubango/plugins/pluginCUDA/version.rc b/branches/2.0/doubango/plugins/pluginCUDA/version.rc new file mode 100644 index 00000000..9733a42a --- /dev/null +++ b/branches/2.0/doubango/plugins/pluginCUDA/version.rc @@ -0,0 +1,102 @@ +// Microsoft Visual C++ generated resource script. +// +// #include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "afxres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (U.S.) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page(1252) +#endif //_WIN32 + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""afxres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 2,0,0,962 + PRODUCTVERSION 2,0,0,962 + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "CompanyName", "Doubango Telecom" + VALUE "FileDescription", "Doubango IMS Framework NVIDIA CUDA Plugin" + VALUE "FileVersion", "2.0.0.962" + VALUE "InternalName", "pluginCUDA.dll" + VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved." + VALUE "OriginalFilename", "pluginCUDA.dll" + VALUE "ProductName", "Doubango IMS Framework NVIDIA CUDA Plugin" + VALUE "ProductVersion", "2.0.0.962" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif // English (U.S.) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/branches/2.0/doubango/plugins/pluginDirectShow/pluginDirectShow.vcproj b/branches/2.0/doubango/plugins/pluginDirectShow/pluginDirectShow.vcproj index ee61c3c8..3045f242 100644 --- a/branches/2.0/doubango/plugins/pluginDirectShow/pluginDirectShow.vcproj +++ b/branches/2.0/doubango/plugins/pluginDirectShow/pluginDirectShow.vcproj @@ -333,6 +333,14 @@ + + + + diff --git a/branches/2.0/doubango/plugins/pluginDirectShow/version.rc b/branches/2.0/doubango/plugins/pluginDirectShow/version.rc new file mode 100644 index 00000000..6cba877c --- /dev/null +++ b/branches/2.0/doubango/plugins/pluginDirectShow/version.rc @@ -0,0 +1,102 @@ +// Microsoft Visual C++ generated resource script. +// +// #include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "afxres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (U.S.) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page(1252) +#endif //_WIN32 + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""afxres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 2,0,0,962 + PRODUCTVERSION 2,0,0,962 + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "CompanyName", "Doubango Telecom" + VALUE "FileDescription", "Doubango IMS Framework DirectShow Plugin" + VALUE "FileVersion", "2.0.0.962" + VALUE "InternalName", "pluginDirectShow.dll" + VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved." + VALUE "OriginalFilename", "pluginDirectShow.dll" + VALUE "ProductName", "Doubango IMS Framework DirectShow Plugin" + VALUE "ProductVersion", "2.0.0.962" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif // English (U.S.) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/branches/2.0/doubango/plugins/pluginWASAPI/pluginWASAPI.vcproj b/branches/2.0/doubango/plugins/pluginWASAPI/pluginWASAPI.vcproj index 7358dfce..89f3147e 100644 --- a/branches/2.0/doubango/plugins/pluginWASAPI/pluginWASAPI.vcproj +++ b/branches/2.0/doubango/plugins/pluginWASAPI/pluginWASAPI.vcproj @@ -216,6 +216,10 @@ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav" UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}" > + + diff --git a/branches/2.0/doubango/plugins/pluginWASAPI/version.rc b/branches/2.0/doubango/plugins/pluginWASAPI/version.rc new file mode 100644 index 00000000..288a3e9d --- /dev/null +++ b/branches/2.0/doubango/plugins/pluginWASAPI/version.rc @@ -0,0 +1,102 @@ +// Microsoft Visual C++ generated resource script. +// +// #include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "afxres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (U.S.) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page(1252) +#endif //_WIN32 + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""afxres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 2,0,0,962 + PRODUCTVERSION 2,0,0,962 + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "CompanyName", "Doubango Telecom" + VALUE "FileDescription", "Doubango IMS Framework WASAPI Plugin" + VALUE "FileVersion", "2.0.0.962" + VALUE "InternalName", "pluginWASAPI.dll" + VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved." + VALUE "OriginalFilename", "pluginWASAPI.dll" + VALUE "ProductName", "Doubango IMS Framework WASAPI Plugin" + VALUE "ProductVersion", "2.0.0.962" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif // English (U.S.) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/branches/2.0/doubango/plugins/pluginWinAudioDSP/pluginWinAudioDSP.vcproj b/branches/2.0/doubango/plugins/pluginWinAudioDSP/pluginWinAudioDSP.vcproj index 1e02c237..a02e30e5 100644 --- a/branches/2.0/doubango/plugins/pluginWinAudioDSP/pluginWinAudioDSP.vcproj +++ b/branches/2.0/doubango/plugins/pluginWinAudioDSP/pluginWinAudioDSP.vcproj @@ -41,13 +41,15 @@ + + + + + + + + + + + + + + + + + + diff --git a/branches/2.0/doubango/plugins/pluginWinAudioDSP/version.rc b/branches/2.0/doubango/plugins/pluginWinAudioDSP/version.rc new file mode 100644 index 00000000..23f277a5 --- /dev/null +++ b/branches/2.0/doubango/plugins/pluginWinAudioDSP/version.rc @@ -0,0 +1,102 @@ +// Microsoft Visual C++ generated resource script. +// +// #include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "afxres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (U.S.) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page(1252) +#endif //_WIN32 + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""afxres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 2,0,0,962 + PRODUCTVERSION 2,0,0,962 + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "CompanyName", "Doubango Telecom" + VALUE "FileDescription", "Doubango IMS Framework Windows Audio DSP" + VALUE "FileVersion", "2.0.0.962" + VALUE "InternalName", "pluginWinAudioDSP.dll" + VALUE "LegalCopyright", "(c) 2010-2013 Doubango Telecom. All rights reserved." + VALUE "OriginalFilename", "pluginWinAudioDSP.dll" + VALUE "ProductName", "Doubango IMS Framework Windows Audio DSP" + VALUE "ProductVersion", "2.0.0.962" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif // English (U.S.) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/branches/2.0/doubango/plugins/pluginWinMF/pluginWinMF.vcproj b/branches/2.0/doubango/plugins/pluginWinMF/pluginWinMF.vcproj index 6b3333bd..b607afee 100644 --- a/branches/2.0/doubango/plugins/pluginWinMF/pluginWinMF.vcproj +++ b/branches/2.0/doubango/plugins/pluginWinMF/pluginWinMF.vcproj @@ -276,6 +276,10 @@ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav" UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}" > + +