| 1 | /* ulserrno.h,v 1.3 2004/09/14 22:27:36 bird Exp */
|
|---|
| 2 | /** @file
|
|---|
| 3 | * IGCC.
|
|---|
| 4 | */
|
|---|
| 5 | /*
|
|---|
| 6 | * Legalesy-free Unicode API interface for OS/2
|
|---|
| 7 | * Unicode API error codes
|
|---|
| 8 | *
|
|---|
| 9 | * Written by Andrew Zabolotny <[email protected]>
|
|---|
| 10 | *
|
|---|
| 11 | * This file is put into public domain. You are free to do
|
|---|
| 12 | * literally anything you wish with it: modify, print, sell,
|
|---|
| 13 | * rent, eat, throw out of window: in all (esp. in later)
|
|---|
| 14 | * cases I am not responsible for any damage it causes.
|
|---|
| 15 | */
|
|---|
| 16 |
|
|---|
| 17 | #ifndef __ULSERRNO_H__
|
|---|
| 18 | #define __ULSERRNO_H__
|
|---|
| 19 |
|
|---|
| 20 | #define ULS_API_ERROR_BASE 0x00020400
|
|---|
| 21 |
|
|---|
| 22 | typedef enum _uls_return_codes
|
|---|
| 23 | {
|
|---|
| 24 | ULS_SUCCESS = 0,
|
|---|
| 25 | ULS_OTHER = ULS_API_ERROR_BASE + 1,
|
|---|
| 26 | ULS_ILLEGALSEQUENCE,
|
|---|
| 27 | ULS_MAXFILESPERPROC,
|
|---|
| 28 | ULS_MAXFILES,
|
|---|
| 29 | ULS_NOOP,
|
|---|
| 30 | ULS_TOOMANYKBD,
|
|---|
|
|---|