-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pull in latest changes from upstream
- Loading branch information
1 parent
2367ca9
commit 0db8a02
Showing
9 changed files
with
5,109 additions
and
4,650 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Runtime.InteropServices; | ||
using System.Text; | ||
using TownSuite.TwainScanner; | ||
|
||
namespace TownSuite.TwainScanner | ||
{ | ||
|
||
internal sealed class Pict : _ImageHandler | ||
{ | ||
|
||
/// <summary> | ||
/// Gets the size of a image data. | ||
/// </summary> | ||
/// <returns> | ||
/// Size of a image data. | ||
/// </returns> | ||
protected override int GetSize() => throw new NotImplementedException(); | ||
|
||
/// <summary> | ||
/// Gets the size of the buffer. | ||
/// </summary> | ||
/// <value> | ||
/// The size of the buffer. | ||
/// </value> | ||
protected override int BufferSize => 256 * 1024; //256K | ||
} | ||
} |
Oops, something went wrong.