Mercurial > pub > dyncall > dyncall
annotate dyncallback/dyncall_callback_ppc32.c @ 384:2144287113df r1.2-RC1
- prep for 1.2 release candidate
author | Tassilo Philipp |
---|---|
date | Wed, 20 Jan 2021 17:50:14 +0100 |
parents | f5577f6bf97a |
children | 71c884e610f0 |
rev | line source |
---|---|
0 | 1 /* |
2 | |
3 Package: dyncall | |
4 Library: dyncallback | |
5 File: dyncallback/dyncall_callback_ppc32.c | |
6 Description: Callback - Implementation Header for ppc32 | |
7 License: | |
8 | |
281 | 9 Copyright (c) 2007-2018 Daniel Adler <dadler@uni-goettingen.de>, |
0 | 10 Tassilo Philipp <tphilipp@potion-studios.com> |
11 | |
12 Permission to use, copy, modify, and distribute this software for any | |
13 purpose with or without fee is hereby granted, provided that the above | |
14 copyright notice and this permission notice appear in all copies. | |
15 | |
16 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
17 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
18 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | |
19 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | |
20 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | |
21 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | |
22 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
23 | |
24 */ | |
25 | |
26 | |
27 #include "dyncall_callback.h" | |
152
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
28 #include "dyncall_alloc_wx.h" |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
29 #include "dyncall_thunk.h" |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
30 |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
31 /* Callback symbol. */ |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
32 extern void dcCallbackThunkEntry(); |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
33 |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
34 struct DCCallback |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
35 { |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
36 DCThunk thunk; /* offset 0 size 24 */ |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
37 DCCallbackHandler* handler; /* offset 24 size 4 */ |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
38 size_t stack_cleanup; /* offset 28 size 4 */ |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
39 void* userdata; /* offset 32 size 4 */ |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
40 }; /* total size 36 */ |
d48a8b8d2ef9
- integrated all headers containing DCCallback definition into the translation units used (arm64 already avoided this pointless header, so following that style)
cslag
parents:
0
diff
changeset
|
41 |
0 | 42 |
43 void dcbInitCallback(DCCallback* pcb, const char* signature, DCCallbackHandler* handler, void* userdata) | |
44 { | |
45 const char* ptr; | |
46 char ch; | |
47 | |
48 pcb->handler = handler; | |
49 pcb->userdata = userdata; | |
50 } | |
51 | |
52 DCCallback* dcbNewCallback(const char* signature, DCCallbackHandler* handler, void* userdata) | |
53 { | |
54 DCCallback* pcb; | |
55 int err = dcAllocWX(sizeof(DCCallback), (void**) &pcb); | |
202 | 56 if(err) |
57 return NULL; | |
0 | 58 |
59 dcbInitThunk(&pcb->thunk, dcCallbackThunkEntry); | |
60 dcbInitCallback(pcb, signature, handler, userdata); | |
61 | |
202 | 62 err = dcInitExecWX(pcb, sizeof(DCCallback)); |
63 if(err) { | |
64 dcFreeWX(pcb, sizeof(DCCallback)); | |
65 return NULL; | |
66 } | |
67 | |
0 | 68 return pcb; |
69 } | |
70 | |
71 void dcbFreeCallback(DCCallback* pcb) | |
72 { | |
73 dcFreeWX(pcb, sizeof(DCCallback)); | |
74 } | |
75 | |
76 void* dcbGetUserData(DCCallback* pcb) | |
77 { | |
78 return pcb->userdata; | |
79 } |