-
💬 @metuxReporterAre you sure you load symbols like "rrPrivKey" ? (these are #define's)
By the way, are you sure you really need them ? These are pretty internal.
Note: if you need to attach your own private data somewhere, you should define your own keys for that (don't abuse anybody else's).
-
rrPrivKey
was a real symbol in video driver ABI versions 4 through 7:abi4/xorg/randrstr.h:extern DevPrivateKey rrPrivKey; abi5/xorg/randrstr.h:extern DevPrivateKey rrPrivKey; abi6/xorg/randrstr.h:extern _X_EXPORT DevPrivateKey rrPrivKey; abi7/xorg/randrstr.h:extern _X_EXPORT DevPrivateKey rrPrivKey;
It became a define in commit faeebead.
We only support ABIs >= 6 in modern drivers, although I'm trying to raise the minimum eventually.
We do use these symbols for various things in the driver. If you are interested in removing one from the API or have a question about what we need it for, please let me know.
Please register or sign in to comment