JWM Source Documentation
screen.h
Go to the documentation of this file.
00001 00014 #ifndef SCREEN_H 00015 #define SCREEN_H 00016 00018 typedef struct ScreenType { 00019 int index; 00020 int x, y; 00021 int width, height; 00022 } ScreenType; 00023 00024 void InitializeScreens(); 00025 void StartupScreens(); 00026 void ShutdownScreens(); 00027 void DestroyScreens(); 00028 00034 const ScreenType *GetCurrentScreen(int x, int y); 00035 00039 const ScreenType *GetMouseScreen(); 00040 00045 const ScreenType *GetScreen(int index); 00046 00050 int GetScreenCount(); 00051 00052 #endif /* SCREEN_H */ 00053