Source code of Windows XP (NT5)
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.

21 lines
362 B

  1. /****** VIDFILE.H ******/
  2. #ifndef VIDFILE
  3. #define VIDFILE
  4. typedef struct
  5. {
  6. word DispWidth;
  7. word DispHeight;
  8. word PixDepth;
  9. word RefreshRate;
  10. Vidset VideoSet;
  11. } ResParamSet;
  12. #ifdef WINDOWS_NT
  13. #pragma pack( )
  14. #endif
  15. extern word ConvBitToFreq (word BitFreq);
  16. extern ResParamSet ResParam[100];
  17. #endif