https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b2ad6f0db8c5be660d987da9fc377118111e212c authored by ffxbld on 11 October 2012, 04:11:52 UTC
Added FENNEC_17_0b1_RELEASE FENNEC_17_0b1_BUILD2 tag(s) for changeset f02c5fb11741. DONTBUILD CLOSED TREE a=release
Tip revision: b2ad6f0
TestXPIDLString.cpp
#include "nsString.h"
#include "nsReadableUtils.h"
#include "nsXPIDLString.h"

static void
nsXPIDLStringTest_Value(PRUnichar** aResult)
{
    *aResult = ToNewUnicode(NS_LITERAL_STRING("Hello, World"));
}

int
main(int argc, char* argv[])
{
    nsXPIDLString s1;
    nsXPIDLStringTest_Value(getter_Copies(s1));
    return 0;
}

back to top