24 lines
875 B
C
24 lines
875 B
C
/* ##H_FILE#
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
FILE : UserMessage.h
|
|
|
|
DESCRIPTION : Include file of VDO module
|
|
Contains the definition of user message used in windowed mode
|
|
|
|
VERSION : 1.00/Nicolas Meyer/Creation
|
|
|
|
Nota Bene : This file is only portable on PC platform
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
*/
|
|
|
|
#ifndef _USERMESSAGE_H_
|
|
#define _USERMESSAGE_H_
|
|
|
|
/* ##CONSTANTE#--------------------------------------------------------------------------
|
|
Constantes declaration
|
|
---------------------------------------------------------------------------------------*/
|
|
#define WM_RESIZE WM_USER + 1 /* (LPARAM) to be cast in LPRECT */
|
|
#define WM_VISIBLE WM_USER + 2 /* (WPARAM) contains the style */
|
|
|
|
#endif // _USERMESSAGE_H_
|