Changeset 29 for rxutilex/trunk/FUNCTIONS
- Timestamp:
- Jan 26, 2016, 4:13:36 PM (10 years ago)
- File:
-
- 1 edited
-
rxutilex/trunk/FUNCTIONS (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rxutilex/trunk/FUNCTIONS
r25 r29 25 25 Sys2ReplaceModule - Unlock a DLL (DosReplaceModule wrapper) 26 26 Sys2Seek - Set file read/write pointer (with >2GB support) 27 Sys2SyncBuffer - synchronize read/write (DosResetBuffer wrapper) 27 28 Sys2Version - Get the version of this library 28 29 Sys2Write - Write bytes to a file or named pipe … … 278 279 279 280 If a DLL with the given name is currently loaded, that instance of the 280 DLL will be returned. Otherwise, standard DLL loading rules (according 281 to the current LIBPATH and/or extended LIBPATH configuration) are used to 282 search for a DLL whose module name matches the one specified. 281 DLL will be returned. Otherwise, unless 'L' is specified in the second 282 parameter, standard DLL loading rules (which will be governed by the 283 current LIBPATH and/or extended LIBPATH configuration) are used to 284 search for a loadable DLL whose module name matches the one specified. 285 (A loadable DLL is one whose runtime dependencies are also loadable, 286 and whose initialization routine can be executed successfully.) 283 287 284 288 REXX ARGUMENTS: 285 289 1. The name of the DLL to search for. (REQUIRED) 290 2. Flag to limit search context, must be one of: 291 A : 'All', search for both loaded and loadable DLLs (DEFAULT) 292 L : 'Loaded', search only for currently-loaded DLLs 286 293 287 294 … … 490 497 491 498 ------------------------------------------------------------------------- 492 Sys2SyncBuffer 499 Sys2SyncBuffer 493 500 494 501 Used to synchronize buffer read/write transactions (wrapper to 495 DosResetBuffer) For external files, writes the buffer to disk.502 DosResetBuffer). For external files, writes the buffer to disk. 496 503 For named pipes, blocks until the remote client end of the pipe has read 497 504 the contents.
Note:
See TracChangeset
for help on using the changeset viewer.
