mit neuen venv und exe-Files
This commit is contained in:
34
venv3_12/Lib/site-packages/ordlookup/__init__.py
Normal file
34
venv3_12/Lib/site-packages/ordlookup/__init__.py
Normal file
@@ -0,0 +1,34 @@
|
||||
from . import ws2_32
|
||||
from . import oleaut32
|
||||
|
||||
"""
|
||||
A small module for keeping a database of ordinal to symbol
|
||||
mappings for DLLs which frequently get linked without symbolic
|
||||
infoz.
|
||||
"""
|
||||
|
||||
ords = {
|
||||
b"ws2_32.dll": ws2_32.ord_names,
|
||||
b"wsock32.dll": ws2_32.ord_names,
|
||||
b"oleaut32.dll": oleaut32.ord_names,
|
||||
}
|
||||
|
||||
|
||||
def formatOrdString(ord_val):
|
||||
return "ord{}".format(ord_val).encode()
|
||||
|
||||
|
||||
def ordLookup(libname, ord_val, make_name=False):
|
||||
"""
|
||||
Lookup a name for the given ordinal if it's in our
|
||||
database.
|
||||
"""
|
||||
names = ords.get(libname.lower())
|
||||
if names is None:
|
||||
if make_name is True:
|
||||
return formatOrdString(ord_val)
|
||||
return None
|
||||
name = names.get(ord_val)
|
||||
if name is None:
|
||||
return formatOrdString(ord_val)
|
||||
return name
|
||||
Reference in New Issue
Block a user