0

I have the Clarion 6.3 version and after to follow the instructions from homepage i can see Clarion imported the libcurl to the system.

libcurl for Clarion link

But after to create a window and a button, and put code above in the button source area it doesn't work, specially the line about to include the .inc file

PRAGMA('project(#compile libcurl.clw)')
PRAGMA('project(#pragma link(libcurl.lib))')

INCLUDE('libcurl.inc')

Someone could help me with that ?

enter image description here

Matheus Cuba
  • 2,068
  • 1
  • 20
  • 31
Patrick
  • 21
  • 7

1 Answers1

0

It looks to me like something other than plain text was pasted into the code. Try this:

  PRAGMA('project(#compile libcurl.clw)')
  PRAGMA('project(#pragma link(libcurl.lib))')

  INCLUDE('libcurl.inc')

  MAP
  END
riffrazor
  • 447
  • 5
  • 8