Last change
on this file since 7549 was 7549, checked in by sandervl, 24 years ago |
preliminary changes for new overlapped io framework
|
File size:
1.1 KB
|
Line | |
---|
1 | /* $Id: overlappedio.cpp,v 1.1 2001-12-05 14:16:38 sandervl Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
5 | *
|
---|
6 | * Win32 COM device access class
|
---|
7 | *
|
---|
8 | * 1999 Achim Hasenmueller <achimha@innotek.de>
|
---|
9 | * 2001 Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
10 | *
|
---|
11 | * TODO: Overlapped IO only supports one request at a time
|
---|
12 | * TODO: Overlapped IO not thread safe
|
---|
13 | *
|
---|
14 | */
|
---|
15 |
|
---|
16 |
|
---|
17 |
|
---|
18 | #include <os2win.h>
|
---|
19 | #include <string.h>
|
---|
20 | #include <handlemanager.h>
|
---|
21 | #include "handlenames.h"
|
---|
22 | #include <heapstring.h>
|
---|
23 | #include "hmdevice.h"
|
---|
24 | #include "hmcomm.h"
|
---|
25 | #include "oslibdos.h"
|
---|
26 |
|
---|
27 | #define DBG_LOCALLOG DBG_overlappedio
|
---|
28 | #include "dbglocal.h"
|
---|
29 |
|
---|
30 |
|
---|
31 | DWORD CALLBACK OverlappedIOEventThread(LPVOID lpThreadParam);
|
---|
32 | DWORD CALLBACK OverlappedIOReadWriteThread(LPVOID lpThreadParam);
|
---|
33 |
|
---|
34 | //******************************************************************************
|
---|
35 | //******************************************************************************
|
---|
36 |
|
---|
37 |
|
---|
38 | //******************************************************************************
|
---|
39 | //******************************************************************************
|
---|
Note:
See
TracBrowser
for help on using the repository browser.