More Music
Something I just put together is available right here if you can play Ogg Vorbis (which you should be able to, it's free!).
EDIT: If you don't want to deal with Ogg Vorbis, you can listen right here.
EDIT: If you don't want to deal with Ogg Vorbis, you can listen right here.
-
5600 is RC1, not post-RC1. It's great you get to see vista in all it's glory. I installed it on my brother's machine last weekend, and it worked really well (he has an audigy2, but he's running a 32-bit build) but Vista doesn't support his printer yet.
It seems to not be very efficient with virtual memory. At work I'll put it through some pretty heavy loads and programs start getting unresponsive because of paging. It's sad that anything can make my dev box feel overloaded. Hopefully the performance team will get this all fixed before it's shipped. I've got build 5600 on my laptop, and it's actually usable, unlike the beta2 that I had installed, so that was a rather impressive improvement.
Music (Edited)
-
I get a "Symbol Undefined: DirectDrawCreate@12" error even though I link ddraw.lib, ddraw.dll, and a definition file (ddraw.def) that I wrote to my project, which should fix the error. However, I just get a "Cannot Export: DirectDrawCreate" error instead, and I don't know what else I am supposed to do. I'm using Windows XP and DMC++ compiler.
Django-Powered Blog
I call it OJ. Note that the entire thing is about 300 lines of code.
The urls.py, settings.py.template, manage.py, and __init__.py files are automatically generated, too.
Just did a word count:
The urls.py, settings.py.template, manage.py, and __init__.py files are automatically generated, too.
Just did a word count:
$ wc -l `find . | grep -v ".svn"`(argh. this auto-br is killing me)
wc: .: Is a directory
0 .
wc: ./entries: Is a directory
0 ./entries
32 ./entries/models.py
wc: ./entries/templates: Is a directory
0 ./entries/templates
8 ./entries/templates/404.html
8 ./entries/templates/500.html
30 ./entries/templates/base.html
90 ./entries/templates/css.html
28 ./entries/templates/detail.html
24 ./entries/templates/index.html
12 ./entries/urls.py
45 ./entries/views.py
0 ./entries/__init__.py
11 ./manage.py
74 ./settings.py.template
9 ./urls.py
0 ./__init__.py
371 total

I'm writing a graphics engine (ambitious, I know) and I need to use the BIOS. I'm operating under Windows XP and can write in assembly or C/C++. Does anyone know how to a) use interrupts in a Win32 application or b) use API in a DOS application?
Thanks a ton!
I need interrupts to interact directly with the hardware (speakers, video memory, etc.). Every time I try in C/C++ with an asm block, the program crashes. I have been able to use int86 in the past, but I cannot find the library in which it is defined. The same happens with PE format assembly, which I need to use to access the Windows API for functions like ExitProcess. I haven't figured out how that can be done in DOS because the PE format usually holds the import data, which in not in DOS executeables. I considered a device driver, so I could call interrupts "legally" from a Win32 application, but the only compiler I have that can accomplish that is Miracle C. I can't find a Windows NT device driver written in C anywhere. It comes to this: I need a few things from DOS and a few things from Windows, but I cannot use them together.