MCPcopy Create free account
hub / github.com/ValveSoftware/Proton / is_pointer_pointer

Function is_pointer_pointer

lsteamclient/gen_wrapper.py:934–941  ·  view source on GitHub ↗
(decl)

Source from the content-addressed store, hash-verified

932
933
934def is_pointer_pointer(decl):
935 if type(decl) is Cursor:
936 decl = decl.type
937 decl = decl.get_canonical()
938 if decl.kind != TypeKind.POINTER:
939 return False
940 decl = decl.get_pointee().get_canonical()
941 return decl.kind == TypeKind.POINTER
942
943
944def param_needs_conversion(decl, wow64):

Callers 1

param_needs_conversionFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected