Skip to content

Commit b44258e

Browse files
author
brett hartshorn
committed
generated new libvnc server and client wrappers
1 parent 7e7364a commit b44258e

6 files changed

Lines changed: 11244 additions & 3 deletions

File tree

examples/inotify-helloworld.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def loop( fd ):
2929
#print('wd',event.wd)
3030
#print('mask',event.mask)
3131
#print('cookie',event.cookie)
32-
#print('len', event.C_len)
32+
#print('len', event.len)
3333

3434
mask = event.mask
3535
if mask & inotify.ACCESS: print( 'access file' )

examples/inotify/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ class inotify_event(_rpythonic_struct_): _array_wrapper_ = True
768768
( "wd", ctypes.c_int ),
769769
( "mask", ctypes.c_uint32 ),
770770
( "cookie", ctypes.c_uint32 ),
771-
( "C_len", ctypes.c_uint32 ),
771+
( "len", ctypes.c_uint32 ),
772772
( "name", ctypes.c_char ),
773773
])
774774

@@ -797,4 +797,4 @@ class inotify_event(_rpythonic_struct_): _array_wrapper_ = True
797797
_rpythonic_setup_return_wrappers()
798798
_rpythonic_make_nice_global_enums_()
799799
_rpythonic_clean_up_missing_functions_()
800-
_rpythonic_strip_prefixes_(['inotify_', 'IN_'])
800+
_rpythonic_strip_prefixes_(['inotify_', 'IN_'])

0 commit comments

Comments
 (0)