home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / video / aviview / aviview.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-05  |  1.3 KB  |  48 lines

  1. /**************************************************************************
  2.  *
  3.  *  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4.  *  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5.  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6.  *  PURPOSE.
  7.  *
  8.  *  Copyright (C) 1993 - 1997  Microsoft Corporation.  All Rights Reserved.
  9.  *
  10.  **************************************************************************/
  11.  
  12. #define ID_APP      1000
  13.  
  14. /* Menu Items */
  15. #define MENU_ABOUT          20
  16.  
  17. #define MENU_EXIT           4
  18. #define MENU_BALL        99
  19. #define MENU_OPEN           11
  20. #define    MENU_NEW        10
  21. #define MENU_ADD        17
  22. #define MENU_NEWPALETTE     12
  23. #define MENU_SAVEAS         13
  24. #define MENU_OPTIONS        15
  25.  
  26. #define MENU_ZOOMQUARTER    54
  27. #define MENU_ZOOMHALF        50
  28. #define MENU_ZOOM1        51
  29. #define MENU_ZOOM2        52
  30. #define MENU_ZOOM4        53
  31.  
  32. #define MENU_PLAY        100
  33. #define MENU_PAUSE        101
  34. #define MENU_STOP           102
  35.  
  36. // Dialogs
  37. #define IDD_ABOUT           301
  38. #define IDD_NCOLORS         302
  39. #define IDS_PALETTE         303
  40. #define IDC_NCOLORS         400
  41.  
  42. #ifdef DEBUG
  43.     extern void CDECL dprintf(LPSTR, ...);
  44.     #define DPF dprintf
  45. #else
  46.     #define DPF / ## /
  47. #endif
  48.