User Henk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T12:26:44Z http://stackoverflow.com/feeds/user/4613 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/525803/how-can-i-trust-the-behavior-of-c-functions-that-declare-const/525895#525895 2 Answer by Henk for How can I trust the behavior of C++ functions that declare const? Henk 2009-02-08T15:24:27Z 2009-02-08T15:24:27Z <p>The only thing I can suggest is to allocate the variable <code>shouldNotChange</code> from a memory page that is marked as read-only. This will force the OS/CPU to raise an error if the application attempts to write to that memory. I don't really recommend this as a general method of validating functions just as an idea you may find useful.</p> http://stackoverflow.com/questions/490487/returning-a-reference-from-a-constant-function/490495#490495 2 Answer by Henk for Returning a reference from a constant function Henk 2009-01-29T04:42:02Z 2009-01-29T04:42:02Z <p>The return type of <code>getVec()</code> needs to be <code>const std::vector&lt;ABC&gt;&amp;</code>.</p> http://stackoverflow.com/questions/449436/singleton-instance-declared-as-static-variable-of-getinstance-method/449681#449681 4 Answer by Henk for Singleton instance declared as static variable of GetInstance method Henk 2009-01-16T06:32:39Z 2009-01-16T06:32:39Z <p>It is not thread safe as shown. The C++ language is silent on threads so you have no inherent guarantees from the language. You will have to use platform synchronization primitives, e.g. Win32 ::EnterCriticalSection(), to protect access.</p> <p>Your particular approach would be problematic b/c the compiler will insert some (non-thread safe) code to initialize the static <code>instance</code> on first invocation, most likely it will be before the function body begins execution (and hence before any synchronization can be invoked.)</p> <p>Using a global/static member pointer to <code>SomeClass</code> and then initializing within a synchronized block would prove less problematic to implement.</p> <pre><code>#include &lt;boost/shared_ptr.hpp&gt; namespace { //Could be implemented as private member of SomeClass instead.. boost::shared_ptr&lt;SomeClass&gt; g_instance; } SomeBaseClass &amp;SomeClass::GetInstance() { //Synchronize me e.g. ::EnterCriticalSection() if(g_instance == NULL) g_instance = boost::shared_ptr&lt;SomeClass&gt;(new SomeClass()); //Unsynchronize me e.g. :::LeaveCriticalSection(); return *g_instance; } </code></pre> <p>I haven't compiled this so it's for illustrative purposes only. It also relies on the boost library to obtain the same lifetime (or there about) as your original example. You can also use std::tr1 (C++0x).</p> http://stackoverflow.com/questions/433274/c-parameters-value-changes-between-stack-frames-in-stdvector/433362#433362 0 Answer by Henk for C++ Parameter's Value Changes Between Stack Frames in std::vector Henk 2009-01-11T18:25:34Z 2009-01-11T18:25:34Z <p>I suggest reviewing the C++ options configured for the projects involved. Ensure that they all share the same alignment and run-time settings. Are you building the .DLL involved?</p> http://stackoverflow.com/questions/427180/how-to-create-a-guid-uuid-using-the-iphone-sdk/427222#427222 12 Answer by Henk for How to create a GUID/UUID using the iPhone SDK Henk 2009-01-09T06:14:32Z 2009-01-09T06:14:32Z <p>Reviewing the Apple Developer documentation I found the <a href="http://developer.apple.com/iphone/library/documentation/CoreFoundation/Reference/CFUUIDRef/Reference/reference.html" rel="nofollow">CFUUID</a> object is available on the iPhone OS 2.0 and later. </p> http://stackoverflow.com/questions/415199/constcast-for-vector-with-object/415254#415254 1 Answer by Henk for const_cast for vector with object Henk 2009-01-06T02:38:46Z 2009-01-06T02:44:42Z <p>I believe this is the statement your looking for:</p> <p><code>const_cast&lt;std::vector&lt;Object&gt;&amp;&gt; (objectVec)</code> this will return a reference to a non-const <code>std::vector</code> which should be palatable to foo1 (I'm assuming).</p> <p>Modifying your original example:</p> <pre><code>foo(const std::vector&lt;Object&gt; &amp; objectVec) { ... foo1(const_cast&lt;std::vector&lt;Object&gt; &amp;&gt;(objectVec)); } </code></pre> <p>However I do recommend looking at the actual requirements of <code>foo1</code> that require it to use a non-const vector as you seem to be indicating that all your interested in is modifying the <code>Object</code> instances themselves.</p> http://stackoverflow.com/questions/414761/how-do-i-reference-a-dll-in-a-vc-project/414815#414815 1 Answer by Henk for How do I reference a DLL in a VC++ project Henk 2009-01-05T22:57:28Z 2009-01-05T22:57:28Z <p>You can place the DLL in the same path as the referencing file (.h) as you have done, alternatively you can modify the additional include paths for the LIB section of your project(s). In VC++ this will be:</p> <p>Project | Properties | Configuration Properties | Linker | General | Additional Library Directories</p> <p>This method can be useful if you are centralizing third party dependencies and you don't want to be forced to keeping the referenced file (.h) and DLL in sync via the same path.</p> <p>See this <a href="http://msdn.microsoft.com/en-us/library/8etzzkb6(VS.80).aspx" rel="nofollow">MSDN</a> link for further details.</p> http://stackoverflow.com/questions/413863/propagating-c-exceptions-across-c-stack-frames-on-os-x/414706#414706 0 Answer by Henk for Propagating C++ exceptions across C stack frames on OS X Henk 2009-01-05T22:17:49Z 2009-01-05T22:17:49Z <p>I'm definitely not an expert but from what I can determine; how the C/C++ run-time will behave with respect to C++ exceptions raised in the presence of C functions on the stack is implementation defined.</p> <p>I'm curious as to your use of C++ exceptions as the mechanism to handle missing attributes. Do the C XML libraries support the use of C++ exceptions in this fashion? In other words, are the C run-time resources correctly released in the presence of an exception, given that the libraries are designed for the C language?</p> <p>I would recommend on narrowing down your use of XML libraries to one that supports either C or C++ rather than both so that you can implement one error mechanism.</p> http://stackoverflow.com/questions/409688/multithreaded-paranoia/409749#409749 2 Answer by Henk for Multithreaded paranoia Henk 2009-01-03T20:16:37Z 2009-01-03T20:16:37Z <blockquote> <p>is this ever a problem on real hardware?</p> </blockquote> <p>Absolutely, particularly now with the move to multiple cores for current and future CPUs. If you're dependent on ordered atomicity to implement features in your application and you are unable to guarantee this requirement via your chosen platform or the use of synchronization primitives, under <em>all</em> conditions i.e. customer moves from a single-core CPU to multi-core CPU, then you are just waiting for a problem to occur.</p> <p>Quoting from the referred to Herb Sutter article (second one)</p> <blockquote> <p>Ordered atomic variables are spelled in different ways on popular platforms and environments. For example:</p> <ul> <li><code>volatile</code> in C#/.NET, as in <code>volatile int</code>.</li> <li><code>volatile</code> or * Atomic* in Java, as in <code>volatile int</code>, <code>AtomicInteger</code>.</li> <li><code>atomic&lt;T&gt;</code> in C++0x, the forthcoming ISO C++ Standard, as in <code>atomic&lt;int&gt;</code>.</li> </ul> </blockquote> <p>I have not seen how C++0x implements ordered atomicity so I'm unable to specify whether the upcoming language feature is a pure library implementation or relies on changes to the language also. You could review the proposal to see if it can be incorporated as a non-standard extension to your current tool chain until the new standard is available, it may even be available already for your situation.</p> http://stackoverflow.com/questions/398069/static-member-variable-in-template-with-multiple-dlls/398497#398497 0 Answer by Henk for Static member variable in template, with multiple dlls Henk 2008-12-29T19:52:37Z 2008-12-29T19:52:37Z <p>Prior to <code>extern template</code> instantiations being accepted into the draft standard it appears Microsoft implemented an extension for the VC++ compiler.</p> <p>The VC++ compiler will generate a warning if the non-standard extension is used; VS.NET (2003) and above refer to this <a href="http://msdn.microsoft.com/en-us/library/9d0x3403(VS.71).aspx" rel="nofollow">warning</a> description for details. This warning is also listed against <a href="http://msdn.microsoft.com/en-us/library/aa233865(VS.60).aspx" rel="nofollow">VS 6.0</a>.</p> <p>I personally have never attempted to use this extension so I'm unable to vouch for this suggestion. Obviously I'm restricting this answer to Microsoft Visual Studio (I saw a comment from you regarding Unix) but I post in the hope that it may prove useful.</p> http://stackoverflow.com/questions/391917/jpeg-support-with-ijg-getting-access-violation/393501#393501 1 Answer by Henk for JPEG support with ijg - getting access violation Henk 2008-12-26T05:12:06Z 2008-12-26T05:12:06Z <p>It's difficult to see the cause of the access violation from the code sample given. If you can include a stack trace (with symbols) that would help identify the issue. One thing to verify is that the alignment settings for the .LIB and .EXE projects are consistent, this will often lead to nasty problems as struct/class members are not where the compiler expects them to be.</p> http://stackoverflow.com/questions/350124/using-mapi-w-c-how-can-i-open-another-users-inbox/361199#361199 0 Answer by Henk for Using MAPI w/ C++, how can I open another user's Inbox? Henk 2008-12-11T22:17:03Z 2008-12-11T22:17:03Z <p>I would strongly recommend using the Microsoft Exchange MAPI Client (as you have linked). It is engineered to be far more robust than the Outlook version of these libraries. You should find the API no different between Outlook and Exchange Server with respect to Extended MAPI.</p> <p>You will need to use Extended MAPI (as described by Cain T S Random) to open other mail stores, and of course your application will need to be logged in as the Windows user with appropriate permissions on the Exchange server.</p> http://stackoverflow.com/questions/231885/violation-reading-location-in-stdmap-operator/231895#231895 2 Answer by Henk for Violation reading location in std::map operator[] Henk 2008-10-23T23:09:03Z 2008-10-23T23:36:02Z <p>If multiple threads are invoking the function <code>DoStuff</code> this will mean that the initialization code</p> <pre><code>if (mappedChars.empty()) </code></pre> <p>can enter a race condition. This means thread 1 enters the function, finds the map empty and begins filling it. Thread 2 then enters the function and finds the map non-empty (but not completely initialized) so merrily begins reading it. Because both threads are now in contention, but one is modifying the map structure (i.e inserting nodes), undefined behaviour (a crash) will result.</p> <p>If you use a synchronization primitive prior to checking the map for <code>empty()</code>, and released after the map is guaranteed to have been completely initialized, all will be well.</p> <p>I had a look via <a href="http://blogs.msdn.com/oldnewthing/archive/2004/03/08/85901.aspx" rel="nofollow">Google</a> and indeed static initialization is <strong>not</strong> thread safe. Thus the declaration <code>static mappedChars</code> is immediately an issue. As others have mentioned it would be best if your initialization was done when only 1 thread is guaranteed to be active for the life time of initialization.</p> http://stackoverflow.com/questions/214109/debugging-causing-exceptions/214189#214189 1 Answer by Henk for Debugging causing exceptions? Henk 2008-10-17T23:32:23Z 2008-10-17T23:32:23Z <p>I'm referring to VS2005 but it should be applicable in your case. If you access the IDE <strong>Debug</strong> > <strong>Exceptions..</strong> menu item you can specify the exception types that the IDE debugger should break on when <strong>thrown</strong> which should cause you to see the line the exception was raised by when single stepping through the application.</p> <p>You may need to play around with what types to catch (some 1st chance exceptions are not actually problems) but it will be helpful in identifying the point the exception is raised.</p> http://stackoverflow.com/questions/213952/do-c-static-libraries-without-mfc-that-are-linked-to-an-mfc-project-throw-bada/214093#214093 1 Answer by Henk for Do c++ static libraries without mfc that are linked to an MFC project throw bad_alloc or CMemoryException*? Henk 2008-10-17T22:51:24Z 2008-10-17T22:51:24Z <p>It will depend on the compile options for the static libraries to be linked to the application.</p> <p>If the libraries are compiled with a configuration to use the <strong>static</strong> Standard C++ run-time then I would expect the <code>operator new</code> from the Standard C++ run-time to be called.</p> <p>If libraries are compiled with a configuration to use the Standard C++ run-time <strong>DLL</strong> then the resolution of these functions will be delayed until program load and <em>should</em> be resolved to the MFC replacements of <code>operator new</code>.</p> <p>I also included a link to this Herb Sutter <a href="http://www.gotw.ca/publications/mill16.htm" rel="nofollow">article</a> regarding handle allocation errors that you may find useful.</p> http://stackoverflow.com/questions/210506/tracking-automatic-variable-lifetime/210593#210593 0 Answer by Henk for Tracking automatic variable lifetime? Henk 2008-10-16T23:08:08Z 2008-10-16T23:08:08Z <p>One technique you may find useful is to replace the <code>new</code>/<code>delete</code> operators with your own implementations which mark the memory pages used (allocated by your <code>operator new</code>) as non-accessible when released (deallocated by your <code>operator delete</code>). You will need to ensure that the memory pages are never re-used however so there will be limitations regarding run-time length due to memory exhaustion.</p> <p>If your application accesses memory pages once they've been deallocated, as in your example above, the OS will trap the attempted access and raise an error. It's not exactly tracking per se as the application will be halted immediately but it does provide feedback :-)</p> <p>This technique is applicable in narrow scenarios and won't catch all types of memory abuses but it can be useful. Hope that helps.</p> http://stackoverflow.com/questions/203446/mapi-format-of-prsearchkey/206432#206432 1 Answer by Henk for MAPI: Format of PR_SEARCH_KEY Henk 2008-10-15T20:52:16Z 2008-10-15T20:52:16Z <p>I believe that the property <code>PR_SEARCH_KEY</code> will be of different formats for different objects (as alluded to by Moishe).</p> <p>A MAPI message object will have a unique value assigned on creation for <code>PR_SEARCH_KEY</code>, however if the object is copied this property value is copied also. I presume when you reply to an e-mail, Exchange will assign the <code>PR_SEARCH_KEY</code> value to be the original message's value.</p> <p>You will need to inspect each object type to understand how the <code>PR_SEARCH_KEY</code> is formed but I doubt if it's always 16 bytes for all MAPI types.</p> <p>This link <a href="http://groups.google.com/group/microsoft.public.win32.programmer.messaging/browse_thread/thread/79ff9c1a90fd28b6/93da8a356076e683?lnk=st&amp;q=PR_SEARCH_KEY#93da8a356076e683" rel="nofollow">USENET discussion</a> has a good discussion with Dmitry Streblechenko involved who is an expert on Extended MAPI.</p> http://stackoverflow.com/questions/187216/what-is-the-best-way-for-converting-phone-numbers-into-international-format-e-16/195093#195093 0 Answer by Henk for What is the best way for converting phone numbers into international format (E.164) using Java? Henk 2008-10-12T04:23:14Z 2008-10-12T04:23:14Z <p>I'm not aware of a standard library or framework available for formatting telephone numbers into E.164.</p> <p>The solution used for our product, which requires formatting PBX provided caller-id into E.164, is to deploy a file (database table) containing the E.164 format information for all countries applicable. This has the advantage that the application can be updated (to handle all the strange corner cases in various PSTN networks) w/out requiring changes to the production code base.</p> <p>The table contains a row for each country code and information regarding area code length and subscriber length. There may be multiple entries for a country depending on what variations are possible with area code and subscriber number lengths.</p> <p>Using New Zealand PSTN (partial) dial plan as an example of the table..</p> <pre><code>CC AREA_CODE AREA_CODE_LENGTH SUBSCRIBER SUBSCRIBER_LENGTH 64 1 7 64 21 2 7 64 275 3 6 </code></pre> <p>We do something similar to what you have described, i.e. strip the provided telephone number of any non-digit characters and then format based on various rules regarding overall number plan length, outside access code, and long distance/international access codes.</p> http://stackoverflow.com/questions/193529/book-recommendations-for-sip 1 Book recommendations for SIP Henk 2008-10-11T01:13:19Z 2008-10-11T02:06:08Z <p>I'm looking for a intermediate/advanced book(s) on the explanation of VoIP protocols and related technologies. I'm focusing on SIP in particular but if there are titles that include H.323 also then that would be a bonus.</p> <p>Thanks.</p> http://stackoverflow.com/questions/184427/outlook-propertyfrom-mapi-schema-property-id/188419#188419 2 Answer by Henk for Outlook PropertyFrom MAPI Schema Property ID Henk 2008-10-09T17:59:22Z 2008-10-09T17:59:22Z <p>This link to MSDN provides a table which shows the allocation of particular tag range values to an assigned purpose <a href="http://msdn.microsoft.com/en-us/library/ms527392(EXCHG.10).aspx" rel="nofollow">MAPI Property Tag Table</a>.</p> <p>The table indicates that 0x67aa000b is in the following range:</p> <pre><code>0x6600 0x67FF Provider-defined internal non-transmittable property </code></pre> <p>The value 0x000b indicates this is a Boolean type.</p> <p>I presume the provider in this case is Exchange Server? Unfortunately I've been unable to locate a description of this property tag's meaning.</p> http://stackoverflow.com/questions/185445/fileloadexception-on-windows-2003-for-managed-c-dll/185580#185580 1 Answer by Henk for FileLoadException on windows 2003 for managed c++ dll Henk 2008-10-09T01:18:32Z 2008-10-09T01:25:45Z <p>Have you changed your development environment recently? In particular have you installed a service pack or new release of Visual Studio?</p> <p>It appears you are linking against a C++ runtime that is not available on the client's server. You can use the Windows Event Viewer to identify the DLL failing to load, or if this shows nothing, use <code>depends.exe</code> to see what runtime DLLs are dependencies for your managed code.</p> <p>Microsoft has moved to using side-by-side installation to handle "DLL hell", basically this allows multiple versions of a DLL to be installed (side-by-side) concurrently on a Windows installations and have applications load the correct version of the DLL at run-time. Recent releases of Visual Studio make use of this technology so I suspect this is the cause of your 'sudden' incompatibility.</p> http://stackoverflow.com/questions/178173/reading-the-exchange-server-time-via-mapi/181012#181012 1 Answer by Henk for Reading the Exchange server time via MAPI Henk 2008-10-08T01:01:32Z 2008-10-08T01:01:32Z <p>I presume you are getting a MAPI event notification when the message arrives in the Exchange mailbox. I would suggest pushing these messages into a queue and waiting <code>n</code> seconds (e.g. 60s) before processing the message. Since the time is relative to the notification event there will be no issue with respect to clock drift between the computers.</p> <p>On start up of your application you would be forced to do this for existing messages again but I would not imagine that this would pose an issue.</p> http://stackoverflow.com/questions/164496/how-can-i-create-a-thread-safe-singleton-pattern-in-windows/164537#164537 0 Answer by Henk for How can I create a thread-safe singleton pattern in Windows? Henk 2008-10-02T20:51:37Z 2008-10-02T20:51:37Z <p>You can use an OS primitive such as mutex or critical section to ensure thread safe initialization however this will incur an overhead each time your singleton pointer is accessed (due to acquiring a lock). It's also non portable.</p> http://stackoverflow.com/questions/164356/can-i-use-the-stl-if-i-cannot-afford-the-slow-performance-when-exceptions-are-thr/164423#164423 0 Answer by Henk for Can I use the STL if I cannot afford the slow performance when exceptions are thrown? Henk 2008-10-02T20:29:42Z 2008-10-02T20:29:42Z <p>I'm struggling to think which portions of the STL specify that they can raise an exception. In my experience most error handling is handled by return codes or as a prerequisite of the STL's use. An object passed to the STL could definitely raise an exception, e.g. copy constructor, but that would be an issue regardless of the use of STL. Others have mentioned functions such as <code>std::vector::at()</code> but you can perform a check or use an alternate method usually to ensure no exception can be thrown.</p> <p>Certainly a particular implementation of the STL can performs "checks", generally for debug builds, on your use of the STL, I think it will raise an assertion only, but perhaps some will throw an exception.</p> <p>If there is no try/catch present I believe no/minimal performance hit will be incurred unless an exception is raised by your own classes.</p> <p>On Visual Studio you can disable the use of C++ exceptions entirely see <code>Project Properties -> C/C++ -> Code Generation -> Enable C++ Exceptions</code>. I presume this is available on most C++ platforms.</p> http://stackoverflow.com/questions/104037/callstack-that-has-has-av-reported-i-see-functionname-some-hex-value/104125#104125 1 Answer by Henk for Callstack that has has AV reported I see FunctionName() + some Hex value? Henk 2008-09-19T18:01:01Z 2008-09-19T19:13:04Z <p>I believe this will be the offset of the instruction from the start of the function.</p> <p>If you have the assembler (.asm) output for your application, from the compiler, you can map the offset value (once you locate the function) against this to determine what instructions were being executed. If the correct flags in the compiler configuration are set the .asm output will include the high level language constructs (e.g. C/C++ source) that the assembler represents. You will then be able to pinpoint the statement being executed.</p> <p>If you are using a different language than C/C++ for your application then the above will still apply but you may need to review your platform documentation to achieve the necessary output.</p> http://stackoverflow.com/questions/45769/managing-using-libraries-with-debug-builds-vs-release-builds/46120#46120 2 Answer by Henk for Managing/Using libraries with Debug builds vs Release builds Henk 2008-09-05T15:57:15Z 2008-09-18T06:32:56Z <p>I would first determine what requirements are needed from the library:</p> <ol> <li>Debug/Release</li> <li>Unicode support</li> <li>And so on..</li> </ol> <p>With that determined you can then create configurations for each combination required by yourself or other library users.</p> <p>When compiling and linking it is very important that you keep that libraries and executable consistent with respect to configurations used i.e. don't mix release &amp; debug when linking. I know on the Windows/VS platform this can cause subtle memory issues if debug &amp; release libs are mixed within an executable.</p> <p>As Brian has mentioned to Visual Studio it's best to use the Configuration Manager to setup how you want each configuration you require to be built.</p> <p>For example our projects require the following configurations to be available depending on the executable being built.</p> <ol> <li>Debug+Unicode</li> <li>Debug+ASCII</li> <li>Release+Unicode</li> <li>Release+ASCII</li> </ol> <p>The users of this particular project use the Configuration Manager to match their executable requirements with the project's available configurations.</p> <p>Regarding the use of macros, they are used extensively in implementing compile time decisions for requirements like if the debug or release version of a function is to be linked. If you're using VS you can view the pre-processor definitions attribute to see how the various macros are defined e.g. _DEBUG _RELEASE, this is how the configuration controls whats compiled.</p> <p>What platform are you using to compile/link your projects?</p> <p>EDIT: Expanding on your updated comment..</p> <p>If the <strong>Configuration Manager</strong> option is not available to you then I recommend using the following properties from the project:</p> <ul> <li><strong>Linker</strong>-><strong>Additional Library Directories</strong> or <strong>Linker</strong>-><strong>Input</strong></li> </ul> <p>Use the macro <code>$(ConfigurationName)</code> to link with the appropriate library configuration e.g. Debug/Release.</p> <pre><code>$(ProjectDir)\..\third-party-prj\$(ConfigurationName)\third-party.lib </code></pre> <ul> <li><strong>Build Events</strong> or <strong>Custom Build Step</strong> configuration property</li> </ul> <p>Execute a copy of the required library file(s) from the dependent project prior (or after) to the build occurring.</p> <pre><code>xcopy $(ProjectDir)\..\third-party-prj\$(ConfigurationName)\third-party.dll $(IntDir) </code></pre> <p>The macro <code>$(ProjectDir)</code> will be substituted for the current project's location and causes the operation to occur relative to the current project. The macro <code>$(ConfigurationName)</code> will be substituted for the currently selected configuration (default is <code>Debug</code> or <code>Release</code>) which allows the correct items to be copied depending on what configuration is being built currently.</p> <p>If you use a regular naming convention for your project configurations it will help, as you can use the <code>$(ConfigurationName)</code> macro, otherwise you can simply use a fixed string.</p> http://stackoverflow.com/questions/86219/interfacing-with-telephony-systems-from-nix/87159#87159 1 Answer by Henk for Interfacing with telephony systems from *nix Henk 2008-09-17T20:16:55Z 2008-09-17T20:24:14Z <p>I have experience with two telephony standards TAPI, and CSTA, as far as I know there is no such agreement between vendors (e.g. Cisco, Nortel, NEC) regarding THE standard API.</p> <p>I would recommend looking at the availability of <a href="http://en.wikipedia.org/wiki/Call_detail_record" rel="nofollow">SMDR</a> (Station Messaging Detail Recording) on the PBX platforms you are targeting, assuming that no call/device control is required. This will allow you to access the PBX activity as a text stream and you can parse the data for further manipulations to suit your purpose.</p> <p>Most likely the format between the PBX vendors will be different but hopefully this could be abstracted away so that the core application functionality is re-usable.</p> <p>This is likely to be a more portable option, again assuming no call/device control is required, as you are not relying on the vendor providing CTI connectivity on your platform of choice.</p> http://stackoverflow.com/questions/55510/when-do-function-level-static-variables-get-allocated-initialized/55592#55592 2 Answer by Henk for When do function-level static variables get allocated/initialized? Henk 2008-09-11T01:00:58Z 2008-09-11T01:09:04Z <p>The compiler will allocate static variable(s) defined in a function <code>foo</code> at program load, however the compiler will also add some additional instructions (machine code) to your function <code>foo</code> so that the first time it is invoked this additional code will initialize the static variable (e.g. invoking the constructor, if applicable).</p> <p>@<a href="#55564" rel="nofollow">Adam</a>: This behind the scenes injection of code by the compiler is the reason for the result you saw.</p> http://stackoverflow.com/questions/55532/casting-between-multi-and-single-dimentional-arrays/55580#55580 1 Answer by Henk for Casting between multi- and single-dimentional arrays Henk 2008-09-11T00:53:53Z 2008-09-11T00:53:53Z <p>Each array element should be laid out sequentially in memory by the compiler. The two declarations whilst different types are the same underlying memory structure.</p> http://stackoverflow.com/questions/52600/what-does-the-pdb-get-me-while-debugging-and-how-do-i-know-its-working/53095#53095 4 Answer by Henk for What does the PDB get me while debugging and how do I know it's working? Henk 2008-09-09T22:59:51Z 2008-09-09T22:59:51Z <p>To confirm if you're using the provided PDB, CorporateComponent.pdb, during debugging within the Visual Studio IDE review the output window and locate the line indicating that the CorporateComponent.dll is loaded and followed by the string <code>Symbols loaded</code>.</p> <p>To illustrate from a project of mine:</p> <pre><code>The thread 0x6a0 has exited with code 0 (0x0). The thread 0x1f78 has exited with code 0 (0x0). 'AvayaConfigurationService.vshost.exe' (Managed): Loaded 'C:\Development\Src\trunk\ntity\AvayaConfigurationService\AvayaConfigurationService\bin\Debug \AvayaConfigurationService.exe', Symbols loaded. 'AvayaConfigurationService.vshost.exe' (Managed): Loaded 'C:\Development\Src\trunk\ntity\AvayaConfigurationService\AvayaConfigurationService\bin\Debug\IPOConfigService.dll', No symbols loaded. </code></pre> <blockquote> <p><code>Loaded 'C:\Development\src...\bin\Debug\AvayaConfigurationService.exe', Symbols loaded.</code></p> </blockquote> <p>This indicates that the PDB was found and loaded by the IDE debugger.</p> <p>As indicated by others When examining stack frames within your application you should be able to see the symbols from the CorporateComponent.pdb. If you don't then perhaps the third-party did not include symbol information in the release PDB build.</p> http://stackoverflow.com/questions/487663/recommendations-on-tapi-components-for-ms-windows Comment by Henk on Recommendations on TAPI components for MS Windows Henk 2009-02-07T01:01:36Z 2009-02-07T01:01:36Z Correct, some are packaged with Windows. In our case the TSP is provided by the hardware manufacturer e.g. Avaya. I'll have a think about the issues you've listed in your update.. http://stackoverflow.com/questions/487663/recommendations-on-tapi-components-for-ms-windows Comment by Henk on Recommendations on TAPI components for MS Windows Henk 2009-01-29T02:41:05Z 2009-01-29T02:41:05Z My company uses TAPI to implement third party call control for PBXs. We use TAPI directly however (TAPI2). Depending on the quality of the underlying TSP we don't have too many issues, perhaps you can expand upon your TAPI woes (in lieu of me not knowing any components alas)? http://stackoverflow.com/questions/449436/singleton-instance-declared-as-static-variable-of-getinstance-method/449681#449681 Comment by Henk on Singleton instance declared as static variable of GetInstance method Henk 2009-01-16T20:35:24Z 2009-01-16T20:35:24Z @j_random_hacker: Yeah that's a neat idea. @Martin York: Thanks for the tip about g++ I did not know that. http://stackoverflow.com/questions/434702/normal-main-to-wince-main Comment by Henk on Normal main to WinCE main Henk 2009-01-12T07:33:26Z 2009-01-12T07:33:26Z Just a minor point; should be <code>delete[] argv;</code> http://stackoverflow.com/questions/412438/how-to-avoid-a-common-bug-in-a-large-codebase/412612#412612 Comment by Henk on How to avoid a common bug in a large codebase? Henk 2009-01-05T21:46:17Z 2009-01-05T21:46:17Z I think this line of thought is the nicest solution. http://stackoverflow.com/questions/270524/does-anyone-know-of-a-good-simple-c-based-sip-stack-that-i-could-use/270536#270536 Comment by Henk on Does anyone know of a good, simple C++ based SIP stack that I could use? Henk 2008-11-10T23:34:08Z 2008-11-10T23:34:08Z The site does mention the possibility of licensing under a different license. http://stackoverflow.com/questions/231885/violation-reading-location-in-stdmap-operator/231895#231895 Comment by Henk on Violation reading location in std::map operator[] Henk 2008-10-23T23:25:53Z 2008-10-23T23:25:53Z What are the other threads doing, are any others accessing this shared variable also? I don't recall if the code inserted by the compiler for static variables is thread safe itself. http://stackoverflow.com/questions/213952/do-c-static-libraries-without-mfc-that-are-linked-to-an-mfc-project-throw-bada/214093#214093 Comment by Henk on Do c++ static libraries without mfc that are linked to an MFC project throw bad_alloc or CMemoryException*? Henk 2008-10-17T23:24:12Z 2008-10-17T23:24:12Z If your able to compile with symbols then I'd suggest stepping into the call to operator new and the debugger should prove definitively which implementation is being called. Not sure if that's helpful for your target platform tho.. http://stackoverflow.com/questions/187216/what-is-the-best-way-for-converting-phone-numbers-into-international-format-e-16/195093#195093 Comment by Henk on What is the best way for converting phone numbers into international format (E.164) using Java? Henk 2008-10-16T00:19:41Z 2008-10-16T00:19:41Z The shortened column names are reasonable, I was formatted this table as above purely for illustrative reasons. I'm unclear what the comments mean for the subscriber and sub length tho. http://stackoverflow.com/questions/104037/callstack-that-has-has-av-reported-i-see-functionname-some-hex-value/104125#104125 Comment by Henk on Callstack that has has AV reported I see FunctionName() + some Hex value? Henk 2008-09-19T19:14:00Z 2008-09-19T19:14:00Z I have edited my original response to include more information. If you need further assistance it would be useful to see an excerpt of the callstack in question.