|  | You can get a list of your NT4 or W95 system's file type associations by
using Explorer->View->Options pulldown.  The FileTypes tab
has sort of an explanation but nothing definitive.  At least it
is something.
Specifically, a DLL is a dynamic link library which is kind of like
a VMS sharable image that gets linked with your code at run time.
An INI file has initialization data (man, is this vague!) for an
application.  I'd expect it to be a plain text file but this isn't
always the case.  
[ You never know what's in an INI file -- the program
  may have ten times as many settable features as the INI file shows
  and it may have undocumented features.  Or if you make a typo in
  an INI file the app may crash.  Or if you forget to leave a blank
  line then the app may swallow some of the lines without processing
  them.  Old DOS/WIN3 ini files are the worst; new modern VC++ INI
  files are better. ]
HTH,
Chuck
 |