Visual Basic - Cosas de API's

Life is soft - evento anual de software empresarial
 
Vista:

Cosas de API's

Publicado por Oliver Kraft (25 intervenciones) el 26/05/2005 04:40:44
Hoooola y saludos a todos!!
Quisiera saber sialguien me puede decir que si estas API's con las funciones que tienen, se puedenencontrar en todos los sistemas WIndows, o solo en los NT?
Asi mismo que si un programa que utilize esas funciones puede funcionar en maquinas win 9x

Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Private Declare Function GetKeyState Lib "user32" (ByVal nVirtKey As Long) As Integer
Private Declare Function GetForegroundWindow Lib "user32" () As Long
Private Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" (ByVal hwnd As Long, ByVal lpString As String, ByVal cch As Long) As Long
Private Declare Function GetWindowTextLength Lib "user32" Alias "GetWindowTextLengthA" (ByVal hwnd As Long) As Long

Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Cosas de API's

Publicado por Benjo (679 intervenciones) el 27/05/2005 00:29:19
GetAsyncKeyState = Requires Windows NT 3.1 or later; Requires Windows 95 or later
GetKeyState =Requires Windows NT 3.1 or later; Requires Windows 95 or later
GetForegroundWindow =Requires Windows NT 3.1 or later; Requires Windows 95 or later

GetWindowText = Requires Windows NT 3.1 or later; Requires Windows 95 or later
GetWindowTextLength = Requires Windows NT 3.1 or later; Requires Windows 95 or later

Fuente: AllAPINet

Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar