Search found 62 matches: uint

Return to advanced search

prsht.h changes for Borland 64 bits

same as in Borland 32 bits:

look for:

UINT *pcRefParent; \

and replace it with:

UINT *pcRefParent;
by Antonio Linares
Wed Nov 09, 2022 2:43 pm
 
Forum: Utilities / Utilidades
Topic: prsht.h changes for Borland 64 bits
Replies: 17
Views: 8672

Re: Display thumbnails of pdfs

Dear Jimmy, This is the definition of the struct LVCOLUMN from commctrl.h typedef struct tagLVCOLUMNA { UINT mask; int fmt; int cx; LPSTR pszText; int cchTextMax; int iSubItem; #if (_WIN32_IE >= 0x0300) int iImage; int iOrder; #endif #if _WIN32_WINNT >= 0x0600 int cxMin; ...
by Antonio Linares
Sun Oct 16, 2022 2:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2216

Re: Issue with FWH64/Harbour64/BCC7164 and Mysql.h file

... file included from c:\Bcc7164\include\windows\sdk\Windows.h:289: c:\Bcc7164\include\windows\sdk\imm.h:46:19: warning: redefinition of typedef 'LPUINT' is a C11 feature [-Wtypedef-redefinition] typedef UINT FAR *LPUINT; ^ c:\Bcc7164\include\windows\sdk\mmsyscom.h:103:21: note: previous definition ...
by Compuin
Mon Jun 28, 2021 12:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Issue with FWH64/Harbour64/BCC7164 and Mysql.h file
Replies: 61
Views: 3990

Issue with FWH64/Harbour64/BCC7164 and Mysql.h file

... file included from c:\bcc7164\include\windows\sdk\windows.h:289: c:\bcc7164\include\windows\sdk\imm.h:46:19: warning: redefinition of typedef 'LPUINT' is a C11 feature [-Wtypedef-redefinition] typedef UINT FAR *LPUINT; ^ c:\bcc7164\include\windows\sdk\mmsyscom.h:103:21: note: previous definition ...
by Compuin
Fri Jun 25, 2021 7:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Issue with FWH64/Harbour64/BCC7164 and Mysql.h file
Replies: 61
Views: 3990

Re: Bug in TMenu

... Si alguien encuentra la forma de poder encontrar el prompt de un item a partir del valor de la estructura typedef struct tagMEASUREITEMSTRUCT { UINT CtlType; UINT CtlID; UINT itemID; UINT itemWidth; UINT itemHeight; ULONG_PTR itemData; } MEASUREITEMSTRUCT, *PMEASUREITEMSTRUCT, *LPMEASUREITEMSTRUCT; ...
by cnavarro
Sat Jan 05, 2019 4:31 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in TMenu [Fixed]
Replies: 9
Views: 3510

Re: compilar TDolphin Harbour 3.4 alguien que me pueda orientar?

Pordrias probar a cambiar:

UINT por HB_UINT
FALSE por HB_FALSE
y
TRUE por HB_TRUE
by xmanuel
Fri Dec 07, 2018 9:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: compilar TDolphin Harbour 3.4 alguien que me pueda orientar?
Replies: 4
Views: 1143

Re: compilar TDolphin Harbour 3.4 alguien que me pueda orientar?

... si Hay ! ya logre quitar la mayoria solo me faltan lo siguientes E:\ToolsDeveloper\tdolphin\source\c\function.c:572:4: error: unknown type name 'UINT' UINT ui, uiNumFields; ^ E:\ToolsDeveloper\tdolphin\source\c\function.c:578:7: error: use of undeclared identifier 'uiNumFields' uiNumFields = ...
by gabo
Tue Dec 04, 2018 8:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: compilar TDolphin Harbour 3.4 alguien que me pueda orientar?
Replies: 4
Views: 1143

c++ STRUCTURE data types

I need to call a 64-bit dll with the following parms: c++ call: SOCKET WINAPI InetConnect( LPCTSTR lpszHostName, UINT nPort, UINT nProtocol, UINT nTimeout, DWORD dwOptions, LPSECURITYCREDENTIALS lpCredentials ); The LPSECURITYCREDENTIALS data type is a user defined c++ structure: ...
by don lowenstein
Tue Jul 17, 2018 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: c++ STRUCTURE data types
Replies: 3
Views: 699

Bcc73

... by removing the trailing backslash on line 184. To fix in line 184 of Prsht.h remove the trailing / LPFNPSPCALLBACKW pfnCallback; \ UINT *pcRefParent; // \ <--- remove trailing backslash line 184 You can use Bcc32.Cfg and Ilink32.cfg from your Bcc72 setup .. just edit the new ...
by Rick Lipkin
Wed May 17, 2017 7:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bcc73
Replies: 18
Views: 5096

Re: Bcc72 Prsht.h resource compile error

... reserved.Error prsht.h 917 1: '#endif' before '#if'done!  To fix in line 184 of Prsht.h remove the trailing / LPFNPSPCALLBACKW pfnCallback; \ UINT *pcRefParent; // \ <--- remove trailing backslash line 184 ReRun the batch file again and you get this error: WORKVEH.RCWOTIRE.RCWRKADD.RCxplook.rc  ...
by Rick Lipkin
Sat Oct 29, 2016 2:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bcc72 Prsht.h resource compile error
Replies: 31
Views: 6297

Re: create a harbour dll containing functions to be executed

... { // public string AppName; [ DllImport ( "ftsnet.dll", CallingConvention = CallingConvention.Cdecl ) ] public static extern void One( uint pBlock );
by Antonio Linares
Thu Sep 08, 2016 8:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: create a harbour dll containing functions to be executed
Replies: 23
Views: 4252

specific structure

how set a specific structure and call it into a function or

I must set this structure
typedef struct _gettextlengthex {;
DWORD flags;
UINT codepage;
} GETTEXTLENGTHEX
by Silvio.Falconi
Sat May 14, 2016 9:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: specific structure
Replies: 2
Views: 418

wmf2emf problemi in compilazione

... #include "ClipApi.h" #include <windows.h> HB_FUNC( WMFTOEMF ) // ( cWmf, cEmf ) { HMETAFILE hWMF = GetMetaFile( hb_parc( 1 ) ); UINT nSize = GetMetaFileBitsEx( hWMF, 0, NULL ); LPVOID lpvData = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, nSize ); HENHMETAFILE hEMF, hEMF2; ...
by Romeo
Wed Jan 20, 2016 4:59 pm
 
Forum: All products support
Topic: wmf2emf problemi in compilazione
Replies: 0
Views: 561

Re: To save an image [Solved]

... ; Error E2303 QColorQuantizer.h 100: Type name expected Error E2238 QColorQuantizer.h 100: Multiple declaration for 'QColorQuantizer::Oc treeNode::UINT' Error E2344 QColorQuantizer.h 99: Earlier declaration of 'QColorQuantizer::Octre eNode::UINT' Error E2139 QColorQuantizer.h 100: Declaration missing ...
by mastintin
Sun Nov 08, 2015 9:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To save an image
Replies: 52
Views: 7723

Re: Modificar la rayita del cursor: en GET

Noé, Por lo visto hay una función de Windows a la que se puede llamar: BOOL SetCaretBlinkTime( UINT uMSeconds //blink time in milliseconds ); Prueba a añadir esta nueva función a tu PRG principal #include <windows.h>#include <hbapi.h>HB_FUNC( SETCARETBLINKTIME ...
by Antonio Linares
Fri Jun 05, 2015 7:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Modificar la rayita del cursor: en GET
Replies: 6
Views: 1106
Next

Return to advanced search