Skip to content
View rosasurfer's full-sized avatar
💭
a Foo walks into a bar...
💭
a Foo walks into a bar...

Highlights

  • Pro

Organizations

@phpeclipse

Block or report rosasurfer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. mt4-mql mt4-mql Public

    MetaTrader MQL4 framework

    MQL4 300

  2. mt4-php-tools mt4-php-tools Public

    PHP tools supporting the MetaTrader4 MQL framework

    PHP 46 34

  3. mt4-expander mt4-expander Public

    DLL extension for the MetaTrader4 MQL framework

    C++ 35 28

  4. ministruts ministruts Public

    MVC micro framework for PHP inspired by Java Struts

    PHP 1

  5. Encoding conversion in C++ Encoding conversion in C++
    1
    // Convert a wide Unicode string to an ANSI string.
    2
    std::string unicodeToAnsi(const std::wstring &wstr) {
    3
        int bufSize = WideCharToMultiByte(CP_ACP, 0, &wstr[0], -1, NULL, 0, NULL, NULL);
    4
        std::string strTo(bufSize, 0);
    5
        WideCharToMultiByte(CP_ACP, 0, &wstr[0], (int)wstr.size(), &strTo[0], bufSize, NULL, NULL);