GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: a tiny graphical app kit for ruby
Homepage: http://code.whytheluckystiff.net/shoes
Clone URL: git://github.com/why/shoes.git
shoes / shoes / code.h
100644 15 lines (11 sloc) 0.211 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// shoes/code.h
// Success and error codes.
//
#ifndef SHOES_CODE_H
#define SHOES_CODE_H
 
typedef unsigned long shoes_code;
 
#define SHOES_OK 0
#define SHOES_FAIL 1
#define SHOES_QUIT 2
 
#endif