I'm very new to installers, and looking at some code I'm just confused about what certain calls to functions do. I'm also wondering where these functions reside. If anybody knows a good reference online I can look at to figure these functions out, that'd be great! Something like the sun's java api.
This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.

Newbie Question
Started by
kinetic
, Aug 10 2005 19:50
1 reply to this topic
Posted 10 August 2005 - 19:50
CODE |
prototype BOOL kernel32.CreateProcessA(POINTER, BYVAL STRING, POINTER, POINTER, BOOL, NUMBER, POINTER, POINTER, POINTER, POINTER); prototype BOOL kernel32.GetExitCodeProcess(NUMBER, POINTER); prototype NUMBER kernel32.WaitForSingleObject(NUMBER, NUMBER); prototype NUMBER kernel32.CloseHandle( NUMBER ); |
Where do I figure out what the kernal32.x() functions are?
Thanks in advance

Posted 11 August 2005 - 02:12
That kernel32 stuff is all system levels that you get with Windows.
Therefore, to learn more about them, check Microsoft's MSDN Library and do a search for the function. You can also click here to jump straight to the Windows API section.
Therefore, to learn more about them, check Microsoft's MSDN Library and do a search for the function. You can also click here to jump straight to the Windows API section.
Edited by Taco Bell, 11 August 2005 - 02:15.
