Compare commits

..

No commits in common. "b725d2f0e0e22ca9aa3d38e30591cd65467ea762" and "5ffe72cab39697096c631ee98bdc0b660f6ea7da" have entirely different histories.

5 changed files with 5 additions and 29 deletions

View file

@ -1,8 +1,8 @@
WIN32_MODULE_COMPANYNAME=@MOZ_APP_VENDOR@ WIN32_MODULE_COMPANYNAME=@MOZ_APP_VENDOR@
WIN32_MODULE_COPYRIGHT=<EFBFBD>Dactyloidae Project, Eclipse Community, Basilisk and Mozilla Developers; available under the MPL 2 license. WIN32_MODULE_COPYRIGHT=©Eclipse Community, Basilisk and Mozilla Developers; available under the MPL 2 license.
WIN32_MODULE_PRODUCTVERSION=@MOZ_APP_WINVERSION@ WIN32_MODULE_PRODUCTVERSION=@MOZ_APP_WINVERSION@
WIN32_MODULE_PRODUCTVERSION_STRING=@MOZ_APP_VERSION@ WIN32_MODULE_PRODUCTVERSION_STRING=@MOZ_APP_VERSION@
WIN32_MODULE_TRADEMARKS=The Dactyloidae logo and project names are trademarks of Eclipse Community and Dactyloidae Project. WIN32_MODULE_TRADEMARKS=The Hydra logo and project names are trademarks of Eclipse Community.
WIN32_MODULE_DESCRIPTION=@MOZ_APP_DISPLAYNAME@ WIN32_MODULE_DESCRIPTION=@MOZ_APP_DISPLAYNAME@ web browser
WIN32_MODULE_PRODUCTNAME=@MOZ_APP_DISPLAYNAME@ WIN32_MODULE_PRODUCTNAME=@MOZ_APP_DISPLAYNAME@
WIN32_MODULE_NAME=@MOZ_APP_DISPLAYNAME@ WIN32_MODULE_NAME=@MOZ_APP_DISPLAYNAME@

View file

@ -938,12 +938,6 @@ BOOL WINAPI revert_mm_thread_characteristics_noop(HANDLE mmcss_handle)
HRESULT register_notification_client(cubeb_stream * stm) HRESULT register_notification_client(cubeb_stream * stm)
{ {
#if defined(__MINGW32__)
// MinGW builds have shown crashes in MMDevApi callback dispatch paths.
// Skip notification registration and rely on normal stream operation.
(void)stm;
return S_OK;
#else
HRESULT hr = CoCreateInstance(__uuidof(MMDeviceEnumerator), HRESULT hr = CoCreateInstance(__uuidof(MMDeviceEnumerator),
NULL, CLSCTX_INPROC_SERVER, NULL, CLSCTX_INPROC_SERVER,
IID_PPV_ARGS(&stm->device_enumerator)); IID_PPV_ARGS(&stm->device_enumerator));
@ -964,15 +958,10 @@ HRESULT register_notification_client(cubeb_stream * stm)
} }
return hr; return hr;
#endif
} }
HRESULT unregister_notification_client(cubeb_stream * stm) HRESULT unregister_notification_client(cubeb_stream * stm)
{ {
#if defined(__MINGW32__)
(void)stm;
return S_OK;
#else
XASSERT(stm); XASSERT(stm);
HRESULT hr; HRESULT hr;
@ -992,7 +981,6 @@ HRESULT unregister_notification_client(cubeb_stream * stm)
SafeRelease(stm->device_enumerator); SafeRelease(stm->device_enumerator);
return S_OK; return S_OK;
#endif
} }
HRESULT get_endpoint(IMMDevice ** device, LPCWSTR devid) HRESULT get_endpoint(IMMDevice ** device, LPCWSTR devid)

View file

@ -67,7 +67,7 @@ if CONFIG['OS_TARGET'] == 'WINNT':
'cubeb_winmm.c', 'cubeb_winmm.c',
] ]
DEFINES['USE_WINMM'] = True DEFINES['USE_WINMM'] = True
if CONFIG['MOZ_SAMPLE_TYPE_FLOAT32'] and not CONFIG['GNU_CC']: if CONFIG['MOZ_SAMPLE_TYPE_FLOAT32']:
DEFINES['USE_WASAPI'] = True DEFINES['USE_WASAPI'] = True
SOURCES += [ SOURCES += [
'cubeb_wasapi.cpp', 'cubeb_wasapi.cpp',

View file

@ -851,12 +851,7 @@ MozDescribeCodeAddress(void* aPC, MozCodeAddressDetails* aDetails)
pSymbol->MaxNameLen = MAX_SYM_NAME; pSymbol->MaxNameLen = MAX_SYM_NAME;
DWORD64 displacement; DWORD64 displacement;
#ifdef __MINGW32__
// SymFromAddr is not available in MinGW dbghelp.dll
ok = FALSE;
#else
ok = SymFromAddr(myProcess, addr, &displacement, pSymbol); ok = SymFromAddr(myProcess, addr, &displacement, pSymbol);
#endif
if (ok) { if (ok) {
strncpy(aDetails->function, pSymbol->Name, strncpy(aDetails->function, pSymbol->Name,

View file

@ -8,14 +8,7 @@
#include "secerr.h" #include "secerr.h"
#include "secasn1.h" /* for SEC_ASN1GetSubtemplate */ #include "secasn1.h" /* for SEC_ASN1GetSubtemplate */
#include "secitem.h"
#if defined(_WIN32) && !defined(_WIN64)
static __inline void* Win2000_EncodePointer(void* p) { return p; }
static __inline void* Win2000_DecodePointer(void* p) { return p; }
#define EncodePointer(p) Win2000_EncodePointer(p)
#define DecodePointer(p) Win2000_DecodePointer(p)
#endif
/* /*
* simple definite-length ASN.1 decoder * simple definite-length ASN.1 decoder