1 /*
2  * Copyright (c) 2020-2021 Huawei Device Co., Ltd.
3  *
4  * HDF is dual licensed: you can use it either under the terms of
5  * the GPL, or the BSD license, at your option.
6  * See the LICENSE file in the root of this repository for complete details.
7  */
8 #ifndef HDF_WLAN_QUEUE_H
9 #define HDF_WLAN_QUEUE_H
10 #include "hdf_base.h"
11 
12 typedef struct {
13 } HdfWlanQueue;
14 
15 HdfWlanQueue *CreateQueue(uint16_t maxQueueSize);
16 void DestroyQueue(HdfWlanQueue* queue);
17 
18 void *PopQueue(HdfWlanQueue *queue);
19 int32_t PushQueue(HdfWlanQueue *queue, void *context);
20 
21 
22 #endif
23