home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
wpentk.zip
/
WBPENTK4.DSK
/
IDMERROR.H
< prev
next >
Wrap
Text File
|
1994-10-06
|
4KB
|
60 lines
/****************************** Module Header ******************************\
*
* Module Name: IDMERROR.H
*
* This file includes the error codes for the Input Data Manager (IDM) component.
*
* ===========================================================================
*/
#define IDMERR_FIRST 0x7200
#define IDMERR_INVALID_STATE 0x7201 /* Can't set IDM variables while IDM
in collect state */
#define IDMERR_CANNOT_START_NOW 0x7202 /* IDM can only be started while
processing a WM_TOUCHDOWN message
(or WM_WRITING_MODE message, for
compatibility layer) */
#define IDMERR_NO_OWNER 0x7203 /* hwndOwner or hwndClient has
not been specified */
#define IDMERR_ANOTHER_IDM_STARTED 0x7204 /* another instance of IDM is working
on behalf of the specified window*/
#define IDMERR_NOT_STARTED 0x7205 /* this instance of IDM is not working
on behalf of any window */
#define IDMERR_INVALID_OPERATION 0x7206 /* invalid combination of IDM
operations requested. For example,
IDM_COLLECTSTROKE & IDM_GESTURE */
#define IDMERR_INTERNAL_ERROR 0x7207 /* internal IDM error */
#define IDMERR_NO_HPS 0x7208 /* window inking requested, but no hps
has been specified */
#define IDMERR_ALREADY_STARTED 0x7209 /* attempt to start the IDM but it's
already started */
#define IDMERR_INVALID_OBJECT 0x720A /* the object specified is not
descended from IDMTextDoodle
object */
#define IDMERR_OUTSIDE_INCLUDE_RECT 0x720B /* attempt to start IDM but
touchdown point is outside of the
include rectangle */
#define IDMERR_INSIDE_EXCLUDE_RECT 0x720C /* attempt to start IDM but
touchdown point is inside of an
exclude rectangle */
#define IDMERR_RECOING_IN_ANOTHER_WINDOW 0x720D /* attempt to start IDM while
IDM is recoing for another
window */
#define IDMERR_NO_DOODLE 0x720E /* request to paint doodle, no doodle
exists */
#define IDMERR_NOT_WINDOW_INKING 0x720F /* request to paint doodle, not using
window inking style */
#define IDMERR_NOTHING_TO_RECO 0x7210 /* request to reco, but there is
nothing reco */
#define IDMERR_DEVICE_NOT_ENABLED_FOR_WRITING 0x7211 /* Pointing device was not pause
enabled by user */
/****************************** Internal Errors *****************************\
*
* Errors below this comment block are internal errors of the Input Data Manager
* component. Internal errors are allocated starting from IDMERR_LAST.
*
* ===========================================================================
*/
#define IDMERR_LAST 0x72FF