.FLL 파일 확장자
FoxPro Dynamic-Link Library
| 개발사 | Microsoft |
| 인기도 |
4.0 | 2 투표 |
FLL 파일이란 무엇인가요?
An FLL file contains a dynamically linked library created by Visual FoxPro, a database management program for Windows. It stores a compiled set of procedures, or functions, that can only be called from Visual FoxPro. FLL files are similar to .DLL files, which are commonly used in Windows, but FLL files can only be used with Visual FoxPro.
추가 정보
You most likely will only encounter FLL files if you work with Visual FoxPro database software. To call a function from an FLL file, you must first register the FLL file with a SET LIBRARY command that sets the library to the FLL file location. You can then call the functions in the library.
To register multiple FLL files, add the ADDITIVE keyword with the SET LIBRARY command and include the locations of the other FLL files. Functions in registered FLL files only remain available during the Visual FoxPro session.