Dll docs

Windows specific forum
michaeled314
Enthusiast
Enthusiast
Posts: 340
Joined: Tue Apr 24, 2007 11:14 pm

Dll docs

Post by michaeled314 »

Anyone know where I could find docs for all the dll's in system32 folder.
User avatar
netmaestro
PureBasic Bullfrog
PureBasic Bullfrog
Posts: 8452
Joined: Wed Jul 06, 2005 5:42 am
Location: Fort Nelson, BC, Canada

Post by netmaestro »

Download the Platform SDK and install it. Then, you can surf through the dlls and run such code, kernel32.dll is used for example:

Code: Select all

OpenLibrary(0, "kernel32.dll")
ExamineLibraryFunctions(0)
While NextLibraryFunction()
  Debug LibraryFunctionName()
Wend
Any function listed that looks interesting to you can be looked up in the Platform SDK and full documentation on what it's for and how it's used is given. You should be a little while getting through all of them :wink:
BERESHEIT
michaeled314
Enthusiast
Enthusiast
Posts: 340
Joined: Tue Apr 24, 2007 11:14 pm

Post by michaeled314 »

How exactly do you view Hxi files
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Post by ts-soft »

With MS-Document Explorer, include in PSDK, MSDN and some others or H2Viewer ( http://www.helpware.net/mshelp2/h2viewer.htm )
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
Image
Post Reply