Search found 31 matches: lpctstr

Return to advanced search

Re: Everything under Fivewin

... wrong for DLL FUNCTION ... have no experience with Type PASCAL who can help me please Everything_SetSearchW() Syntax void Everything_SetSearch(LPCTSTR lpString); Parameters lpString [in] Pointer to a null-terminated string to be used as the new search text. Return Value This function has no ...
by Jimmy
Mon Nov 14, 2022 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Everything under Fivewin
Replies: 17
Views: 1089

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++ ...
by don lowenstein
Tue Jul 17, 2018 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: c++ STRUCTURE data types
Replies: 3
Views: 699

Uso de funciones pipe del API

... en el MSDN de microsoft. Para conectar a un pipe existente la funcion del api que encuentro es la siguiente: HANDLE WINAPI CreateFile( _In_ LPCTSTR lpFileName, _In_ DWORD dwDesiredAccess, _In_ DWORD dwShareMode, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD dwCreationDisposition, ...
by Jorge Jaurena
Wed Jan 11, 2017 3:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Uso de funciones pipe del API
Replies: 11
Views: 2969

C wrapper help

... a few years and it works very well. I am using xHarbour. Below is my code. Definition of function from help file. /* INT WINAPI SmsGetProvider( LPCTSTR lpszPhoneNumber, LPSMSPROVIDER lpProvider ); */ #INCLUDE "fivewin.ch" FUNCTION TestSms SmsGetProvider( ) RETURN NIL #pragma BEGINDUMP ...
by Randal
Tue Oct 18, 2016 3:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: C wrapper help
Replies: 16
Views: 3216

Re: Borland7 versus VisualStudio

... AS INT ) AS LONG PASCAL FROM "FuncionDllA" LIB "Libreria.dll" Mas "fino" este código C :D HB_FUNC( GETBINARYTYPE ) { LPCTSTR lpApplicationName = ( LPCTSTR ) hb_parc( 1 ) ; DWORD dwBinaryType; GetBinaryType(lpApplicationName,&dwBinaryType) ; hb_retni( dwBinaryType ...
by JmGarcia
Thu Mar 17, 2016 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Borland7 versus VisualStudio
Replies: 35
Views: 9434

Re: Borland7 versus VisualStudio

... string of 8-bit Windows (ANSI) characters. For more information, see Character Sets Used By Fonts. Pero la función dice que tiene que ser LPCTSTR definida como: An LPCWSTR if UNICODE is defined, an LPCSTR otherwise. For more information, see Windows Data Types for Strings. En el ficheros ...
by JmGarcia
Wed Mar 16, 2016 12:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Borland7 versus VisualStudio
Replies: 35
Views: 9434

Tengo un mensqje de error en bcc582

... #else #define PSM_SETTITLE PSM_SETTITLEA #endif #define PropSheet_SetTitle(hDlg, wStyle, lpszText)\ SNDMSG(hDlg, PSM_SETTITLE, wStyle, (LPARAM)(LPCTSTR)(lpszText)) #define PSM_SETWIZBUTTONS (WM_USER + 112) #define PropSheet_SetWizButtons(hDlg, dwFlags) \ PostMessage(hDlg, PSM_SETWIZBUTTONS, ...
by Armando Picon
Thu Aug 14, 2014 12:08 am
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: Tengo un mensqje de error en bcc582
Replies: 2
Views: 1560

Re: detect default browser and retrieve a cookie [pending]

...   __inout LPDWORD lpdwSize    );*/HB_FUNC( INTERNETGETCOOKIE ){   DWORD dwSize = 0;   char * buffer;   InternetGetCookie( ( LPCTSTR ) hb_parc( 1 ), ( LPCTSTR ) hb_parc( 2 ), NULL, &dwSize );   buffer = ( char * ) hb_xgrab( dwSize ...
by joseluispalma
Mon Jul 21, 2014 11:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: detect default browser and retrieve a cookie [SOLVED]
Replies: 9
Views: 1708

Re: rc/res to source

... wcex.lpszMenuName = 0; wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = DefWindowProc; wcex.hInstance = hInst; wcex.hIcon = LoadIcon(0, (LPCTSTR)IDI_APPLICATION); wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.lpszClassName = WndClass00; RegisterClassEx(&wcex); HFONT hfont0 = CreateFont(-11, ...
by MdaSolution
Tue Aug 02, 2011 8:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: rc/res to source
Replies: 4
Views: 996

Re: access to a supplier web site under program control

... HRESULT hb_oleVariantToItem( PHB_ITEM pItem, VARIANT * pVariant ); HB_FUNC( GETPOSTDATA ) { VARIANT vPostData = {0}; LPSAFEARRAY psa; LPCTSTR cszPostData = hb_parc( 1 ); UINT cElems = lstrlen( cszPostData ); LPSTR pPostData; VariantInit( &vPostData ); psa = SafeArrayCreateVector( ...
by Rick Lipkin
Tue Apr 05, 2011 7:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: access to a supplier web site under program control
Replies: 21
Views: 7621

Write a test on taskbar

I read there ia a function

BOOL SHSetNavBarText(
HWND hwndRequester,
LPCTSTR pszText
);

to sets the title text in the taskbar

but I not Know How I can make ob fwppc

Any Idea ?
by Silvio
Thu Aug 27, 2009 11:41 pm
 
Forum: FiveWin for Pocket PC
Topic: Write a test on taskbar
Replies: 0
Views: 261

Language C ( To Antonio )

HB_FUNC( OLEWECREATE ) { HWND hWndCtrl; LoadAtl(); hWndCtrl = CreateWindowEx( (DWORD) 0 , // nExStyle (LPCTSTR) "AtlAxWin" , // cClsName (LPCTSTR) hb_parc( 1 ) , // cProgId (DWORD) WS_OVERLAPPEDWINDOW , // style CW_USEDEFAULT , // nLeft CW_USEDEFAULT , // nTop 0 ...
by lailton.webmaster
Sat Jul 25, 2009 2:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Language C ( To Antonio )
Replies: 17
Views: 2814

Re: cActiveX ( To antonio )

... 1, HB_IT_OBJECT ); // the object supplied as the first parameter HWND hWndCtrl; LoadAtl(); hWndCtrl = CreateWindowEx( (DWORD) 0 , // nExStyle (LPCTSTR) "AtlAxWin" , // cClsName (LPCTSTR) hb_parc( 1 ) , // cProgId (DWORD) WS_OVERLAPPEDWINDOW , // style CW_USEDEFAULT , // nLeft CW_USEDEFAULT ...
by lailton.webmaster
Mon Jul 20, 2009 11:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cActiveX ( To antonio )
Replies: 11
Views: 4213

cActiveX ( To antonio )

HB_FUNC( OLEWECREATE ) { HWND hWndCtrl; LoadAtl(); hWndCtrl = CreateWindowEx( (DWORD) 0 , // nExStyle (LPCTSTR) "AtlAxWin" , // cClsName (LPCTSTR) hb_parc( 1 ) , // cProgId (DWORD) WS_OVERLAPPEDWINDOW , // style CW_USEDEFAULT , // nLeft CW_USEDEFAULT , // nTop 0 ...
by lailton.webmaster
Mon Jul 20, 2009 8:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cActiveX ( To antonio )
Replies: 11
Views: 4213

Re: FWH9.04 Activex Error....OCX the function exists justly insi

This is "OCX function" long CNKiosk_mgr:: nKioskMGRprocAppCommand (short cmd, LPCTSTR txBuf, long txLen, LPCTSTR rxBuf, long* rxLen, short optFlag) { long result; static BYTE parms[] = VTS_I2 VTS_BSTR VTS_I4 VTS_BSTR VTS_PI4 VTS_I2; InvokeHelper(0x4, DISPATCH_METHOD, ...
by yunbg1
Thu May 21, 2009 9:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH9.04 Activex Error....OCX the function exists justly insi
Replies: 3
Views: 882
Next

Return to advanced search