Changeset 589 in xtideuniversalbios for trunk/Serial_Server/library
- Timestamp:
- May 22, 2016, 12:26:57 PM (9 years ago)
- Location:
- trunk/Serial_Server/library
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Serial_Server/library/Checksum.cpp
r526 r589 3 3 // Project: XTIDE Universal BIOS, Serial Port Server 4 4 // 5 // File: checksum.cpp - Checksum function and test routines5 // File: Checksum.cpp - Checksum function and test routines 6 6 7 7 // … … 39 39 // 40 40 41 #include " library.h"41 #include "Library.h" 42 42 43 43 unsigned short checksum( unsigned short *wbuff, int wlen ) -
trunk/Serial_Server/library/File.h
r526 r589 3 3 // Project: XTIDE Universal BIOS, Serial Port Server 4 4 // 5 // File: file.h - File access via standard "stdio.h" routines5 // File: File.h - File access via standard "stdio.h" routines 6 6 // 7 7 // Routines for accessing the file system using generic routines, which -
trunk/Serial_Server/library/FlatImage.h
r526 r589 22 22 // 23 23 24 #include " library.h"24 #include "Library.h" 25 25 26 26 class FlatImage : public Image -
trunk/Serial_Server/library/Image.cpp
r526 r589 3 3 // Project: XTIDE Universal BIOS, Serial Port Server 4 4 // 5 // File: image.cpp - Abstract base class for disk image support5 // File: Image.cpp - Abstract base class for disk image support 6 6 // 7 7 … … 22 22 // 23 23 24 #include " library.h"24 #include "Library.h" 25 25 #include <memory.h> 26 26 #include <stdlib.h> -
trunk/Serial_Server/library/Library.h
r526 r589 3 3 // Project: XTIDE Universal BIOS, Serial Port Server 4 4 // 5 // File: library.h - Include file for users of the library5 // File: Library.h - Include file for users of the library 6 6 // 7 7 … … 87 87 88 88 #ifdef WIN32 89 #include "../win32/ win32serial.h"89 #include "../win32/Win32Serial.h" 90 90 #else 91 91 // there is no standard way to read/write and configure the serial port, OS specific only … … 93 93 94 94 #ifdef WIN32 95 #include "../win32/ win32file.h"95 #include "../win32/Win32File.h" 96 96 #else 97 #include " file.h"97 #include "File.h" 98 98 #endif 99 99 -
trunk/Serial_Server/library/Process.cpp
r526 r589 3 3 // Project: XTIDE Universal BIOS, Serial Port Server 4 4 // 5 // File: process.cpp - Processes commands received over the serial port5 // File: Process.cpp - Processes commands received over the serial port 6 6 // 7 7 … … 22 22 // 23 23 24 #include " library.h"24 #include "Library.h" 25 25 #include <memory.h> 26 26 #include <string.h> -
trunk/Serial_Server/library/Serial.cpp
r526 r589 22 22 // 23 23 24 #include " library.h"24 #include "Library.h" 25 25 #include <stdlib.h> 26 26 #include <string.h>
Note:
See TracChangeset
for help on using the changeset viewer.