mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
222 B
C++
15 lines
222 B
C++
|
typedef int PRInt32;
|
||
|
typedef int nsresult;
|
||
|
|
||
|
void
|
||
|
OutFunc(PRInt32 *out __attribute__((user("NS_outparam"))))
|
||
|
{
|
||
|
*out = 0;
|
||
|
}
|
||
|
|
||
|
nsresult TestFunc(PRInt32 *a __attribute__((user("NS_outparam"))))
|
||
|
{
|
||
|
OutFunc(a);
|
||
|
return 0;
|
||
|
}
|