Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Quickie: where (in which header files) can I find the declarations of the parameters of the ioctl() call on iOS? I've already looked at ioctl.h and the first-level includes it imports, but I'm not sure whether they're the only place to search through. In particluar, I'd be interested in using this function to control some special hardware features (like accessing the accelerometer or the vibrate motor).

share|improve this question
Do explain the downvote. – H2CO3 May 1 at 18:15

1 Answer

up vote 2 down vote accepted

In the general sense, you can't know everywhere that an ioctl can be defined, because the parameters to ioctl are in general simply integers.

In practice, if you poke around the entire set of available .h files you'll find all sorts of things -- but Apple could easily conceal that from you by simply not supplying a particular .h file with the public SDK.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.