User CyberShadow - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T20:04:28Zhttp://stackoverflow.com/feeds/user/21501http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1815761/are-there-any-game-graphics-engines-for-the-d-programming-language/1816421#18164214Answer by CyberShadow for Are there any game/graphics engines for the D programming language?CyberShadow2009-11-29T19:00:57Z2009-11-29T19:00:57Z<p>Most certainly, and infact there are quite plenty (although at varying stages of maturity). Have a look at the game section on dsource: <a href="http://www.dsource.org/projects/" rel="nofollow">http://www.dsource.org/projects/</a></p>
http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-base/1815633#181563318Answer by CyberShadow for What next generation low level language is the best bet to migrate the code base ?CyberShadow2009-11-29T14:13:57Z2009-11-29T14:13:57Z<p>D and Go will probably just become as popular as Python and Ruby are today. They each fill a niche, and even though D was supposed to be a full-fledged replacement of C++, it probably will never acquire enough mass to push C++ away. Not to mention that they both aren't stable/mature enough, and it's unknown whether you'll have support for these languages in 10-20 years for the then-current hardware and operating systems. Considering that C/C++ is pretty much <strong>the</strong> compiled language and is used in the great majority of operating systems and native-code applications, it's very unlikely that it'll go away in the foreseeable future. </p>
http://stackoverflow.com/questions/1809364/user-mode-synchronization-library-for-c2User-mode synchronization library for C++CyberShadow2009-11-27T15:30:57Z2009-11-28T21:36:25Z
<p>Does anyone know of a Windows user-mode thread synchronization library for C++ (utilizing spin locks / atomic operations)? I only need mutexes (~critical sections), but condition variables would be a plus.</p>
http://stackoverflow.com/questions/1809364/user-mode-synchronization-library-for-c/1812498#18124980Answer by CyberShadow for User-mode synchronization library for C++CyberShadow2009-11-28T13:11:46Z2009-11-28T21:36:25Z<p>Thank you for the answers. Turns out that basing my expectations about the size of a threading library on boost was a bad idea, and writing your own synchronization code based on <a href="http://msdn.microsoft.com/en-us/library/ms683590(VS.85).aspx" rel="nofollow">InterlockedExchange</a> is dead-simple. My spinlock code achieves a performance of about 20% better than Win32 critical sections (and I mean real application performance, not a synthetic test) :)</p>
http://stackoverflow.com/questions/1613963/some-d-template-questions/1614327#16143273Answer by CyberShadow for Some D template questionsCyberShadow2009-10-23T15:47:03Z2009-10-23T15:47:03Z<ol>
<li>Yes - using either <a href="http://www.digitalmars.com/d/2.0/template.html#TemplateTypeParameterDefault" rel="nofollow">template parameter specialization</a> or <a href="http://www.digitalmars.com/d/2.0/concepts.html" rel="nofollow">template constraints</a> (equivalent of C++1x concepts).</li>
<li><code>static if</code> implies that the condition can be calculated at compile time. A function parameter can't be, so either use a regular <code>if</code> or make <code>position</code> a template parameter.</li>
</ol>
http://stackoverflow.com/questions/1613875/how-do-you-go-about-asking-a-question-at-digitalmars-com/1613899#16138990Answer by CyberShadow for How do you go about asking a question at digitalmars.com?CyberShadow2009-10-23T14:37:21Z2009-10-23T14:37:21Z<p>On the navigation column on the left, in the "Community" section, there's a "<a href="http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.learn" rel="nofollow">Learn</a>" link. It links to a web newsreader, which allows you to post as well (the "Compose" link).</p>
http://stackoverflow.com/questions/262493/best-way-to-inject-functionality-into-a-binary/1551037#15510370Answer by CyberShadow for Best way to inject functionality into a binary...CyberShadow2009-10-11T16:07:36Z2009-10-11T16:07:36Z<p>On Windows, this is simple to do, is actually very widely done and is known as DLL/code injection. </p>
<p>There is a commercial SDK for OSX which allows doing this: <a href="http://unsanity.com/haxies/ape" rel="nofollow">Application Enhancer</a> (free for non-commercial use).</p>
http://stackoverflow.com/questions/1520922/d-1-0-tango-move-mouse-simulate-keyboard-presses-etc/1541521#15415212Answer by CyberShadow for D 1.0 (Tango) Move mouse; simulate keyboard presses etc.CyberShadow2009-10-09T02:22:41Z2009-10-09T02:22:41Z<p>This is a bug in Tango.</p>
<p>Tango declares mouse_event as:</p>
<pre><code>void mouse_event(DWORD, DWORD, DWORD, DWORD);
</code></pre>
<p>while <a href="http://msdn.microsoft.com/en-us/library/ms646260(VS.85).aspx" rel="nofollow">MSDN</a> shows that it takes 5 parameters, not 4.</p>
<p>For serious Win32 development you should take a look at the <a href="http://dsource.org/projects/bindings/wiki/WindowsApi" rel="nofollow">Windows API bindings</a> project.</p>
http://stackoverflow.com/questions/250383/is-anyone-using-d-in-commercial-applications/1516542#15165421Answer by CyberShadow for Is anyone using D in commercial applications?CyberShadow2009-10-04T14:32:47Z2009-10-04T14:44:00Z<p>Here's a commercial (shareware, technically) desktop application I wrote in D for my employer: <a href="http://websafety.com/freescan/" rel="nofollow">http://websafety.com/freescan/</a></p>
<p>Privacy warning: the application connects to the Internet to check for updates, load the "registration" form, etc.</p>
http://stackoverflow.com/questions/1291509/how-to-get-the-code-page-of-the-current-keyboard-layout1How to get the code page of the current keyboard layout?CyberShadow2009-08-18T02:32:22Z2009-08-23T04:08:56Z
<p>My non-Unicode application needs to be able to process Unicode keyboard input (WM_CHAR/etc.), thus receive the 8-bit character code then internally convert it to Unicode. 9x-compatibility is required, so using most Unicode APIs is not an option. </p>
<p>Currently it looks at the language returned by PRIMARYLANGID(GetKeyboardLayout(0)), and looks up the relevant code page in a hard-coded table. I couldn't find a function to get the code page used by a particular language or keyboard layout. Converting a character/string can then be done with MultiByteToWideChar. </p>
<p>Is there a way to get the current keyboard layout's code page? GetACP returns the default system code page, which isn't affected by the current keyboard layout.</p>
http://stackoverflow.com/questions/1314063/how-should-i-handle-c-strings-in-d/1314132#13141323Answer by CyberShadow for How should I handle C-strings in D?CyberShadow2009-08-21T20:46:09Z2009-08-21T20:46:09Z<p>Hi,</p>
<p>You can use the <a href="http://www.digitalmars.com/d/1.0/statement.html#MixinStatement" rel="nofollow">mixin</a> construct to use language-version-specific code that isn't valid in all versions. Example:</p>
<pre><code>static if(version_major<2)
{
alias char* charptr;
}
else
{
mixin("alias const(char)* charptr;");
}
</code></pre>
<p>Regarding your actual question, I would suggest doing the same as when interfacing C libraries with C++ - define a type that's <code>const(char)*</code> for D2 and <code>char*</code> for D1, but only use it when appropriate (for example, if a function takes a <code>char*</code> for a buffer to write to, it probably wouldn't be appropriate to name <code>const(char)*</code> something as generic as "charptr"). <a href="http://msdn.microsoft.com/en-us/library/cc230350(PROT.10).aspx" rel="nofollow"><code>LPCSTR</code></a> could work ;)</p>
<p>I didn't understand the "What's the best way to make them mutable" question.</p>
http://stackoverflow.com/questions/1301534/can-you-refer-to-a-named-enum-as-if-it-were-anonymous-in-d/1302175#13021754Answer by CyberShadow for Can you refer to a named enum as if it were anonymous in D?CyberShadow2009-08-19T19:33:50Z2009-08-19T19:33:50Z<p>If you would like type safety with anonymous enums, you can create a new distinct type using <code>typedef</code>, and use it as the base type of the anonymous enum. Example:</p>
<pre><code>typedef int A;
enum : A
{
a1,
a2,
a3
}
typedef int X;
enum : X
{
x1,
x2,
x3
}
void main()
{
A a;
X x;
x = a; // Error: cannot implicitly convert expression (a) of type A to X
}
</code></pre>
http://stackoverflow.com/questions/1054365/exclusive-directdraw-palette-isnt-actually-exclusive2"Exclusive" DirectDraw palette isn't actually exclusiveCyberShadow2009-06-28T06:07:25Z2009-08-11T11:09:44Z
<p>We're maintaining an old video game that uses a full-screen 256-color graphics mode with DirectDraw. The problem is, some applications running in the background sometimes try to change the system palette while the game is running, which results in corrupted graphics. </p>
<p>We can (sometimes) detect when this happens by processing the WM_PALETTECHANGED message. A few update versions ago we added logging (just log the window title/class/process name), which helped users identify offending applications and close them. MSN Live Messenger was a common culprit. </p>
<p>The problem got worse when we found out that Windows Vista (and 7) does it "by itself". The WM_PALETTECHANGED parameters point towards CSRSS and the desktop window. In Vista, a workaround that often worked was to open any folder (Computer, Documents, etc.) and leave it open while running the game. Sounds ridiculous, but it worked - in most cases. In Windows 7, not even this workaround worked any more. Users found that stopping some services (Windows Update and the indexing service) also resolved the problem on some configurations.</p>
<p>Some time ago I just started trying random things in hope of finding a solution. I found that setting the GDI palette (using Create/SelectPalette) before setting the DirectDraw palette (using IDirectDrawPalette::SetEntries) would restore the palette after it became corrupted (WM_PALETTECHANGED handler). SetSystemPaletteUse and calling SetPalette on the primary surface helped some more. However, there is still perceivable flickering when an application tries to steal the palette, which is especially prominent during fades.</p>
<p>Question: is there a way to get a "real" exclusive palette, which completely disallows other applications changing the Windows palette as long as our game retains focus?</p>
http://stackoverflow.com/questions/1150379/scriptable-windows-disassembler-non-cygwin/1150501#11505013Answer by CyberShadow for Scriptable Windows Disassembler [non cygwin]CyberShadow2009-07-19T18:18:45Z2009-07-19T18:18:45Z<p>IDA has a built-in scripting language called IDC. Lots of examples <a href="http://www.openrce.org/downloads/browse/IDA_Scripts" rel="nofollow">here</a>. Also, IDA <strong>can</strong> be called without a GUI - consult the documentation for idaw.exe.</p>
http://stackoverflow.com/questions/796059/how-to-verify-a-binary-signed-with-a-self-signed-certificate0How to verify a binary signed with a self-signed certificate?CyberShadow2009-04-28T02:56:27Z2009-07-16T19:03:38Z
<p>We want to add automatic software updates to our application, but our company isn't yet ready to buy a code-signing certificate from a trusted root CA, so we'll be using a self-signed certificate to sign code updates (.exe and .dll) for now.</p>
<p>Question: how to verify a binary signed with a self-signed certificate, without having to install the certificate, using Microsoft's Cryptography API? The .cer file to check against will be bundled with the application. Or is it simpler to use a generic Crypto library?</p>
http://stackoverflow.com/questions/1128121/debugging-code-run-in-a-virtual-machine-using-the-host/1128469#11284691Answer by CyberShadow for debugging code run in a virtual machine using the hostCyberShadow2009-07-14T22:39:48Z2009-07-14T22:39:48Z<p><a href="http://www.vmware.com/products/ws/" rel="nofollow">VMware</a> has offered VM debugging plugins for Visual Studio and Eclipse for some time now. It is even possible to record a VM run (which logs input from all devices, allowing to replay the execution of the VM precisely as when it was recorded), then <a href="http://blogs.vmware.com/vmtn/2008/08/introducing-rep.html" rel="nofollow">step through the recording with a debugger</a>.</p>
http://stackoverflow.com/questions/1116480/what-are-the-limitations-of-primitive-character-types-in-d/1116564#111656410Answer by CyberShadow for What are the limitations of primitive character types in D?CyberShadow2009-07-12T18:06:06Z2009-07-12T18:06:06Z<p>A single <code>char</code> or <code>wchar</code> represents an UTF <a href="http://en.wikipedia.org/wiki/Code_unit" rel="nofollow">code unit</a>. This means that, by its own, a <code>char</code> in can either represent an ASCII symbol (0-127) or be part of an UTF-8 sequence representing an Unicode character (<a href="http://en.wikipedia.org/wiki/Code_point" rel="nofollow">code point</a>). Only the <code>dchar</code> type can represent an entire Unicode character, because there are more than 65536 code points in Unicode.</p>
<p>Casting one type of string type (<code>string</code>, <code>wstring</code> and <code>dstring</code>, which are simply dynamic arrays of the character types) will not automatically convert their contents to the respective UTF representation. In order to do this, you must use the functions <code>toUTF8</code>, <code>toUTF16</code> and <code>toUTF32</code> from <code>std.utf</code> (or <code>toString</code> / <code>toString16</code> / <code>toString32</code> from <code>tango.text.convert.Utf</code> if you use Tango).</p>
<p>Users have implemented string classes which will automatically use the most memory-efficient representation that can map each character to a single code unit. This allows quick slicing and indexing with a minimal memory overhead. One such implementation is <a href="http://www.dprogramming.com/mtext.php" rel="nofollow">mtext</a> by Christopher E. Miller.</p>
<p>Further reading:</p>
<ul>
<li>the <a href="http://en.wikipedia.org/wiki/D_programming_language#String_handling" rel="nofollow">String handling</a> section in Wikipedia's entry on D</li>
<li><a href="http://www.prowiki.org/wiki4d/wiki.cgi?DanielKeep/TextInD" rel="nofollow">Text in D</a>, by Daniel Keep</li>
</ul>
http://stackoverflow.com/questions/1113938/how-would-you-approach-using-d-in-a-embedded-real-time-environment/1114016#11140168Answer by CyberShadow for How would you approach using D in a embedded real-time environment?CyberShadow2009-07-11T16:08:22Z2009-07-11T16:08:22Z<p>D isn't really meant for use in real-time applications, mostly because some language features of D rely on its garbage collector, and D's garbage collector is unpredictable and will sporadically pause your program to collect garbage. <a href="http://www.digitalmars.com/d/2.0/garbage.html" rel="nofollow">Quoting</a>:</p>
<blockquote>
<p>Garbage collection is not a panacea. There are some downsides: </p>
<ul>
<li>It is not predictable when a collection gets run, so the program can arbitrarily pause. </li>
<li>The time it takes for a collection to run is not bounded. While in practice it is very quick, this cannot be guaranteed. </li>
<li>All threads other than the collector thread must be halted while the collection is in progress. </li>
</ul>
</blockquote>
<p>You can still use D without a garbage collector (by managing memory manually, like in C/C++) - this will prevent you from using certain language features like associative arrays, and library functions that internally allocate memory without deallocating/returning a reference to it. D still excels in many areas not dependent on memory management (such as metaprogramming).</p>
http://stackoverflow.com/questions/1111415/make-gdc-front-end-emit-intermediate-c-c-code/1111459#11114595Answer by CyberShadow for Make GDC front end emit intermediate C/C++ code?CyberShadow2009-07-10T19:17:44Z2009-07-10T19:17:44Z<p>Quick answer: no.</p>
<p>From what I know about GCC, it uses <a href="http://en.wikipedia.org/wiki/Abstract_syntax_tree" rel="nofollow">abstract syntax trees</a> for the language-independent code representation that gets passed from the front-end to the back-end. Theoretically it might be possible to "decompile" that AST to C/C++ code, but AFAIK the GCC suite does not implement this.</p>
http://stackoverflow.com/questions/1054468/how-to-clean-up-microsoft-html-doc/1054472#10544721Answer by CyberShadow for how to clean up microsoft html doc ?CyberShadow2009-06-28T07:40:24Z2009-06-28T07:40:24Z<p>This isn't really a programming question, but (at least recent versions of) Word can save to "Web Page, Filtered", which removes Office-specific tags and properties and only leaves the tags necessary for the document to be rendered in a web browser. So, if you have Word, you could try using it to open the HTML document and save it in that format.</p>
http://stackoverflow.com/questions/1033193/add-menu-item-to-another-application/1033266#10332661Answer by CyberShadow for Add menu item to another application.CyberShadow2009-06-23T15:21:01Z2009-06-23T15:21:01Z<p>I don't think this is possible using .NET. gAlwaysIdle's website is down at the moment, but it most likely uses code/DLL injection to modify Google Talk's code at runtime and insert a menu item. This is only possible with native code (compiled) languages, which .NET languages aren't.</p>
<p>Edit: I found a download mirror and took a look at the application. It uses the SetWindowsHook method of DLL injection, which confirms my theory.</p>
http://stackoverflow.com/questions/1008803/how-to-use-pure-in-d-2-0/1008833#10088332Answer by CyberShadow for How to use pure in D 2.0CyberShadow2009-06-17T18:36:43Z2009-06-17T18:36:43Z<p>Hi,</p>
<p>Please review the definition of pure functions:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Pure_function" rel="nofollow">http://en.wikipedia.org/wiki/Pure_function</a></li>
<li><a href="http://www.digitalmars.com/d/2.0/function.html#pure-functions" rel="nofollow">http://www.digitalmars.com/d/2.0/function.html#pure-functions</a></li>
</ul>
<blockquote>
<p>Pure functions are functions that produce the same result for the same arguments. To that end, a pure function: </p>
<ul>
<li>has parameters that are all invariant or are implicitly convertible to invariant</li>
<li>does not read or write any global mutable state</li>
</ul>
</blockquote>
<p>One of the effects of using pure functions is that they can be safely parallelized. However, it's not safe to execute several instances of your function in parallel, because they could both modify the class instance simultaneously, causing a synchronization problem.</p>
http://stackoverflow.com/questions/1003948/what-debugger-can-be-used-with-d-2-0-on-windows-and-how-do-i-use-it/1004002#10040025Answer by CyberShadow for What debugger can be used with D 2.0 on windows and how do I use it?CyberShadow2009-06-16T21:21:01Z2009-06-16T21:21:01Z<p>There is a Windows debugger written specifically for D:</p>
<p><a href="http://ddbg.mainia.de/" rel="nofollow">http://ddbg.mainia.de/</a></p>
http://stackoverflow.com/questions/977045/modifying-a-program-to-fake-a-button-press/977148#9771481Answer by CyberShadow for Modifying a program to fake a button pressCyberShadow2009-06-10T17:47:19Z2009-06-10T17:47:19Z<p>If you don't like the idea of using a secondary "macro" program, you could patch the original program's binary to call the button's BM_CLICK handler. If you can find some space for the call (minimum 5 bytes without arguments), you can do this with OllyDbg alone (after editing the code, select it, and select "Copy to executable" -> "Selection" from the right-click menu). Otherwise, you'll need to create a new code section with a PE editor (e.g. LordPE or PE Tools) and add your code there (typically you'll want to change a call in the program to a jump to your section, where you perform the original call plus the call to the button's click handler, then jump back to the old position after your patched jump).</p>
http://stackoverflow.com/questions/976581/will-arguments-to-a-function-be-passed-on-the-stack-or-in-a-register/976686#9766860Answer by CyberShadow for Will arguments to a function be passed on the stack or in a register?CyberShadow2009-06-10T16:21:00Z2009-06-10T16:21:00Z<p>The way arguments are passed to a function depends on the function's <a href="http://en.wikipedia.org/wiki/Calling_convention" rel="nofollow">calling convention</a>. The default calling convention depends on the language, compiler and architecture.</p>
<p>I can't say anything for sure with the information you provided, however you shouldn't forget that assembly-level debuggers like OllyDbg and disassemblers like IDA often use heuristics to reverse-engineer the program. The best way to study the code generated by the compiler is to instruct it to write assembly listings. Most compilers have an option to do this.</p>
http://stackoverflow.com/questions/969901/edit-patch-a-binary-file-in-ida-pro/969919#9699192Answer by CyberShadow for Edit (patch) a binary file in IDA ProCyberShadow2009-06-09T13:00:14Z2009-06-09T13:00:14Z<p>I think IDA used to have a feature to do that, but it's not present in the current versions.</p>
<p>You should just use a hex editor. Note the file offset in IDA and edit the file at that address. If you'd like to see the changes in IDA, use the "File" -> "Load file" -> "Reload the input file" menu item.</p>
http://stackoverflow.com/questions/969582/how-to-find-the-location-of-a-string-in-memory-have-the-physical-offset/969641#9696411Answer by CyberShadow for How to find the location of a string in memory (have the physical offset)CyberShadow2009-06-09T11:56:41Z2009-06-09T11:56:41Z<p>In IDA, just load the file and perform a binary search (press Alt+B), then look at the address. You can also check for cross-references to the string by pressing x.</p>
http://stackoverflow.com/questions/928993/checking-in-d-if-a-string-is-in-array/929050#9290504Answer by CyberShadow for Checking in D if a string is in array?CyberShadow2009-05-30T05:08:19Z2009-05-30T05:08:19Z<p>If your strings are constant (like in the example), you can use an associative array literal, but the syntax isn't pretty:</p>
<pre><code>if (str in ["first"[]:0, "second":0, "third":0])
</code></pre>
<p>I don't think there's a library call you can use in D1's Phobos, but D2's std.algorithm has something you could use:</p>
<pre><code>if (count(["first", "second", "third"][], str))
</code></pre>
<p>In Tango, you can use the generic <code>contains</code> function from <code>tango.text.Util</code>:</p>
<pre><code>if (contains(["first", "second", "third"][], str))
</code></pre>
<p>Note that the <code>[]</code> at the end of array literals is required because we need to pass a memory slice of the static array, and not the actual static array by-value.</p>
http://stackoverflow.com/questions/909610/experiences-with-d-programming-language/909642#9096424Answer by CyberShadow for Experiences with D-programming-languageCyberShadow2009-05-26T08:42:58Z2009-05-26T08:42:58Z<p>See <a href="http://stackoverflow.com/questions/743319/why-isnt-the-d-language-picking-up">http://stackoverflow.com/questions/743319/why-isnt-the-d-language-picking-up</a></p>
http://stackoverflow.com/questions/880141/how-to-uniquely-identify-a-user-defined-type-in-d/880180#8801800Answer by CyberShadow for How to uniquely identify a user defined type in D?CyberShadow2009-05-18T22:49:32Z2009-05-18T22:49:32Z<p>The <a href="http://www.digitalmars.com/d/1.0/expression.html#typeidexpression" rel="nofollow">typeid expression</a> will return an unique instance of a TypeInfo object. In theory, you should be able to use the address of the TypeInfo object as the type's unique identifier value.</p>
http://stackoverflow.com/questions/1809364/user-mode-synchronization-library-for-c/1812498#1812498Comment by CyberShadow on User-mode synchronization library for C++CyberShadow2009-11-30T09:23:31Z2009-11-30T09:23:31ZIt's true, that's my situation. Since such mutexes are very cheap in terms of resources, I partition my shared resources as much as possible and lock each partition individually - that way, these is practically no contention.http://stackoverflow.com/questions/1809364/user-mode-synchronization-library-for-c/1812498#1812498Comment by CyberShadow on User-mode synchronization library for C++CyberShadow2009-11-29T08:53:58Z2009-11-29T08:53:58ZThat statement is a bit out of context, isn't it? Locking a mutex is as simple as <code>while (InterlockedExchange(&x, 1));</code>, and unlocking is <code>x=0;</code>.http://stackoverflow.com/questions/1809364/user-mode-synchronization-library-for-cComment by CyberShadow on User-mode synchronization library for C++CyberShadow2009-11-27T16:07:53Z2009-11-27T16:07:53ZThanks, but I don't really have time to read an entire book at the moment. I've already tried Boost and Win32 synchronization primitives, but I think that my program could run much faster without the overhead of context switches.http://stackoverflow.com/questions/1809364/user-mode-synchronization-library-for-c/1809415#1809415Comment by CyberShadow on User-mode synchronization library for C++CyberShadow2009-11-27T16:05:53Z2009-11-27T16:05:53ZWin32 critical sections are not user-mode constructs, are they?http://stackoverflow.com/questions/1793678/c-an-impossible-behaviorComment by CyberShadow on C++, an "impossible" behaviorCyberShadow2009-11-25T00:07:21Z2009-11-25T00:07:21ZWhat's at 11A27D4h?http://stackoverflow.com/questions/1605671/can-delphi-5-generate-a-pdb-file-that-vs-can-use/1605789#1605789Comment by CyberShadow on Can Delphi 5 generate a .PDB file that VS can use?CyberShadow2009-11-02T21:46:57Z2009-11-02T21:46:57ZDelphi's debugger can't load minidumps, can it? Minidumps are EXTREMELY useful. Your process crashes, freezes or misbehaves on the customer's machine? Get a minidump, load it, and you're in the debugger as if you're debugging that process. (Of course you can't do anything except examine call stacks and variables.)http://stackoverflow.com/questions/1613963/some-d-template-questions/1614327#1614327Comment by CyberShadow on Some D template questionsCyberShadow2009-10-28T19:02:02Z2009-10-28T19:02:02Z@ first question: Yes.http://stackoverflow.com/questions/1520922/d-1-0-tango-move-mouse-simulate-keyboard-presses-etcComment by CyberShadow on D 1.0 (Tango) Move mouse; simulate keyboard presses etc.CyberShadow2009-10-09T02:26:48Z2009-10-09T02:26:48ZPlease don't jump to conclusions so quickly. As you can see below, this is a Tango-specific problem, thus it's also D-specific.http://stackoverflow.com/questions/250383/is-anyone-using-d-in-commercial-applicationsComment by CyberShadow on Is anyone using D in commercial applications?CyberShadow2009-10-04T14:21:06Z2009-10-04T14:21:06ZI think MusiGenesis meant function pre contracts ( <a href="http://www.digitalmars.com/d/2.0/dbc.html" rel="nofollow">digitalmars.com/d/2.0/dbc.html</a> ), which are meant specifically for validation of function parameters.http://stackoverflow.com/questions/1291509/how-to-get-the-code-page-of-the-current-keyboard-layout/1293403#1293403Comment by CyberShadow on How to get the code page of the current keyboard layout?CyberShadow2009-08-23T04:20:39Z2009-08-23T04:20:39ZThis method has a flaw: if the default keyboard layout doesn't correspond to the system code page (CP_ACP), then the codepage will not be correct when the application starts.http://stackoverflow.com/questions/1314063/how-should-i-handle-c-strings-in-d/1314132#1314132Comment by CyberShadow on How should I handle C-strings in D?CyberShadow2009-08-21T20:59:50Z2009-08-21T20:59:50ZThe code snippet works for me. Did you <code>import std.compiler</code> (the module where <code>version_major</code> is declared)?http://stackoverflow.com/questions/1223952/what-are-the-best-free-tools-for-reverse-engineering-on-windows-platformComment by CyberShadow on What are the best free tools for reverse engineering on windows platform?CyberShadow2009-08-03T19:35:00Z2009-08-03T19:35:00ZThere really isn't anything anywhere near IDA's level. If you don't like IDA, maybe you're approaching your problem from the wrong angle. Note that IDA has IDC, its own scripting language.http://stackoverflow.com/questions/1096861/can-winpcap-be-used-to-capture-network-traffic-per-process/1097028#1097028Comment by CyberShadow on Can WinPcap be used to capture network traffic per process?CyberShadow2009-07-08T10:32:30Z2009-07-08T10:32:30ZIt's simple:
1) tasklist /FO CSV | find "filename.exe" - the second value is the PID.
2) netstat -nao | find "PID" - this will give you a list of connections and listening ports for the specified PID.http://stackoverflow.com/questions/1054365/exclusive-directdraw-palette-isnt-actually-exclusive/1064748#1064748Comment by CyberShadow on "Exclusive" DirectDraw palette isn't actually exclusiveCyberShadow2009-07-01T01:50:12Z2009-07-01T01:50:12ZWhen the palette would get stolen, it would usually be the entire (or most of the visible) palette, so it probably wasn't an application setting SetSystemPaletteUse. We added a SetSystemPaletteUse(dc,SYSPAL_NOSTATIC256) call, and it helped in some situations, but hasn't resolved the main problem. Palette space is tight as it is, so we'd rather stay with our occasional flickering than repalletise game or user content.http://stackoverflow.com/questions/1008803/how-to-use-pure-in-d-2-0/1008874#1008874Comment by CyberShadow on How to use pure in D 2.0CyberShadow2009-06-17T19:16:16Z2009-06-17T19:16:16ZThe pure function will return different instances of the same value. It's obvious that the pointers can't be identical for the two instances. I think it's clear what is meant here - you're not supposed to use the results' addresses (otherwise - see my comment above).