[NETAPI32]
[reactos.git] / reactos / dll / win32 / netapi32 / nbcmdqueue.h
1 /* Copyright (c) 2003 Juan Lang
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
16 */
17 #ifndef __NBCMDQUEUE_H__
18 #define __NBCMDQUEUE_H__
19
20 #define WIN32_NO_STATUS
21 #define _INC_WINDOWS
22 #define COM_NO_WINDOWS_H
23
24 #include <stdarg.h>
25 #include <windef.h>
26 #include <winbase.h>
27 #include <nb30.h>
28
29 /* This file defines a queue of pending NetBIOS commands. The queue operations
30 * are thread safe, with the exception of NBCmdQueueDestroy: ensure no other
31 * threads are manipulating the queue when calling NBCmdQueueDestroy.
32 */
33
34 struct NBCmdQueue;
35
36 /* Allocates a new command queue from heap. */
37 struct NBCmdQueue *NBCmdQueueCreate(HANDLE heap);
38
39 /* Adds ncb to queue. Assumes queue is not NULL, and ncb is not already in the
40 * queue. If ncb is already in the queue, returns NRC_TOOMANY.
41 */
42 UCHAR NBCmdQueueAdd(struct NBCmdQueue *queue, PNCB ncb);
43
44 /* Cancels the given ncb. Blocks until the command completes. Implicitly
45 * removes ncb from the queue. Assumes queue and ncb are not NULL, and that
46 * ncb has been added to queue previously.
47 * Returns NRC_CMDCAN on a successful cancellation, NRC_CMDOCCR if the command
48 * completed before it could be cancelled, and various other return values for
49 * different failures.
50 */
51 UCHAR NBCmdQueueCancel(struct NBCmdQueue *queue, PNCB ncb);
52
53 /* Sets the return code of the given ncb, and implicitly removes the command
54 * from the queue. Assumes queue and ncb are not NULL, and that ncb has been
55 * added to queue previously.
56 * Returns NRC_GOODRET on success.
57 */
58 UCHAR NBCmdQueueComplete(struct NBCmdQueue *queue, PNCB ncb, UCHAR retcode);
59
60 /* Cancels all pending commands in the queue (useful for a RESET or a shutdown).
61 * Returns when all commands have been completed.
62 */
63 UCHAR NBCmdQueueCancelAll(struct NBCmdQueue *queue);
64
65 /* Frees all memory associated with the queue. Blocks until all commands
66 * pending in the queue have been completed.
67 */
68 void NBCmdQueueDestroy(struct NBCmdQueue *queue);
69
70 #endif /* __NBCMDQUEUE_H__ */