forderud / ComSamples

Examples of language-neutral COM interfaces for IPC and language interop.
MIT License
1 stars 2 forks source link

Disable BSTR caching to ease memory management debugging #21

Closed forderud closed 9 months ago

forderud commented 9 months ago
/* Disable BSTR caching to ease memory management debugging.
   REF: https://docs.microsoft.com/en-us/previous-versions/windows/desktop/automat/setoanocache */
extern "C" void SetOaNoCache ();

Add to startup code:

#ifndef NDEBUG
        SetOaNoCache();
#endif
forderud commented 9 months ago

Done in 48c92f877109532f1c16789cee66c4bb7ff040a0