dd92 | 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 :
- #include <windows.h>
- #include <shellapi.h>
- extern HINSTANCE hInst;
- extern HWND hWnd;
- extern HWND hstatic;
- void SetDlgItemUrl(HWND hdlg,int id,const char *url);
- LRESULT CALLBACK WindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
|
Fonction principale
Code :
- #include "winproc.h"
- HINSTANCE hInst;
- HWND hWnd;
- HWND hstatic;
- LRESULT CALLBACK WindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
- switch (message) {
- case WM_CREATE:
- SetDlgItemUrl(hstatic,1,"http://www.mon_adresse.fr/" );
- return 0;
- case WM_DESTROY:
- PostQuitMessage(0);
- return 0;
- }
- // pour les autres messages, on renvoie le traitement par défaut
- return DefWindowProc(hwnd, message, wParam, lParam);
- }
|
|