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
418 B

  1. //
  2. // Received Bitmap Cache
  3. //
  4. #ifndef _H_RBC
  5. #define _H_RBC
  6. //
  7. // Number of RGB entries in the colour tables.
  8. //
  9. #define RBC_MAX_PALETTE_ENTRIES 256
  10. //
  11. // Information stored for each remote host.
  12. //
  13. typedef struct tagRBC_HOST_INFO
  14. {
  15. STRUCTURE_STAMP
  16. BMC_DIB_CACHE bitmapCache[NUM_BMP_CACHES];
  17. }
  18. RBC_HOST_INFO;
  19. typedef RBC_HOST_INFO * PRBC_HOST_INFO;
  20. #endif // _H_RBC