Hello,
Does anyone know of a way to call the Windows functions GlobalGetAtomName/GlobalDeleteAtom from EventGhost?
GlobalGetAtomName: http://msdn.microsoft.com/en-us/library ... 85%29.aspx
GlobalDeleteAtom: http://msdn.microsoft.com/en-us/library ... 85%29.aspx
Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
GlobalGetAtomName/GlobalDeleteAtom from EventGhost?
Re: GlobalGetAtomName/GlobalDeleteAtom from EventGhost?
use a python script.
GlobalGetAtomName python example
Code: Select all
from winappdbg.win32 import GlobalGetAtomName, MAXINTATOM
# print all valid named global atoms to standard output
def print_atoms():
for x in xrange(0, MAXINTATOM):
try:
n = GlobalGetAtomName(x)
if n == "#%d" % x: # comment out to print
continue # valid numeric atoms
print "Atom %4x: %r" % (x, n)
except WindowsError:
pass
Re: GlobalGetAtomName/GlobalDeleteAtom from EventGhost?
I forgot to reply a long time... Thanks for the help. 