| Rev | Line |  | 
|---|
| [829] | 1 | library JAWS; | 
|---|
|  | 2 |  | 
|---|
|  | 3 | { Important note about DLL memory management: ShareMem must be the | 
|---|
|  | 4 | first unit in your library's USES clause AND your project's (select | 
|---|
|  | 5 | Project-View Source) USES clause if your DLL exports any procedures or | 
|---|
|  | 6 | functions that pass strings as parameters or function results. This | 
|---|
|  | 7 | applies to all strings passed to and from your DLL--even those that | 
|---|
|  | 8 | are nested in records and classes. ShareMem is the interface unit to | 
|---|
|  | 9 | the BORLNDMM.DLL shared memory manager, which must be deployed along | 
|---|
|  | 10 | with your DLL. To avoid using BORLNDMM.DLL, pass string information | 
|---|
|  | 11 | using PChar or ShortString parameters. } | 
|---|
|  | 12 |  | 
|---|
|  | 13 | uses | 
|---|
|  | 14 | SysUtils, | 
|---|
|  | 15 | Classes, | 
|---|
|  | 16 | JAWSImplementation in 'JAWSImplementation.pas', | 
|---|
|  | 17 | VAUtils in '..\..\VAUtils.pas', | 
|---|
|  | 18 | VAClasses in '..\..\VAClasses.pas', | 
|---|
|  | 19 | fVA508HiddenJawsMainWindow in 'fVA508HiddenJawsMainWindow.pas' {frmVA508HiddenJawsMainWindow}, | 
|---|
|  | 20 | fVA508HiddenJawsDataWindow in 'fVA508HiddenJawsDataWindow.pas' {frmVA508HiddenJawsDataWindow}, | 
|---|
|  | 21 | JAWSCommon in 'JAWSCommon.pas', | 
|---|
|  | 22 | VA508AccessibilityConst in '..\VA508AccessibilityConst.pas', | 
|---|
|  | 23 | FSAPILib_TLB in 'FSAPILib_TLB.pas'; | 
|---|
|  | 24 |  | 
|---|
|  | 25 | {$E SR} | 
|---|
|  | 26 |  | 
|---|
|  | 27 | {$R *.res} | 
|---|
|  | 28 |  | 
|---|
|  | 29 | begin | 
|---|
|  | 30 | end. | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.