Tagged Questions
1
vote
1answer
1k views
How do I write the following inline assembly code in Visual C++ 6.0?
I am writing an application in C in GCC (for Linux/Ubuntu) that uses the following inline assembly.
float a[4] = { 10, 20, 30, 40 };
float b[4] = { 0.1, 0.1, 0.1, 0.1 };
asm volatile("movups (%0), ...
0
votes
2answers
950 views
What library should be included to use TransparentBlt?
What library should be included to use TransparentBlt?
This is VC98 (Visual Studio 6) linking to the Gdi32.lib. (Other GDI functions such as BitBlt link as expected), and the compilers compiles with ...