Visual C ++ - get() - 重新定义不同的类型修饰符c2373

时间:2012-04-22 20:46:22

标签: c++ dll mql4

我已经有一段时间了。我需要一个基本的IRC Ping Pong函数来在IRC服务器ping时返回正确的响应。我将函数get()的名称更改为其他内容,我仍然收到错误。我想也许函数名称get()已经在其中一个包含或其他内容中定义。

#include "stdafx.h"
#include "Ping_Pong.h"
#include <iostream>
#include <ws2tcpip.h>

#ifdef _DEBUG
#define new DEBUG_NEW
#endif

CWinApp theApp;

#define MT4_EXPFUNC __declspec(dllexport)
#pragma comment(lib, "Ws2_32.lib")

class MT4_EXPFUNC IRC {

private:
    char buf[513];
    char rbuf[513];
    char sbuf[513];
    char *tok;
    int recv_bytes;
    int irc_socket;
    struct addrinfo hints;
    struct addrinfo *results;
public:
    char *nick, *user, *host, *chan, *type, *mesg;
    int irc_connect(const char *host, const char *port, const char *nick);
    void socket_err(const char* err_string);
    //int join(const char *channel);

这是有问题的功能的名称

    int __stdcall get();

    char *check(const char* test_str);
    char *pop_arg(char **save_ptr);
    int init_comarg();
    int say(const char *channel, const char *message);
    int sayf(const char *channel, const char *message, ...);
    int mode(const char *channel, const char *mode, char *target);
    //void die();

};

这是我遇到问题的功能。

MT4_EXPFUNC int __stdcall IRC::get()
    {


    memset(rbuf, 0, 513);
    recv_bytes = recv(irc_socket, rbuf, sizeof(rbuf), 0);
    if (recv_bytes <= 0) {
        return -1;
    }
    std::cout << rbuf;
    // Auto-Respond to PING messages.
    if (rbuf[0] == 'P' && rbuf[1] == 'I') {
        tok = strtok(rbuf, "PING :");
        sprintf(buf, "PONG %s", tok-1 );
        send(irc_socket, buf, strlen(buf), 0);
        std::cout << buf;
        memset(buf, 0, 513);
    }
    if ( strstr(rbuf, "PRIVMSG")) {
        memcpy(sbuf, rbuf, 513);
        nick = strtok(sbuf, "!") + 1;
        user = strtok(NULL, "@");
        host = strtok(NULL, " ");
        type = strtok(NULL, " ") - 1;
        chan = strtok(NULL, " ");
        mesg = strtok(NULL, ":");
    }
    return 1;
    }

1 个答案:

答案 0 :(得分:0)

在下面链接的教程中,建议使用以下代码建立.def文件:

Library "Ping_Pong"
Export   get

我删除了.def并且它有效。

http://www.xpworx.com/metatrader-mql-articles/mql4-articles/create-your-own-metatrader-extension-dll.php