Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Testing MS Internet Explorer version installed
Winsock: how to retrieve the protocol information corresponding to a protocol name
Clipping mouse cursor area
Enumerating MIDI output devices
FindText -- the hopeless and useless Common Dialog
Simple Window Viewer
Using FrameRgn for displaying system colors
Attaching menu to a top-level form
How to display picture stored in enhanced-format metafile (*.emf)
How to view icons stored in executable files (Icon Viewer) - II
Using the CreateFile
Using the DeleteFile
Creating a unique filename based on existing filename
Dial the Net Automatically
Enhanced GetFont dialog
Retrieving list of supported paper names (for example, Letter or Legal) for a given printer
Winsock: retrieving the host information corresponding to a network address
GDI+: Using Scale and Shear transformations
How to view icons stored in executable files (Icon Viewer)
Reading and setting explicit Application User Model ID for the current process (Win7)
Retrieving information specific to the current Time Zone
Wininet last error description
Displaying Windows shell folders in TreeView control with Visual FoxPro FLL
Enumerating the subkeys for a given registry key
Winsock: how to retrieve a service information corresponding to a service name

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
 
DO decl
 
IF InitWinsock()
    = DisplayServInfo ("pop3")
    = DisplayServInfo ("smtp")
    = DisplayServInfo ("news")
    = DisplayServInfo ("ftp")
    = DisplayServInfo ("telnet")
    = DisplayServInfo ("talk")
    = DisplayServInfo ("exec")
    = DisplayServInfo ("biff")
 
    = WSACleanup()
ENDIF
* End of Main
 
PROCEDURE  DisplayServInfo (lcServName)
*| struct servent {
*|   char FAR *        s_name;      0:4
*|   char FAR * FAR *  s_aliases;   4:4
*|   short             s_port;      8:4
*|   char FAR *        s_proto;    12:4
*| }; total bytes = 16
#DEFINE SERVENT_SIZE  16
 
    LOCAL lnServentPtr, lcBuffer, lcService, lnPort, lcProt, lcAliases
    lnServentPtr = getservbyname (lcServName, .NULL.)
    IF lnServentPtr = 0
    * no service found with this name
        ? lcProt
        RETURN
    ENDIF
 
    lcBuffer = Repli(Chr(0), SERVENT_SIZE)
    = Heap2Str (@lcBuffer, lnServentPtr, SERVENT_SIZE)
 
    lcService = GetMemStr(buf2dword(SUBSTR(lcBuffer, 1,4)))
    lcAliases = GetAliases(buf2dword(SUBSTR(lcBuffer, 5,4)))
    lnPort    = htons(buf2word(SUBSTR(lcBuffer, 9,2)))
    lcProt    = GetMemStr(buf2dword(SUBSTR(lcBuffer, 13,4)))
 
    ? PADR(lcService,20), STR(lnPort,5), PADR(lcProt,12), lcAliases
RETURN
 
FUNCTION  GetAliases (lnArrayPtr)
* returns a string with alternate names for the service
* delimited with semicolons
    IF lnArrayPtr = 0
        EXIT
    ENDIF
 
    LOCAL lcResult, lnDataPtr, lcAlias
    lcResult = ""
 
    DO WHILE .T.
        * each array element contains a pointer to data
        lnDataPtr = buf2dword(GetMemBuf(lnArrayPtr, 4))
 
        IF lnDataPtr <> 0
            lcAlias = GetMemStr(lnDataPtr)
            lcResult = lcResult +;
                Iif(Empty(lcResult), "",";") + lcAlias
        ELSE
        * the last array element contains null
            EXIT
        ENDIF
        lnArrayPtr = lnArrayPtr + 4  && next array element
    ENDDO
RETURN  lcResult
 
FUNCTION  InitWinsock()
* Initializing the Winsock service for the application
#DEFINE WSADATA_SIZE 398
#DEFINE WS_VERSION 0x0202
    LOCAL lcWSADATA, lnInitResult
    lcWSADATA = Repli(Chr(0), WSADATA_SIZE)
    lnInitResult = WSAStartup (WS_VERSION, @lcWSADATA)
RETURN  (lnInitResult = 0)
 
FUNCTION  GetMemBuf (lnAddr, lnBufsize)
    LOCAL lcBuffer
    lcBuffer = Repli(Chr(0), lnBufsize)
    = Heap2Str (@lcBuffer, lnAddr, lnBufsize)
RETURN  lcBuffer
 
FUNCTION  GetMemStr (lnAddr)
* returning data from a memory block
* before the first occurence of a zero byte
    LOCAL lcBuffer
    lcBuffer = GetMemBuf (lnAddr, 250)
RETURN  SUBSTR(lcBuffer, 1, AT(Chr(0),lcBuffer)-1)
 
FUNCTION  buf2word (lcBuffer)
RETURN Asc(SUBSTR(lcBuffer, 1,1)) + ;
    Asc(SUBSTR(lcBuffer, 2,1)) * 256
 
FUNCTION  buf2dword (lcBuffer)
RETURN Asc(SUBSTR(lcBuffer, 1,1)) + ;
    Asc(SUBSTR(lcBuffer, 2,1)) * 256 +;
    Asc(SUBSTR(lcBuffer, 3,1)) * 65536 +;
    Asc(SUBSTR(lcBuffer, 4,1)) * 16777216
 
PROCEDURE  decl
    DECLARE INTEGER WSAStartup IN ws2_32 INTEGER wVerRq, STRING @lpWSAData
    DECLARE INTEGER WSACleanup IN ws2_32
    DECLARE INTEGER getservbyname IN ws2_32 STRING name, STRING proto  
    DECLARE INTEGER htons IN ws2_32 INTEGER hostshort
 
    DECLARE RtlMoveMemory IN kernel32 As Heap2Str;
        STRING @Dest, INTEGER Src, INTEGER nLength
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
3126 bytes  
Created: 2001-12-17 23:43:34  
Modified: 2005-12-27 10:44:03  
Visits in 7 days: 68  
Listed functions:
getservbyname
htons
WSACleanup
WSAStartup
Printer friendly API declarations
Word Index links for this example:
Translate this page:
  Spanish    Portuguese    German    French    Italian  
FreeTranslation.com offers instant, free translations of text or web pages.
User Contributed Notes:
There are no notes on this subject.


Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

Privacy policy
Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
Last Topics Visited (54.234.67.55)
6.36 hrs.Example: 'GDI+: creating scaled copy of image file'
Language: 'Visual Basic'
 Function: 'SHGetFileInfo'
6.37 hrs.Function: 'LoadLibraryEx'
Function group: 'Dynamic-Link Library'
7.03 hrs.Function: 'GdipGetImageGraphicsContext'
Function group: 'GDI+ Image'
17.75 hrs.Example: 'Storing screen shot of a form to bitmap file'
 Example: 'Winsock: reading email messages (POP3, port 110)'
18.02 hrs.Example: 'Reading and setting system access privileges for the current process'
1 day(s)Example: 'How to ping a remote site using IP Helper API calls'
2 day(s)Example: 'Configuring DEVMODE structure for a printer'
 Function: 'GetKeyboardLayout'
Function group: 'Keyboard Input'
Google
Advertise here!