Last change
on this file since 6542 was 1, checked in by vboxsync, 55 years ago |
import
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
327 bytes
|
Line | |
---|
1 | #include "nsString.h"
|
---|
2 | #include "nsReadableUtils.h"
|
---|
3 | #include "nsXPIDLString.h"
|
---|
4 |
|
---|
5 | static void
|
---|
6 | nsXPIDLStringTest_Value(PRUnichar** aResult)
|
---|
7 | {
|
---|
8 | *aResult = ToNewUnicode(NS_LITERAL_STRING("Hello, World"));
|
---|
9 | }
|
---|
10 |
|
---|
11 | int
|
---|
12 | main(int argc, char* argv[])
|
---|
13 | {
|
---|
14 | nsXPIDLString s1;
|
---|
15 | nsXPIDLStringTest_Value(getter_Copies(s1));
|
---|
16 | return 0;
|
---|
17 | }
|
---|
18 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.