C++, Progam Detection -


i want detect if window/process running, , if does, make c++ program close.

something this:

    if (findwindow(null, text("fiddler"))) {         ;         std::exit              ;     } 

it doesn't works reason.

why have random semi-colons floating in space?

this code should like:

if (findwindow(null, text("fiddler")) != null) {     std::exit(0); } 

Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

Error while updating a record in APEX screen -

c++ - In an add-in in Excel, written in C(++), how does one get the name of the function which called into the addin? -