This function creates a scanner window.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_GUI_scan_window_create(
HWND hwndParent,
DWORD dwPageGrp,
DWORD dwStyle,
const LPSTR lpcszTitle,
INT x,
INT y,
INT nWidth,
INT nHeight,
HWND FAR* lphwndScan
);
|
Name | Type | Description |
---|---|---|
hwndParent | HWND | HWND for the parent window. |
dwPageGrp | DWORD | The page for the scanner window. |
dwStyle | DWORD | Window style bits. |
lpcszTitle | const LPSTR | Window title. |
x | INT | X position of the window. |
y | INT | Y position of the window. |
nWidth | INT | Window width. |
nHeight | INT | Window height. |
lphwndScan | HWND FAR* | The handle to the created scanner window. |
To determine the number of errors currently on the error stack use IG_error_check. After fetching all error information you need using IG_error_get, use IG_error_clear to clear the stack.
This function does not process image pixels.
C GuiScan