Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
1k views

How can I calculate the complete buffer size for GetModuleFileName?

The GetModuleFileName() takes a buffer and size of buffer as input; however its return value can only tell us how many characters is has copied, and if the size is not enough ...
2
votes
2answers
330 views

GetModuleFileNameA returns weird results

I'm trying to get the name of a module loaded in another process with GetModuleFileNameA. I've loaded a symbol using dbgHelp and got its module base address but 2 weird thing happen: 1. Sometimes ...
1
vote
3answers
169 views

Does Chicken Scheme have an equivalent to Perl's $0?

How can I reliably get the script name in Chicken Scheme? It seems that -ss eats up the script name, so it's not visible unless I use dot slash to run my scripts. scriptedmain.scm: #!/usr/bin/env ...
0
votes
1answer
160 views

How to find the parent exe of a dll from inside the dll?

I need to do some stuff in a dll based on which process has loaded it. So being relatively new to windows programming I need help figuring out how to find the exe which loaded the current dll. So far ...
0
votes
1answer
153 views

GetModuleFileName Antivirus False Detection ??? Get current process PATH

Hellow I am trying to retrive path off current process... here is my first code: #include <windows.h> #include <iostream> using namespace std; int CALLBACK WinMain( HINSTANCE ...
-1
votes
1answer
137 views

Does Clojure have an equivalent to Python's if __name__==“__main__”? [closed]

Possible Duplicate: What is the clojure equivalent of the Python idiom “if name == 'main'”? I would use -main, but it only runs in compiled mode, not interpreted mode. ...