Ну это обычная WinApi финкция. Если вы хотите узнать, что означает возращаемое число, то лучше взять заголовочный файл winnt.h от С++ , там есть определения , плюс в Ах-е в макросе WINAPI.Их вообщем то много и приводить их значения тут бессмысленно. А сама функция определяется так:
The GetLastError function returns the calling thread's last-error code value. The last-error code is maintained on a per-thread basis. Multiple threads do not overwrite each other's last-error code.
DWORD GetLastError(VOID)
Parameters
This function has no parameters.
Return Values
The return value is the calling thread's last-error code value. Functions set this value by calling the SetLastError function. The Return Value section of each reference page notes the conditions under which the function sets the last-error code.
|