Although, for DOS apps you can cheat because a .COM file doesn't need to have any of the extra information that an .EXE needs to be loaded properly (.com files are a maximum of 64K, and always loaded into the same memory location).
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You". -- Linus Torvalds
what project settings do you have? I have release, libs only user32.lib, CRT as dll, custom entry point:
Code:
void MyMain()
{
MessageBoxA(blabla);
}
and no header files, I declared MessageBoxA manually...
optimized for size (that won't do anything), the strings are both "" (saves 4k), subsystem windows...
any other things?
All the buzzt CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
thanks. I just managed to nearly block a Athlon 600 MHz with integer operations and a damn lot of function calls. I'll try to figure out how many exactly.
All the buzzt CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
too late. Loading your project somehow killed my VC++, the menu bar is missing
This is the same error some others here experienced. I'm off looking at the microsoft homepage for a solution...
All the buzzt CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
I uninstalled VC++, only to find that there is a solution without reinstalling it. Worst is, I can't find my installation CD now !!!
I DON'T HAVE VC++ AT THE MOMENT
All the buzzt CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.