| 25 PROP_0, |
25 PROP_0, |
| 26 PROP_CONNECTION, |
26 PROP_CONNECTION, |
| 27 N_PROPERTIES, |
27 N_PROPERTIES, |
| 28 }; |
28 }; |
| 29 static GParamSpec *properties[N_PROPERTIES] = {NULL, }; |
29 static GParamSpec *properties[N_PROPERTIES] = {NULL, }; |
| |
30 |
| |
31 /* Windows is does something weird with signal handling that includes defining |
| |
32 * SIG_ACK. We don't care about that here, so we undef it if we find it. |
| |
33 * See https://learn.microsoft.com/en-us/cpp/c-runtime-library/signal-action-constants?view=msvc-170 |
| |
34 */ |
| |
35 #ifdef SIG_ACK |
| |
36 # undef SIG_ACK |
| |
37 #endif /* SIG_ACK */ |
| 30 |
38 |
| 31 enum { |
39 enum { |
| 32 SIG_READY, |
40 SIG_READY, |
| 33 SIG_ACK, |
41 SIG_ACK, |
| 34 SIG_NAK, |
42 SIG_NAK, |