Is there any way to create dialog-based window programa without importing functions from msvcrt.dll with dev-c++? ("Do not use standard system startup files or libraries" option turns on)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Just curious, because I' ve seen some dialogbox-based programs written in asm that didn't link to this library (msvcrt.dll). I wonder if dev-c++ can create the program like that.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
No. The functions are actually called at runtime, not imported into Dev-Cpp. All that is added to your program is the dll linkage, which is very small. Why do you want to do this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is there any way to create dialog-based window programa without importing functions from msvcrt.dll with dev-c++? ("Do not use standard system startup files or libraries" option turns on)
Just curious, because I' ve seen some dialogbox-based programs written in asm that didn't link to this library (msvcrt.dll). I wonder if dev-c++ can create the program like that.
No. The functions are actually called at runtime, not imported into Dev-Cpp. All that is added to your program is the dll linkage, which is very small. Why do you want to do this?