Search found 16 matches: uint32

Return to advanced search

Re: Xlsxlibhb_ver2

esas variables ya están definidos en mingw y están como hexadecimal #define INT8_MIN (-128) #define INT16_MIN (-32768) #define INT32_MIN (-2147483647 - 1) #define INT64_MIN (-9223372036854775807LL - 1) #define INT8_MAX 127 #define INT16_MAX 32767 #define INT32_MAX 2147483647 #define INT64_MAX 922337...
by arturo tamayo
Tue Oct 10, 2023 8:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 7
Views: 661

Re: xHarbour 1.2.3 build 20141106

... 13:40 UTC-300 Luiz Rafael Culik <luiz/AT/xharbour/com/br> * source/vm/fm.c ! in structure _HB_MEMINFO changed ULONG ulSignature to UINT32 ulSignature do the value will be 32bits on 64 bits compile ! in hb_xautorelease function changed PHB_MEMINFO pMemBlock = ( PHB_MEMINFO ) ( ( ...
by Enrico Maria Giordano
Thu Dec 04, 2014 5:09 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour 1.2.3 build 20141106
Replies: 16
Views: 5791

Error al hacer make fivephone

... ‘;’, ‘asm’ or ‘__attribute__’ before ‘INT16’ ./../harbour/include/hbdefs.h:464: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘UINT32’ ./../harbour/include/hbdefs.h:467: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘INT32’ ./../harbour/include/hbdefs.h:471: ...
by softruz
Mon Dec 06, 2010 10:56 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: he conseguido un iphone
Replies: 644
Views: 128914

Error al crear Gcc

muy buenas, con harbour he creado sin problemas el .c pero ahora me da errores al utilizar el gcc para seguir. ¿Que puede ser? iPhone:/var/mobile/harbour/harbour/samples root# gcc hello.c -c -I./../include | grep fichero In file included from /usr/include/libkern/arm/OSByteOrder.h:8, from /usr/inclu...
by softruz
Thu Nov 04, 2010 4:44 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: he conseguido un iphone
Replies: 644
Views: 128914

Error

Muy buenas, a la hora de hacer make en la carpeta Harbour, me dan los siguientes errores, ¿sabeis porque puede ser? ! Building Harbour 2.1.0beta2 from source - http://harbour-project.org ! MAKE: make 3.81 /bin/sh ! HB_HOST_PLAT: darwin HB_SHELL: sh ! LD_LIBRARY_PATH: /private/var/mobile/harbour/harb...
by softruz
Thu Nov 04, 2010 3:26 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: he conseguido un iphone
Replies: 644
Views: 128914

Re: UInt32 with "DLL32 Function"

The problem was in the registration of the dll.
Now it is working correctly.

thank you very much to all

Callejas
by Callejas
Sun Oct 18, 2009 1:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: UInt32 with "DLL32 Function"
Replies: 7
Views: 1070

Re: UInt32 with "DLL32 Function"

What error do you get exactly?

EMG
by Enrico Maria Giordano
Tue Oct 13, 2009 7:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: UInt32 with "DLL32 Function"
Replies: 7
Views: 1070

Re: UInt32 with "DLL32 Function"

Antonio says this in a previous message:

Try it again removing PASCAL from the DLL32 declaration

(In FWH DLL32 is no longer needed. Just use DLL ... as we are in 32 bits)



Regards,
James
by James Bott
Tue Oct 13, 2009 4:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: UInt32 with "DLL32 Function"
Replies: 7
Views: 1070

Re: UInt32 with "DLL32 Function"

Hi EMG,

thanks, but it didn't work.

Callejas
by Callejas
Mon Oct 12, 2009 10:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UInt32 with "DLL32 Function"
Replies: 7
Views: 1070

Re: UInt32 with "DLL32 Function"

Callejas wrote:DLL32 FUNCTION _hllapi(@F AS LONG, @D AS STRING, @L AS LONG, @R AS LONG) AS LONG PASCAL FROM "hllapi" LIB "PCSHLL32.dll"


Try

Code: Select all  Expand view
DLL32 FUNCTION HLLAPI(@F AS PTR, @D AS STRING, @L AS PTR, @R AS PTR) AS LONG PASCAL FROM "hllapi" LIB "PCSHLL32.dll"


EMG
by Enrico Maria Giordano
Mon Oct 12, 2009 10:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UInt32 with "DLL32 Function"
Replies: 7
Views: 1070

Re: UInt32 with "DLL32 Function"

... but it doesn't work. I got to write a dll "wrapper" in C for access the dll "PCSHLL32.dll" without the type uint32, but even so the harbour doesn't get to access. I will continue trying. thank you. Callejas.
by Callejas
Mon Oct 12, 2009 10:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UInt32 with "DLL32 Function"
Replies: 7
Views: 1070

Re: UInt32 with "DLL32 Function"

LONG should work. Probably the problem is elsewhere.

EMG
by Enrico Maria Giordano
Mon Oct 12, 2009 9:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UInt32 with "DLL32 Function"
Replies: 7
Views: 1070

UInt32 with "DLL32 Function"

... FUNCTION" ? I need to declare the following call in the harbour: in C#: [DllImport("PCSHLL32.dll")] public static extern UInt32 hllapi(out UInt32 Func, StringBuilder Data, out UInt32 Length, out UInt32 RetC); I tried with several types (WORD, DWORD, LONG, _INT) but without ...
by Callejas
Mon Oct 12, 2009 8:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UInt32 with "DLL32 Function"
Replies: 7
Views: 1070

Re: Drawing PNG from Resources !!!

Hello Lailton, The H - File ( for Freeimage-Version : 3.12.0 ) April 14th, 2009 - 3.12.0 ! FreeImage now uses libPNG 1.2.35 ! FreeImage now uses libTIFF 3.9.0beta (CVS patch 2009-02-12) ! FreeImage now uses OpenJPEG 1.3.0 (SVN patch 2008-08-21) ! [Herve Drolon] FreeImage_CloneMetadata no longer clon...
by ukoenig
Sat May 16, 2009 8:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drawing PNG from Resources !!!
Replies: 7
Views: 7104

I got the source code from : Clase TScan32: http://hyperupload.com/download/018667af97/Tscan32.zip.html Clase TVideo: http://hyperupload.com/download/01c795bc14/TVideo.zip.html Clase TCapture: http://hyperupload.com/download/011f3afb85/TCapture.zip.html get error When I used with xBuildW and exe not...
by areang
Mon Aug 07, 2006 3:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Please teach me about FWH and xHarbour
Replies: 3
Views: 4232
Next

Return to advanced search