Search Results

2
votes

How can I change the text color in the windows command prompt

You need to access the Win32 Console API. Unfortunately, I don't know how you'd do that from Ruby. In P …
3
votes

What are good grep tool for Windows?

ack works well on Windows (if you've got Perl). I find it better than grep for many uses. …
0
votes

Clock drift on Windows

I believe Windows Time Service only implements SNTP, which is a simplified version of NTP. A full NTP implementation takes into account the stability of your clock in deciding how often to sync. …
5
votes

Programmatically updating FILEVERSION in a MFC app w/SVN revision number

An .rc file can #include header files just like .c files can. I have an auto-generated version.h file, which defines things like: …
5
votes

EWOULDBLOCK equivalent errno under Windows Perl

For the Windows-specific error code, you want to use $^E. In this case, it's 33: "The process cannot access the file because another process has locked a portion of the file" (E …
7
votes

Create aliases in emacs?

I'm not really clear on what you're asking for. I store my commonly-used files in registers in my .emacs: (set-register ?c '(file . "c:/data/common.txt")) (set-register ?f '(file . …
0
votes

Create aliases in emacs?

If you want an alias to a function, you use defalias: (defalias 'nuke 'delete-trailing-whitespace) But if you're complaining that Emacs's function nam …
3
votes

How to prevent Windows XP from stealing my input Ctrl-Space which is meant for Emacs

Go to the Regional and Language Options Control Panel. Click the Languages tab, then the Details... button. Click the Key Settings... button. Double-click each entry in the "Hot keys for input l …
7
votes

How can I run Cygwin Bash Shell from within Emacs?

shell-file-name is the variable that controls which shell Emacs uses when it wants to run a shell command. explicit-shell-file-name is the variable that controls w …
1
vote

How do I call a Win32 DLL void** parameter using Win32::API?

The variable associated with a P parameter must be a pre-allocated string variable, not an integer. Try something like: my $pResult = "\0" x 8; # Just in ca …
13
votes

Good C++ directory and file library?

Try the Boost.Filesystem library. …
2
votes

Setting Access permissions on Semaphore?

For the record, I'm the author of Win32::Semaphore. As mobrule and Rob have explained, Windows security is user/gro …