findest du bis auf eine Funktion alle. Hab selbst mal nachgeschaut

Zum Blockinput hätte dir die google-Suche im Internet geholfen.Win32.hlp hat geschrieben:The GetDateFormat function formats a date as a date string for a specified locale. The function formats either a specified date or the local system date.
int GetDateFormat(
LCID Locale, // locale for which date is to be formatted
DWORD dwFlags, // flags specifying function options
CONST SYSTEMTIME *lpDate, // date to be formatted
LPCTSTR lpFormat, // date format string
LPTSTR lpDateStr, // buffer for storing formatted string
int cchDate // size of buffer
);
The GetTimeFormat function formats a time as a time string for a specified locale. The function formats either a specified time or the local system time.
int GetTimeFormat(
LCID Locale, // locale for which time is to be formatted
DWORD dwFlags, // flags specifying function options
CONST SYSTEMTIME *lpTime, // time to be formatted
LPCTSTR lpFormat, // time format string
LPTSTR lpTimeStr, // buffer for storing formatted string
int cchTime // size, in bytes or characters, of the buffer
);
int GetSystemMetrics(
int nIndex // system metric or configuration setting to retrieve
);
Beispiel, hier wäre z.B. :
http://www.autoitscript.com/autoit3/doc ... kInput.htm
Neuere API-Funktionen kann man sich bei MSDN anschauen. Im alten
und neuen Archiv stehen hierzu Links, wo man die MSDN-SDK etc. dazu
findet.
Grüße ...Falko