Search found 20 matches: winbase

Return to advanced search

Re: SAPI : change Voice

... {aka struct IEnumSpObjectTokens}' has no member named 'Next' In file included from C:/hmg.3.4.4/mingw/i686-w64-mingw32/include/winbase.h:2377:0, from C:/hmg.3.4.4/mingw/i686-w64-mingw32/include/windows.h:70, from HB_FUNC.PRG:3: HB_FUNC.PRG:33:54: error: 'ISpObjectToken {aka ...
by Jimmy
Thu Jan 25, 2024 4:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3703

Re: Using Microsoft AI Phi-2 from FWH

... Custom Rule F:/llama.cpp/common/CMakeLists.txt 3>build-info.cpp 2>C:\Program Files (x86)\Windows Kits\10\Include\10.0.19041.0\um\winbase.h(9531,5): warning C5105: Die Makroerweiterung, die "defined" erzeugt, weist ein nicht definiertes Verhalten auf. 2>(Quelldatei ...
by Jimmy
Fri Dec 22, 2023 1:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Microsoft AI Phi-2 from FWH
Replies: 51
Views: 8397

Re: Lost connection to MySQL server during query

... not halp so i use my old Ot4XB CODE to call "SetThreadExecutionState" https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-setthreadexecutionstate Enables an application to inform the system that it is in use, thereby preventing the system from entering ...
by Jimmy
Sun Aug 06, 2023 1:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection to MySQL server during query
Replies: 37
Views: 12517

SECTIONS READING

... "GetPrivateProfileSectionNamesA" LIB "kernel32.dll"  refer. https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-getprivateprofilesectionnames Not run on Windows 7/10 ?
by Silvio.Falconi
Fri Jun 30, 2023 7:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SECTIONS READING
Replies: 3
Views: 358

Re: how to get WM_POWERBROADCAST under Fivewin ?

... -> no Energy Saving SetStandbyOFF(.F.) -> normal Energy saving https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-setthreadexecutionstate #define ES_CONTINUOUS        0x80000000#define ES_SYSTEM_REQUIRED   0x00000001#define ES_DISPLAY_REQUIRED ...
by Jimmy
Mon Jun 12, 2023 7:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get WM_POWERBROADCAST under Fivewin ?
Replies: 7
Views: 523

Re: BMP in DLL

by Antonio Linares
Tue May 17, 2022 4:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: BMP in DLL
Replies: 4
Views: 341

Re: Copying a file

hi,

funny that you don´t want Animation. for short files you will not see it.

what about CopyFileW function from Kernel32.dll
https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-copyfilew
by Jimmy
Sat Sep 11, 2021 6:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copying a file
Replies: 17
Views: 1234

Re: Create or open a shared memory block

Otto,

For Windows you could use GlobalAlloc()
https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-globalalloc

To make it Linux and OSX compatible, then simply use malloc()
by Antonio Linares
Sat May 23, 2020 7:03 am
 
Forum: mod_harbour
Topic: Create or open a shared memory block
Replies: 8
Views: 1098

Re: Virtual Keyboard on tablet

... call from 32 Bit App you need to disable WOW64 Redirection as show in Sample here https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-wow64enablewow64fsredirection
by Jimmy
Fri Oct 04, 2019 5:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Virtual Keyboard on tablet
Replies: 13
Views: 1708

Re: Harbour Error GPF., permiso para ejecutar binario

... API de Windows que proporciona esta funcionalidad es: CreateProcessWithLogonW() https://docs.microsoft.com/en-us/windows/desktop/api/winbase/nf-winbase-createprocesswithlogonw // miniRunAs  -  A minimalist "run as" for Windows (a runas.exe alternative)//// Home ...
by Antonio Linares
Tue Nov 06, 2018 11:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Harbour Error GPF., permiso para ejecutar binario
Replies: 6
Views: 1312

Re: Uso de funciones pipe del API

En el fichero winbase.h de Windows encontramos: #ifdef UNICODE #define CreateFile CreateFileW #else #define CreateFile CreateFileA #endif // !UNICODE Es decir, la función CreateFile se transforma en CreateFileA ó CreateFileW según ...
by Antonio Linares
Fri Jan 13, 2017 3:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Uso de funciones pipe del API
Replies: 11
Views: 2982

Re: C++Compiler - FREE TOOL

Antonio,

Probe haciendo los cambios en winbase.h y presenta el mismo error :

"No se encuentra el punto de entrada del procedimiento InterlockedCompareExchange64 en la biblioteca de vinculos dinamicos KERNEL32.DLL"

Estoy usando UEstudio
by albeiroval
Sun Jul 31, 2016 4:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: C++Compiler - FREE TOOL
Replies: 18
Views: 8588

Re: Embarcadero Releases Free C++ Compiler for Windows

If you comment these lines from winbase.h then it may solve the problem: FORCEINLINEunsigned __int64InterlockedCompareExchange(    _Inout_ _Interlocked_operand_ unsigned __int64 volatile *Destination,    _In_ unsigned ...
by Antonio Linares
Fri Jul 29, 2016 9:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Embarcadero Releases Free C++ Compiler for Windows
Replies: 53
Views: 11098

Re: Build with Visual Studio 2015 errors

... .\crypto\rand\rand_win.c(544): error C2039: 'dwSize': is not a member of '_MEMORYSTATUS' C:\Program Files (x86)\Windows Kits\8.1\include\um\winbase.h(545): note: see declaration of '_MEMORYSTATUS' .\crypto\rand\rand_win.c(547): warning C4133: 'function': incompatible types - from 'MEMORYSTATUS ...
by Antonio Linares
Thu Apr 09, 2015 9:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Build with Visual Studio 2015 errors
Replies: 33
Views: 7908

Communication with ARM9

... ) FUNCTION ComClose( hComm ) RAWIROFF( hComm ) CloseHandle( hComm ) RETURN .t. #pragma BEGINDUMP #include <windows.h> #include <winbase.h> #include <hbapi.h> #include <aygshell.h> #define BUFF_IN 1024 #define BUFF_OUT 1024 HB_FUNC( SETCOMM ) { DCB dcb; COMMTIMEOUTS ...
by Surasak
Thu Jun 30, 2011 9:36 am
 
Forum: FiveWin for Pocket PC
Topic: Communication with ARM9
Replies: 6
Views: 1877
Next

Return to advanced search