1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
|
import binaryninja
import ctypes, os
from typing import Optional
from . import sharedcache_enums
# Load core module
import platform
core = None
core_platform = platform.system()
# By the time the debugger is loaded, binaryninja has not fully initialized.
# So we cannot call binaryninja.bundled_plugin_path()
from binaryninja._binaryninjacore import BNGetBundledPluginDirectory, BNFreeString
if core_platform == "Darwin":
_base_path = BNGetBundledPluginDirectory()
core = ctypes.CDLL(os.path.join(_base_path, "libsharedcache.dylib"))
elif core_platform == "Linux":
_base_path = BNGetBundledPluginDirectory()
core = ctypes.CDLL(os.path.join(_base_path, "libsharedcache.so"))
elif (core_platform == "Windows") or (core_platform.find("CYGWIN_NT") == 0):
_base_path = BNGetBundledPluginDirectory()
core = ctypes.CDLL(os.path.join(_base_path, "sharedcache.dll"))
else:
raise Exception("OS not supported")
def cstr(var) -> Optional[ctypes.c_char_p]:
if var is None:
return None
if isinstance(var, bytes):
return var
return var.encode("utf-8")
def pyNativeStr(arg):
if isinstance(arg, str):
return arg
else:
return arg.decode('utf8')
def free_string(value:ctypes.c_char_p) -> None:
BNFreeString(ctypes.cast(value, ctypes.POINTER(ctypes.c_byte)))
# Type definitions
from binaryninja._binaryninjacore import BNBinaryView, BNBinaryViewHandle
class BNDSCBackingCache(ctypes.Structure):
@property
def path(self):
return pyNativeStr(self._path)
@path.setter
def path(self, value):
self._path = cstr(value)
BNDSCBackingCacheHandle = ctypes.POINTER(BNDSCBackingCache)
class BNDSCBackingCacheMapping(ctypes.Structure):
pass
BNDSCBackingCacheMappingHandle = ctypes.POINTER(BNDSCBackingCacheMapping)
class BNDSCImage(ctypes.Structure):
@property
def name(self):
return pyNativeStr(self._name)
@name.setter
def name(self, value):
self._name = cstr(value)
BNDSCImageHandle = ctypes.POINTER(BNDSCImage)
class BNDSCImageMemoryMapping(ctypes.Structure):
@property
def filePath(self):
return pyNativeStr(self._filePath)
@filePath.setter
def filePath(self, value):
self._filePath = cstr(value)
@property
def name(self):
return pyNativeStr(self._name)
@name.setter
def name(self, value):
self._name = cstr(value)
BNDSCImageMemoryMappingHandle = ctypes.POINTER(BNDSCImageMemoryMapping)
class BNDSCMappedMemoryRegion(ctypes.Structure):
@property
def name(self):
return pyNativeStr(self._name)
@name.setter
def name(self, value):
self._name = cstr(value)
BNDSCMappedMemoryRegionHandle = ctypes.POINTER(BNDSCMappedMemoryRegion)
class BNDSCMemoryUsageInfo(ctypes.Structure):
pass
BNDSCMemoryUsageInfoHandle = ctypes.POINTER(BNDSCMemoryUsageInfo)
class BNDSCSymbolRep(ctypes.Structure):
@property
def name(self):
return pyNativeStr(self._name)
@name.setter
def name(self, value):
self._name = cstr(value)
@property
def image(self):
return pyNativeStr(self._image)
@image.setter
def image(self, value):
self._image = cstr(value)
BNDSCSymbolRepHandle = ctypes.POINTER(BNDSCSymbolRep)
DSCViewLoadProgressEnum = ctypes.c_int
DSCViewStateEnum = ctypes.c_int
class BNSharedCache(ctypes.Structure):
pass
BNSharedCacheHandle = ctypes.POINTER(BNSharedCache)
# Structure definitions
BNDSCBackingCache._fields_ = [
("_path", ctypes.c_char_p),
("isPrimary", ctypes.c_bool),
("mappings", ctypes.POINTER(BNDSCBackingCacheMapping)),
("mappingCount", ctypes.c_ulonglong),
]
BNDSCBackingCacheMapping._fields_ = [
("vmAddress", ctypes.c_ulonglong),
("size", ctypes.c_ulonglong),
("fileOffset", ctypes.c_ulonglong),
]
BNDSCImage._fields_ = [
("_name", ctypes.c_char_p),
("headerAddress", ctypes.c_ulonglong),
("mappings", ctypes.POINTER(BNDSCImageMemoryMapping)),
("mappingCount", ctypes.c_ulonglong),
]
BNDSCImageMemoryMapping._fields_ = [
("_filePath", ctypes.c_char_p),
("_name", ctypes.c_char_p),
("vmAddress", ctypes.c_ulonglong),
("size", ctypes.c_ulonglong),
("loaded", ctypes.c_bool),
("rawViewOffset", ctypes.c_ulonglong),
]
BNDSCMappedMemoryRegion._fields_ = [
("vmAddress", ctypes.c_ulonglong),
("size", ctypes.c_ulonglong),
("_name", ctypes.c_char_p),
]
BNDSCMemoryUsageInfo._fields_ = [
("sharedCacheRefs", ctypes.c_ulonglong),
("mmapRefs", ctypes.c_ulonglong),
]
BNDSCSymbolRep._fields_ = [
("address", ctypes.c_ulonglong),
("_name", ctypes.c_char_p),
("_image", ctypes.c_char_p),
]
# Function definitions
# -------------------------------------------------------
# _BNDSCFindSymbolAtAddressAndApplyToAddress
_BNDSCFindSymbolAtAddressAndApplyToAddress = core.BNDSCFindSymbolAtAddressAndApplyToAddress
_BNDSCFindSymbolAtAddressAndApplyToAddress.restype = None
_BNDSCFindSymbolAtAddressAndApplyToAddress.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.c_ulonglong,
ctypes.c_ulonglong,
ctypes.c_bool,
]
# noinspection PyPep8Naming
def BNDSCFindSymbolAtAddressAndApplyToAddress(
cache: ctypes.POINTER(BNSharedCache),
symbolLocation: int,
targetLocation: int,
triggerReanalysis: bool
) -> None:
return _BNDSCFindSymbolAtAddressAndApplyToAddress(cache, symbolLocation, targetLocation, triggerReanalysis)
# -------------------------------------------------------
# _BNDSCViewFastGetBackingCacheCount
_BNDSCViewFastGetBackingCacheCount = core.BNDSCViewFastGetBackingCacheCount
_BNDSCViewFastGetBackingCacheCount.restype = ctypes.c_ulonglong
_BNDSCViewFastGetBackingCacheCount.argtypes = [
ctypes.POINTER(BNBinaryView),
]
# noinspection PyPep8Naming
def BNDSCViewFastGetBackingCacheCount(
view: ctypes.POINTER(BNBinaryView)
) -> int:
return _BNDSCViewFastGetBackingCacheCount(view)
# -------------------------------------------------------
# _BNDSCViewFreeAllImages
_BNDSCViewFreeAllImages = core.BNDSCViewFreeAllImages
_BNDSCViewFreeAllImages.restype = None
_BNDSCViewFreeAllImages.argtypes = [
ctypes.POINTER(BNDSCImage),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNDSCViewFreeAllImages(
images: ctypes.POINTER(BNDSCImage),
count: int
) -> None:
return _BNDSCViewFreeAllImages(images, count)
# -------------------------------------------------------
# _BNDSCViewFreeBackingCaches
_BNDSCViewFreeBackingCaches = core.BNDSCViewFreeBackingCaches
_BNDSCViewFreeBackingCaches.restype = None
_BNDSCViewFreeBackingCaches.argtypes = [
ctypes.POINTER(BNDSCBackingCache),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNDSCViewFreeBackingCaches(
caches: ctypes.POINTER(BNDSCBackingCache),
count: int
) -> None:
return _BNDSCViewFreeBackingCaches(caches, count)
# -------------------------------------------------------
# _BNDSCViewFreeLoadedRegions
_BNDSCViewFreeLoadedRegions = core.BNDSCViewFreeLoadedRegions
_BNDSCViewFreeLoadedRegions.restype = None
_BNDSCViewFreeLoadedRegions.argtypes = [
ctypes.POINTER(BNDSCMappedMemoryRegion),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNDSCViewFreeLoadedRegions(
images: ctypes.POINTER(BNDSCMappedMemoryRegion),
count: int
) -> None:
return _BNDSCViewFreeLoadedRegions(images, count)
# -------------------------------------------------------
# _BNDSCViewFreeSymbols
_BNDSCViewFreeSymbols = core.BNDSCViewFreeSymbols
_BNDSCViewFreeSymbols.restype = None
_BNDSCViewFreeSymbols.argtypes = [
ctypes.POINTER(BNDSCSymbolRep),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNDSCViewFreeSymbols(
symbols: ctypes.POINTER(BNDSCSymbolRep),
count: int
) -> None:
return _BNDSCViewFreeSymbols(symbols, count)
# -------------------------------------------------------
# _BNDSCViewGetAllImages
_BNDSCViewGetAllImages = core.BNDSCViewGetAllImages
_BNDSCViewGetAllImages.restype = ctypes.POINTER(BNDSCImage)
_BNDSCViewGetAllImages.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.POINTER(ctypes.c_ulonglong),
]
# noinspection PyPep8Naming
def BNDSCViewGetAllImages(
cache: ctypes.POINTER(BNSharedCache),
count: ctypes.POINTER(ctypes.c_ulonglong)
) -> Optional[ctypes.POINTER(BNDSCImage)]:
result = _BNDSCViewGetAllImages(cache, count)
if not result:
return None
return result
# -------------------------------------------------------
# _BNDSCViewGetBackingCaches
_BNDSCViewGetBackingCaches = core.BNDSCViewGetBackingCaches
_BNDSCViewGetBackingCaches.restype = ctypes.POINTER(BNDSCBackingCache)
_BNDSCViewGetBackingCaches.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.POINTER(ctypes.c_ulonglong),
]
# noinspection PyPep8Naming
def BNDSCViewGetBackingCaches(
cache: ctypes.POINTER(BNSharedCache),
count: ctypes.POINTER(ctypes.c_ulonglong)
) -> Optional[ctypes.POINTER(BNDSCBackingCache)]:
result = _BNDSCViewGetBackingCaches(cache, count)
if not result:
return None
return result
# -------------------------------------------------------
# _BNDSCViewGetImageHeaderForAddress
_BNDSCViewGetImageHeaderForAddress = core.BNDSCViewGetImageHeaderForAddress
_BNDSCViewGetImageHeaderForAddress.restype = ctypes.POINTER(ctypes.c_byte)
_BNDSCViewGetImageHeaderForAddress.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNDSCViewGetImageHeaderForAddress(
cache: ctypes.POINTER(BNSharedCache),
address: int
) -> Optional[Optional[str]]:
result = _BNDSCViewGetImageHeaderForAddress(cache, address)
if not result:
return None
string = str(pyNativeStr(ctypes.cast(result, ctypes.c_char_p).value))
BNFreeString(result)
return string
# -------------------------------------------------------
# _BNDSCViewGetImageHeaderForName
_BNDSCViewGetImageHeaderForName = core.BNDSCViewGetImageHeaderForName
_BNDSCViewGetImageHeaderForName.restype = ctypes.POINTER(ctypes.c_byte)
_BNDSCViewGetImageHeaderForName.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.c_char_p,
]
# noinspection PyPep8Naming
def BNDSCViewGetImageHeaderForName(
cache: ctypes.POINTER(BNSharedCache),
name: Optional[str]
) -> Optional[Optional[str]]:
result = _BNDSCViewGetImageHeaderForName(cache, cstr(name))
if not result:
return None
string = str(pyNativeStr(ctypes.cast(result, ctypes.c_char_p).value))
BNFreeString(result)
return string
# -------------------------------------------------------
# _BNDSCViewGetImageNameForAddress
_BNDSCViewGetImageNameForAddress = core.BNDSCViewGetImageNameForAddress
_BNDSCViewGetImageNameForAddress.restype = ctypes.POINTER(ctypes.c_byte)
_BNDSCViewGetImageNameForAddress.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNDSCViewGetImageNameForAddress(
cache: ctypes.POINTER(BNSharedCache),
address: int
) -> Optional[Optional[str]]:
result = _BNDSCViewGetImageNameForAddress(cache, address)
if not result:
return None
string = str(pyNativeStr(ctypes.cast(result, ctypes.c_char_p).value))
BNFreeString(result)
return string
# -------------------------------------------------------
# _BNDSCViewGetInstallNames
_BNDSCViewGetInstallNames = core.BNDSCViewGetInstallNames
_BNDSCViewGetInstallNames.restype = ctypes.POINTER(ctypes.c_char_p)
_BNDSCViewGetInstallNames.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.POINTER(ctypes.c_ulonglong),
]
# noinspection PyPep8Naming
def BNDSCViewGetInstallNames(
cache: ctypes.POINTER(BNSharedCache),
count: ctypes.POINTER(ctypes.c_ulonglong)
) -> Optional[ctypes.POINTER(ctypes.c_char_p)]:
result = _BNDSCViewGetInstallNames(cache, count)
if not result:
return None
return result
# -------------------------------------------------------
# _BNDSCViewGetLoadProgress
_BNDSCViewGetLoadProgress = core.BNDSCViewGetLoadProgress
_BNDSCViewGetLoadProgress.restype = DSCViewLoadProgressEnum
_BNDSCViewGetLoadProgress.argtypes = [
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNDSCViewGetLoadProgress(
sessionID: int
) -> DSCViewLoadProgressEnum:
return _BNDSCViewGetLoadProgress(sessionID)
# -------------------------------------------------------
# _BNDSCViewGetLoadedRegions
_BNDSCViewGetLoadedRegions = core.BNDSCViewGetLoadedRegions
_BNDSCViewGetLoadedRegions.restype = ctypes.POINTER(BNDSCMappedMemoryRegion)
_BNDSCViewGetLoadedRegions.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.POINTER(ctypes.c_ulonglong),
]
# noinspection PyPep8Naming
def BNDSCViewGetLoadedRegions(
cache: ctypes.POINTER(BNSharedCache),
count: ctypes.POINTER(ctypes.c_ulonglong)
) -> Optional[ctypes.POINTER(BNDSCMappedMemoryRegion)]:
result = _BNDSCViewGetLoadedRegions(cache, count)
if not result:
return None
return result
# -------------------------------------------------------
# _BNDSCViewGetMemoryUsageInfo
_BNDSCViewGetMemoryUsageInfo = core.BNDSCViewGetMemoryUsageInfo
_BNDSCViewGetMemoryUsageInfo.restype = BNDSCMemoryUsageInfo
_BNDSCViewGetMemoryUsageInfo.argtypes = [
]
# noinspection PyPep8Naming
def BNDSCViewGetMemoryUsageInfo(
) -> BNDSCMemoryUsageInfo:
return _BNDSCViewGetMemoryUsageInfo()
# -------------------------------------------------------
# _BNDSCViewGetNameForAddress
_BNDSCViewGetNameForAddress = core.BNDSCViewGetNameForAddress
_BNDSCViewGetNameForAddress.restype = ctypes.POINTER(ctypes.c_byte)
_BNDSCViewGetNameForAddress.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNDSCViewGetNameForAddress(
cache: ctypes.POINTER(BNSharedCache),
address: int
) -> Optional[Optional[str]]:
result = _BNDSCViewGetNameForAddress(cache, address)
if not result:
return None
string = str(pyNativeStr(ctypes.cast(result, ctypes.c_char_p).value))
BNFreeString(result)
return string
# -------------------------------------------------------
# _BNDSCViewGetState
_BNDSCViewGetState = core.BNDSCViewGetState
_BNDSCViewGetState.restype = DSCViewStateEnum
_BNDSCViewGetState.argtypes = [
ctypes.POINTER(BNSharedCache),
]
# noinspection PyPep8Naming
def BNDSCViewGetState(
cache: ctypes.POINTER(BNSharedCache)
) -> DSCViewStateEnum:
return _BNDSCViewGetState(cache)
# -------------------------------------------------------
# _BNDSCViewLoadAllSymbolsAndWait
_BNDSCViewLoadAllSymbolsAndWait = core.BNDSCViewLoadAllSymbolsAndWait
_BNDSCViewLoadAllSymbolsAndWait.restype = ctypes.POINTER(BNDSCSymbolRep)
_BNDSCViewLoadAllSymbolsAndWait.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.POINTER(ctypes.c_ulonglong),
]
# noinspection PyPep8Naming
def BNDSCViewLoadAllSymbolsAndWait(
cache: ctypes.POINTER(BNSharedCache),
count: ctypes.POINTER(ctypes.c_ulonglong)
) -> Optional[ctypes.POINTER(BNDSCSymbolRep)]:
result = _BNDSCViewLoadAllSymbolsAndWait(cache, count)
if not result:
return None
return result
# -------------------------------------------------------
# _BNDSCViewLoadImageContainingAddress
_BNDSCViewLoadImageContainingAddress = core.BNDSCViewLoadImageContainingAddress
_BNDSCViewLoadImageContainingAddress.restype = ctypes.c_bool
_BNDSCViewLoadImageContainingAddress.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNDSCViewLoadImageContainingAddress(
cache: ctypes.POINTER(BNSharedCache),
address: int
) -> bool:
return _BNDSCViewLoadImageContainingAddress(cache, address)
# -------------------------------------------------------
# _BNDSCViewLoadImageWithInstallName
_BNDSCViewLoadImageWithInstallName = core.BNDSCViewLoadImageWithInstallName
_BNDSCViewLoadImageWithInstallName.restype = ctypes.c_bool
_BNDSCViewLoadImageWithInstallName.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.c_char_p,
]
# noinspection PyPep8Naming
def BNDSCViewLoadImageWithInstallName(
cache: ctypes.POINTER(BNSharedCache),
name: Optional[str]
) -> bool:
return _BNDSCViewLoadImageWithInstallName(cache, cstr(name))
# -------------------------------------------------------
# _BNDSCViewLoadSectionAtAddress
_BNDSCViewLoadSectionAtAddress = core.BNDSCViewLoadSectionAtAddress
_BNDSCViewLoadSectionAtAddress.restype = ctypes.c_bool
_BNDSCViewLoadSectionAtAddress.argtypes = [
ctypes.POINTER(BNSharedCache),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNDSCViewLoadSectionAtAddress(
cache: ctypes.POINTER(BNSharedCache),
name: int
) -> bool:
return _BNDSCViewLoadSectionAtAddress(cache, name)
# -------------------------------------------------------
# _BNDSCViewLoadedImageCount
_BNDSCViewLoadedImageCount = core.BNDSCViewLoadedImageCount
_BNDSCViewLoadedImageCount.restype = ctypes.c_ulonglong
_BNDSCViewLoadedImageCount.argtypes = [
ctypes.POINTER(BNSharedCache),
]
# noinspection PyPep8Naming
def BNDSCViewLoadedImageCount(
cache: ctypes.POINTER(BNSharedCache)
) -> int:
return _BNDSCViewLoadedImageCount(cache)
# -------------------------------------------------------
# _BNFreeSharedCacheReference
_BNFreeSharedCacheReference = core.BNFreeSharedCacheReference
_BNFreeSharedCacheReference.restype = None
_BNFreeSharedCacheReference.argtypes = [
ctypes.POINTER(BNSharedCache),
]
# noinspection PyPep8Naming
def BNFreeSharedCacheReference(
cache: ctypes.POINTER(BNSharedCache)
) -> None:
return _BNFreeSharedCacheReference(cache)
# -------------------------------------------------------
# _BNGetSharedCache
_BNGetSharedCache = core.BNGetSharedCache
_BNGetSharedCache.restype = ctypes.POINTER(BNSharedCache)
_BNGetSharedCache.argtypes = [
ctypes.POINTER(BNBinaryView),
]
# noinspection PyPep8Naming
def BNGetSharedCache(
data: ctypes.POINTER(BNBinaryView)
) -> Optional[ctypes.POINTER(BNSharedCache)]:
result = _BNGetSharedCache(data)
if not result:
return None
return result
# -------------------------------------------------------
# _BNNewSharedCacheReference
_BNNewSharedCacheReference = core.BNNewSharedCacheReference
_BNNewSharedCacheReference.restype = ctypes.POINTER(BNSharedCache)
_BNNewSharedCacheReference.argtypes = [
ctypes.POINTER(BNSharedCache),
]
# noinspection PyPep8Naming
def BNNewSharedCacheReference(
cache: ctypes.POINTER(BNSharedCache)
) -> Optional[ctypes.POINTER(BNSharedCache)]:
result = _BNNewSharedCacheReference(cache)
if not result:
return None
return result
# Helper functions
def handle_of_type(value, handle_type):
if isinstance(value, ctypes.POINTER(handle_type)) or isinstance(value, ctypes.c_void_p):
return ctypes.cast(value, ctypes.POINTER(handle_type))
raise ValueError('expected pointer to %s' % str(handle_type))
|