Changeset 920

Show
Ignore:
Timestamp:
10/09/08 16:49:21 (3 months ago)
Author:
mloskot
Message:

LibLASCAPI.cs: after today discussion on the list, I decided to change value of DLL_LAS_VERSION constant from mingw_liblas1.dll to liblas1.dll as a kind of unified name of DLL with libLAS C API.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/csharp/dotnetLibLAS/LibLASCAPI.cs

    r914 r920  
    5959         * @return the version string for this library. 
    6060         *  
    61          * If libLAS is built using solution from trunk/build/msvc80/liblas.sln 
    62          * then C API DLL is called liblas_c_dll.dll, so value of the constant below 
    63          * should be updated to "liblas_c_dll.dll". 
     61         * Name liblas1.dll is considered as unified across all builders on Windows platform. 
     62         * When building libLAS on Windows using NMAKE and makefile.vc, C API DLL is 
     63         * called liblas1.dll. The same name is used by Visual Studio solution liblas.sln. 
    6464         */ 
    65         public const string DLL_LAS_VERSION = "mingw_liblas1.dll"; 
     65        public const string DLL_LAS_VERSION = "liblas1.dll"; 
    6666 
    6767        [DllImport(DLL_LAS_VERSION)]