Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.3 KiB

  1. /****************************************************************************/
  2. /* apmapi.h */
  3. /* */
  4. /* RDP Palette Manager API Header File. */
  5. /* */
  6. /* Copyright(c) Microsoft, PictureTel 1992-1996 */
  7. /* (C) 1997-1999 Microsoft Corp. */
  8. /****************************************************************************/
  9. #ifndef _H_APMAPI
  10. #define _H_APMAPI
  11. #define PM_NUM_8BPP_PAL_ENTRIES 256
  12. /****************************************************************************/
  13. /* Structure: PM_SHARED_DATA */
  14. /* */
  15. /* Description: Palette Manager data shared between display driver and WD. */
  16. /****************************************************************************/
  17. typedef struct tagPM_SHARED_DATA
  18. {
  19. RGBQUAD palette[PM_NUM_8BPP_PAL_ENTRIES];
  20. BOOL paletteChanged;
  21. } PM_SHARED_DATA, *PPM_SHARED_DATA;
  22. #endif /* #ifndef _H_APMAPI */