Warning genant lors de la compilation

lektrosonic Messages postés 145 Date d'inscription samedi 2 octobre 2004 Statut Membre Dernière intervention 21 février 2013 - 13 janv. 2007 à 16:28
yoyo269 Messages postés 1403 Date d'inscription lundi 23 février 2004 Statut Membre Dernière intervention 11 janvier 2009 - 15 janv. 2007 à 12:02
Je travaille avec les sockets, et je met cette declaration avant la fonction principale (en globale c est a dire)
SOCKADDR_IN csin;

et lorsque je compile:
[Warning] built-in function 'csin' declared as non-function

je travaille sous Dev-Cpp v4.9.9.2
l3KTr0 Was HeRe

12 réponses

yoyo269 Messages postés 1403 Date d'inscription lundi 23 février 2004 Statut Membre Dernière intervention 11 janvier 2009 2
13 janv. 2007 à 16:44
Pourrais-tu mettre ton code en entier stp pour voir d'où vient le problème.
Là pour l'instant rien ne me saute aux yeux.

YOYO, @+.
"L'intelligence c'est comme un parachute, quand on en n'a pas...on s'écrase !"
0
lektrosonic Messages postés 145 Date d'inscription samedi 2 octobre 2004 Statut Membre Dernière intervention 21 février 2013
13 janv. 2007 à 16:52
#include <windows.h>
#include <winsock2.h>

#define ID_CONNECT 1

#define WM_SOCKETREAD (WM_APP + 100)

/*  Declare Windows procedure  */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);

/*  Make the class name into a global variable  */
char szClassName[ ] = "WindowsApp";

HWND hwnd_connect;
HINSTANCE HInstance;

WSADATA WSAData;

SOCKET sock;
SOCKADDR_IN sin;

int WINAPI WinMain (HINSTANCE hThisInstance,
                    HINSTANCE hPrevInstance,
                    LPSTR lpszArgument,
                    int nFunsterStil)

{
    HWND hwnd;               /* This is the handle for our window */
    MSG messages;            /* Here messages to the application are saved */
    WNDCLASSEX wincl;        /* Data structure for the windowclass */
    HInstance=hThisInstance;
    /* The Window structure */
    wincl.hInstance = hThisInstance;
    wincl.lpszClassName = szClassName;
    wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */
    wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */
    wincl.cbSize = sizeof (WNDCLASSEX);

    /* Use default icon and mouse-pointer */
    wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
    wincl.lpszMenuName = NULL;                 /* No menu */
    wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */
    wincl.cbWndExtra = 0;                      /* structure or the window instance */
    /* Use Windows's default color as the background of the window */
    wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;

    /* Register the window class, and if it fails quit the program */
    if (!RegisterClassEx (&wincl))
        return 0;

    /* The class is registered, let's create the program*/
    hwnd = CreateWindowEx (
           0,                   /* Extended possibilites for variation */
           szClassName,         /* Classname */
           "CLIENT",       /* Title Text */
           WS_OVERLAPPEDWINDOW, /* default window */
           CW_USEDEFAULT,       /* Windows decides the position */
           CW_USEDEFAULT,       /* where the window ends up on the screen */
           280,                 /* The programs width */
           200,                 /* and height in pixels */
           HWND_DESKTOP,        /* The window is a child-window to desktop */
           NULL,                /* No menu */
           hThisInstance,       /* Program Instance handler */
           NULL                 /* No Window Creation data */
           );

    /* Make the window visible on the screen */
    ShowWindow (hwnd, nFunsterStil);

    /* Run the message loop. It will run until GetMessage() returns 0 */
    while (GetMessage (&messages, NULL, 0, 0))
    {
        /* Translate virtual-key messages into character messages */
        TranslateMessage(&messages);
        /* Send message to WindowProcedure */
        DispatchMessage(&messages);
    }

    /* The program return-value is 0 - The value that PostQuitMessage() gave */
    return messages.wParam;
}

/*  This function is called by the Windows function DispatchMessage()  */

LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    switch (message)                  /* handle the messages */
    {
       
        case WM_COMMAND:
                        switch(LOWORD(wParam))
                        {
                                              case ID_CONNECT:
                                              {
                                                       connect(sock, (SOCKADDR *)&sin, sizeof(sin));
                                              }
                        }
        case WM_CREATE:
             {
                   hwnd_connect=CreateWindowEx(WS_EX_CLIENTEDGE,"BUTTON","Connect",WS_CHILD|WS_VISIBLE,25,50,150,35,hwnd,(HMENU)ID_CONNECT,HInstance,NULL);      
                   WSAStartup(MAKEWORD(2,0), &WSAData);
                   sin.sin_addr.s_addr=inet_addr("127.0.0.1");
                   sin.sin_family=AF_INET;
                   sin.sin_port=htons(4148);
                   sock = socket(AF_INET,SOCK_STREAM,0);
                   bind(sock,(SOCKADDR *)&sin,sizeof(sin));
                   WSAAsyncSelect(sock,hwnd,WM_SOCKETREAD,FD_READ);
             }
             break;
        case WM_DESTROY:
            PostQuitMessage (0);       /* send a WM_QUIT to the message queue */
            break;
        default:                      /* for messages that we don't deal with */
            return DefWindowProc (hwnd, message, wParam, lParam);
    }

    return 0;
}
0
yoyo269 Messages postés 1403 Date d'inscription lundi 23 février 2004 Statut Membre Dernière intervention 11 janvier 2009 2
13 janv. 2007 à 16:55
Où est "SOCKADDR_IN csin;" ???
Je vois bien "SOCKADDR_IN sin;" mais pas l'autre.

YOYO, @+.
"L'intelligence c'est comme un parachute, quand on en n'a pas...on s'écrase !"
0
lektrosonic Messages postés 145 Date d'inscription samedi 2 octobre 2004 Statut Membre Dernière intervention 21 février 2013
13 janv. 2007 à 17:01
mais je n utilise pas de csin dans ce client?
mais meme mnt si j ajoute: SOCKADDR_IN csin;
j'ai deux warnings:
[Warning] built-in function 'csin' declared as non-function
[Warning] built-in function 'sin' declared as non-function

l3KTr0 Was HeRe
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
yoyo269 Messages postés 1403 Date d'inscription lundi 23 février 2004 Statut Membre Dernière intervention 11 janvier 2009 2
13 janv. 2007 à 17:15
Mais montre nous TOUT le code que tu compiles et qui est concerné par l'erreur !!!

YOYO, @+.
"L'intelligence c'est comme un parachute, quand on en n'a pas...on s'écrase !"
0
lektrosonic Messages postés 145 Date d'inscription samedi 2 octobre 2004 Statut Membre Dernière intervention 21 février 2013
13 janv. 2007 à 17:20
ben c est sa TOUT le code ! c est un mini-projet pour apprendre els sockets....

l3KTr0 Was HeRe
0
yoyo269 Messages postés 1403 Date d'inscription lundi 23 février 2004 Statut Membre Dernière intervention 11 janvier 2009 2
13 janv. 2007 à 17:24
Ok donc ton premier message avait une erreur alors ! lol
C'était pas csin mais sin.
Chez moi ton code se compile sans souci.
Tu as mis quoi comme option de compilation pour les warnings ?
Moi j'ai mis "-Wall".

YOYO, @+.
"L'intelligence c'est comme un parachute, quand on en n'a pas...on s'écrase !"
0
lektrosonic Messages postés 145 Date d'inscription samedi 2 octobre 2004 Statut Membre Dernière intervention 21 février 2013
13 janv. 2007 à 17:28
ou sa tu a mis -wall ?
tu utilise aussi: dev-cpp v4.9.9.2...je compile en C moi
l3KTr0 Was HeRe
0
yoyo269 Messages postés 1403 Date d'inscription lundi 23 février 2004 Statut Membre Dernière intervention 11 janvier 2009 2
13 janv. 2007 à 17:35
Pas -wall mais -Wall et oui j'utilise aussi Dev-C++ 4.9.9.2.
Je mets ça dans Projet->Options du projet->Paramètres->Compilateur.
Par contre je compile en C++.

YOYO, @+.
"L'intelligence c'est comme un parachute, quand on en n'a pas...on s'écrase !"
0
vecchio56 Messages postés 6535 Date d'inscription lundi 16 décembre 2002 Statut Membre Dernière intervention 22 août 2010 14
13 janv. 2007 à 19:47
Peut être aussi que sin est une fonction de math.h donc c'est pas terrible d'appeler une variable comme ca

_____________________________________
Un éditeur de ressources gratuit pour Windows
0
tibob51 Messages postés 268 Date d'inscription vendredi 30 avril 2004 Statut Membre Dernière intervention 13 mai 2013 2
15 janv. 2007 à 11:57
Mais si il n'inclu pas math.h ça ne devrai pas poser de problèmes?non?
0
yoyo269 Messages postés 1403 Date d'inscription lundi 23 février 2004 Statut Membre Dernière intervention 11 janvier 2009 2
15 janv. 2007 à 12:02
Non ça ne pose pas de problème.
J'ai compilé son code avec Dev-C++ 4.9.9.2 sans aucun souci, ni warning.

YOYO, @+.
"L'intelligence c'est comme un parachute, quand on en n'a pas...on s'écrase !"
0
Rejoignez-nous