PB de Link

PB de Link - C++ - Programmation

Marsh Posté le 12-12-2004 à 11:49:39    

Bonjour,
J'ai un petit programme qui fait appel a une fonction déclarée PARTOUT et pourtant elle ressort UNSRESOLVED au Build sous Visual C++ !
Si quelqu'un peut m'aider ...
L'Include

Code :
  1. #include <windows.h>
  2. #include <shellapi.h>
  3. extern HINSTANCE hInst;
  4. extern HWND   hWnd;
  5. extern HWND   hstatic;
  6. void SetDlgItemUrl(HWND hdlg,int id,const char *url);
  7. LRESULT CALLBACK WindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);


 
Fonction principale

Code :
  1. #include "winproc.h"
  2. HINSTANCE hInst;
  3. HWND  hWnd;
  4. HWND  hstatic;
  5. LRESULT CALLBACK WindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
  6.     switch (message) {
  7.         case WM_CREATE:
  8.    SetDlgItemUrl(hstatic,1,"http://www.mon_adresse.fr/" );
  9.             return 0;
  10.         case WM_DESTROY:
  11.             PostQuitMessage(0);
  12.   return 0;
  13.     }
  14. // pour les autres messages, on renvoie le traitement par défaut
  15.     return DefWindowProc(hwnd, message, wParam, lParam);
  16. }


Reply

Marsh Posté le 12-12-2004 à 11:49:39   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed