mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
12 lines
187 B
C++
12 lines
187 B
C++
typedef int PRUint32;
|
|
typedef int PRInt32;
|
|
|
|
typedef PRUint32 nsresult;
|
|
|
|
nsresult foo(nsresult x, __attribute__((user("outparam"))) int *a) {
|
|
if (x == 0) {
|
|
*a = 1;
|
|
}
|
|
return x;
|
|
}
|