--- Begin Message ---
diff -ruNp old/docs/history.txt new/docs/history.txt
--- old/docs/history.txt        2004-05-30 13:56:58.000000000 +0000
+++ new/docs/history.txt        2004-05-31 23:47:36.000000000 +0000
@@ -24,11 +24,10 @@
        * time.h, fatfs.c: converted TM_ENCODE into a function.
        * inthndlr.c, proto.h, fatfs.c: Inlined dos_setdta.
          Various bug fixes and cleanups from Lucho and Arkady.
-       * inithma.c: moved fmemcmp's into a checkHMA function.
-       * inithma.c: HMAFree == 0xfff0 - bytesToAllocate
-         is valid and may happen if the buffers occupy exactly all HMA
-         space up to and including the last byte at ffff:ffff. Failing
-         caused all buffers to go low ...
+       * inithma.c: moved fmemcmp's into a EnabledA20() function.
+       * inithma.c: condition HMAFree>=0xfff0-bytesToAllocate was wrong
+         and prevents to allocate HMA space up to and including byte at
+         ffff:ffef. May cause to move all buffers low. Fixed.
        * inthndlr.c: cleanups (merge common code into long_check and
          short_check). Made int21/3301,2e,54 consistent with MSDOS
          behaviour.
diff -ruNp old/docs/lfnapi.txt new/docs/lfnapi.txt
--- old/docs/lfnapi.txt 2002-01-23 14:29:16.000000000 +0000
+++ new/docs/lfnapi.txt 2004-07-19 09:37:00.000000000 +0000
@@ -2,20 +2,20 @@
 
 struct lfn_inode
 {
-  UNICODE name[261];
-
-  struct dirent l_dir;          /* this file's dir entry image  */
-
-  ULONG l_diroff;               /* offset of the dir entry      */
+  UNICODE l_name[261];         /* Long file name string        */
+  struct dirent l_dir;         /* Directory entry image        */
+  UWORD l_diroff;               /* Current directory entry #   */
 };
+
 typedef struct lfn_inode FAR * lfn_inode_ptr;
 
 COUNT lfn_allocate_inode(VOID);
 COUNT lfn_free_inode(COUNT handle);
 
-COUNT lfn_setup_inode(COUNT handle, ULONG dirstart, ULONG diroff);
+COUNT lfn_setup_inode(COUNT handle, ULONG dirstart, UWORD diroff);
 
 COUNT lfn_create_entries(COUNT handle, lfn_inode_ptr lip);
+COUNT lfn_remove_entries(COUNT handle);
 
 COUNT lfn_dir_read(COUNT handle, lfn_inode_ptr lip);
 COUNT lfn_dir_write(COUNT handle);




-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
_______________________________________________
Freedos-kernel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-kernel

--- End Message ---

Reply via email to