Mercurial > libanimone
comparison include/animone/types.h @ 28:fac2b2d242d3
animone: add preliminary AT-SPI stuff
anime_list: finish the regular singular right click menu
| author | Paper <paper@tflc.us> |
|---|---|
| date | Sun, 17 Nov 2024 19:56:01 -0500 |
| parents | 77a5ea5e996c |
| children |
comparison
equal
deleted
inserted
replaced
| 27:13b647714159 | 28:fac2b2d242d3 |
|---|---|
| 27 using pid_t = ::pid_t; | 27 using pid_t = ::pid_t; |
| 28 #endif | 28 #endif |
| 29 | 29 |
| 30 /* different window systems have different sized IDs */ | 30 /* different window systems have different sized IDs */ |
| 31 union ANIMONE_API wid_t { | 31 union ANIMONE_API wid_t { |
| 32 std::uintptr_t win32; | 32 std::uintptr_t win32; // XXX this ought to be a `void *` |
| 33 std::int64_t quartz; // FIXME is this correct? | 33 std::int64_t quartz; // FIXME is this correct? |
| 34 std::uint32_t x11; | 34 std::uint32_t x11; |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 } | 37 } |
