You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
287B

  1. #include "wx/app.h"
  2. #include "testcurl.h"
  3. class testcurlApp: public wxApp
  4. {
  5. public :
  6. bool OnInit();
  7. };
  8. IMPLEMENT_APP (testcurlApp)
  9. bool testcurlApp::OnInit()
  10. {
  11. curl_global_init (CURL_GLOBAL_DEFAULT);
  12. testcurl * fenetre = new testcurl(NULL);
  13. fenetre -> Show(TRUE);
  14. return TRUE;
  15. }