home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
misc
/
vfwdk
/
samples
/
movplay
/
movplay.h
< prev
next >
Wrap
Text File
|
1993-01-26
|
908b
|
36 lines
/*---------------------------------------------------------------------
|
| MovPlay.h - Movie player include file
|
|
| Copyright (c) 1992, 1993 Microsoft Corporation. All Rights Reserved.
|
| You have a royalty-free right to use, modify, reproduce and
| distribute the Sample Files (and/or any modified version) in
| any way you find useful, provided that you agree that
| Microsoft has no warranty obligations or liability for any
| Sample Application Files.
|
|
+-------------------------------------------------------------------*/
/* constants */
#define BUFFER_LENGTH 256
/* Menu items */
/* File menu */
#define IDM_OPEN 1
#define IDM_CLOSE 2
#define IDM_EXIT 3
#define IDM_ANOTHER 4
/* Movie menu */
#define IDM_PLAY 10
#define IDM_HOME 11
#define IDM_END 12
#define IDM_STEP 13
#define IDM_RSTEP 14
#define IDM_RPLAY 15