view cpp/qt_core/QString_shell.cpp @ 114:547cd31fa12a

CMake: improve of the windows support for ldc.
author SokoL_SD
date Wed, 03 Jun 2009 15:53:24 +0000
parents e78566595089
children 7dd099050621
line wrap: on
line source

#include <QString>
#include "qtd_core.h"

extern "C" DLL_PUBLIC const ushort* __qtd_QString_utf16
(void* __this_nativeId)
{
    QString *__qt_this = (QString *) __this_nativeId;
    return __qt_this->utf16();
}

extern "C" DLL_PUBLIC int __qtd_QString_size
(void* __this_nativeId)
{
    QString *__qt_this = (QString *) __this_nativeId;
    return __qt_this->size();
}

extern "C" DLL_PUBLIC void __qtd_QString_operatorAssign
(void* __this_nativeId,
 char* text, uint text_size)
{
    QString *__qt_this = (QString *) __this_nativeId;
    *__qt_this = QString::fromUtf8(text, text_size);
}