-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move sockdrive implementation into protocol
- Loading branch information
Showing
6 changed files
with
120 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#include <sockdrive.h> | ||
|
||
size_t sockdrive_open(const char* url, | ||
const char* owner, const char* name, const char* token) { | ||
return 0; | ||
} | ||
|
||
uint8_t sockdrive_read(size_t handle, uint32_t sector, uint8_t * buffer) { | ||
return 5; | ||
} | ||
|
||
uint8_t sockdrive_write(size_t handle, uint32_t sector, uint8_t* buffer) { | ||
return 5; | ||
} | ||
|
||
uint32_t sockdrive_size(size_t handle) { | ||
return 0; | ||
} | ||
uint32_t sockdrive_heads(size_t handle) { | ||
return 0; | ||
} | ||
uint32_t sockdrive_sectors(size_t handle) { | ||
return 0; | ||
} | ||
uint32_t sockdrive_cylinders(size_t handle) { | ||
return 0; | ||
} | ||
uint32_t sockdrive_sector_size(size_t handle) { | ||
return 0; | ||
} | ||
void sockdrive_close(size_t handle) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters