/* * MacFUSE-Based procfs */ #ifndef _PROCFS_DISPLAYS_H_ #define _PROCFS_DISPLAYS_H_ #include #include extern "C" { CGDisplayCount PROCFS_GetDisplayCount(void); int PROCFS_GetInfoForDisplayAtIndex(unsigned int index, char *buf, size_t *size); int PROCFS_GetPNGForDisplayAtIndex(unsigned int index, CFMutableDataRef *data); off_t PROCFS_GetPNGSizeForDisplayAtIndex(unsigned int index); } /* extern "C" */ #endif /* _PROCFS_DISPLAYS_H_ */