File: nscore.h

package info (click to toggle)
libencode-detect-perl 1.01-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 720 kB
  • sloc: cpp: 4,032; perl: 27; ansic: 21; makefile: 3
file content (20 lines) | stat: -r--r--r-- 367 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef INCLUDED_NSCORE_H
#define INCLUDED_NSCORE_H

typedef short PRInt16;
typedef unsigned short PRUint16;

typedef int PRInt32;
typedef unsigned PRUint32;

typedef int PRBool;
#define PR_TRUE 1
#define PR_FALSE 0

#define nsnull 0

typedef PRUint32 nsresult;
#define NS_OK 0
#define NS_ERROR_OUT_OF_MEMORY ((nsresult)(0x8007000eL))

#endif /* INCLUDED_NSCORE_H */