Page 1 of 1

easy winapi

Posted: Mon Sep 12, 2005 11:00 am
by lexvictory
i have just started a lib project that make easy use of certain winapi funtions, so far ive only got some window functions done... im not sure how many people would be interested in this as all it is is just:

Code: Select all

ProcedureDLL.s GetHwndTitle(hwnd) ; get the window title of the specified hwnd
  title.s = Space(#MAX_PATH)
  GetWindowText_(hwnd, @title, #MAX_PATH)
 ProcedureReturn title
EndProcedure
and dont worry, i use tailbite to make the lib.....
if anyone is interested, are there any functions, or a set of functions that u would like done in this lib?
these things might not be much, but they do make it a lot easier....