a50001bbe9
Source obtained from: ftp://ftp.afterstep.org/stable/rpms/misc-tarballs/wmcalc-0.4.tar.gz
32 lines
667 B
C
32 lines
667 B
C
/* File: wmcalc_err.h
|
|
* Author: Edward H. Flora <ehflora@access1.net>
|
|
* Version: 0.2
|
|
*
|
|
* Description:
|
|
* This file contains the error codes for the wmcalc program.
|
|
*
|
|
* Change History:
|
|
* Date Modification
|
|
* 10/25/00 Original file creation, extracted from wmcalc.h
|
|
*/
|
|
|
|
#ifndef WMCALC_ERR_H
|
|
#define WMCALC_ERR_H
|
|
|
|
#define OKAY 0
|
|
|
|
#define ERR_FILE_NOT_FOUND 1001
|
|
#define ERR_TMP_FILE_FAILED 1002
|
|
|
|
#define ERR_X_CREATE_WINDOW 1101
|
|
#define ERR_X_CREATE_BITMAP 1102
|
|
#define ERR_SETUP_WINDOW_NAME 1103
|
|
#define ERR_CREATE_GC 1104
|
|
#define ERR_X_DISPLAY 1105
|
|
|
|
#define ERR_CREATE_PIXMAP 1201
|
|
|
|
|
|
|
|
#endif
|