diff options
author | Christopher Faylor <me@cgf.cx> | 2002-12-12 03:09:38 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-12-12 03:09:38 +0000 |
commit | 6d14741177aab17a98463658597f4b139fb39dba (patch) | |
tree | 0514a4c450974ff95786d2740cad9e58bb2623d7 /winsup/cygwin/how-autoload-works.txt | |
parent | 023a6b2aff08185fc691f72c49fbb05ecd8e2006 (diff) | |
download | cygnal-6d14741177aab17a98463658597f4b139fb39dba.tar.gz cygnal-6d14741177aab17a98463658597f4b139fb39dba.tar.bz2 cygnal-6d14741177aab17a98463658597f4b139fb39dba.zip |
whitespace
Diffstat (limited to 'winsup/cygwin/how-autoload-works.txt')
-rw-r--r-- | winsup/cygwin/how-autoload-works.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/how-autoload-works.txt b/winsup/cygwin/how-autoload-works.txt index 27c2426d8..4f96d8beb 100644 --- a/winsup/cygwin/how-autoload-works.txt +++ b/winsup/cygwin/how-autoload-works.txt @@ -55,12 +55,12 @@ function that was not used there before, you should add a stub so it will be autoloaded. To do so, add one of the LoadDllfunc* macros to autoload.cc. All macros eventually resolve to the following form: -LoadDLLfuncEx2 (function name, parameter block length, dll name, +LoadDLLfuncEx2 (function name, parameter block length, dll name, non-fatality flag , value to return if function not available) -Parameter block length is a sum of sizes (in bytes) of parameters which are -being passed to the function. If non-fatality flag is set to 0, then failure -to load dll and find a function will cause fatal error. If non fatality flag +Parameter block length is a sum of sizes (in bytes) of parameters which are +being passed to the function. If non-fatality flag is set to 0, then failure +to load dll and find a function will cause fatal error. If non fatality flag is set to 1, then call to the function will return default value. You can also use shorter versions -- LoadDLLfuncEx and LoadDLLfunc, if the defaults they provide suit your needs. |