vendor/github.com/inconshreveable/mousetrap/trap_others.go
changeset 242 2a9ec03fe5a1
child 265 05c40b36d3b2
equal deleted inserted replaced
241:e77dad242f4c 242:2a9ec03fe5a1
       
     1 // +build !windows
       
     2 
       
     3 package mousetrap
       
     4 
       
     5 // StartedByExplorer returns true if the program was invoked by the user
       
     6 // double-clicking on the executable from explorer.exe
       
     7 //
       
     8 // It is conservative and returns false if any of the internal calls fail.
       
     9 // It does not guarantee that the program was run from a terminal. It only can tell you
       
    10 // whether it was launched from explorer.exe
       
    11 //
       
    12 // On non-Windows platforms, it always returns false.
       
    13 func StartedByExplorer() bool {
       
    14 	return false
       
    15 }