projects
/
invirt/packages/python-afs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add a comment explaining the ubik_client struct.
[invirt/packages/python-afs.git]
/
afs
/
afs.pxd
1
cdef extern from "afs/stds.h":
2
ctypedef long afs_int32
3
4
cdef extern from "ubik.h":
5
enum:
6
MAXSERVERS
7
8
# ubik_client is an opaque struct, so we don't care about its members
9
struct ubik_client:
10
pass
11
12
cdef extern from "rx/rx.h":
13
int rx_Init(int port)
14
void rx_Finalize()