get the queues when GN_EXT_QUEUES is enabled

This commit is contained in:
Greg Wells
2025-07-16 12:42:30 -04:00
parent 92e8ea8fe8
commit 5e3f9e0a37
9 changed files with 94 additions and 104 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include "stdint.h"
typedef uint32_t gnExtension;
#define GN_EXT_SYNCHRONIZATION 0
#define GN_EXT_QUEUES 1
typedef enum gnExtension {
GN_EXT_SYNCHRONIZATION = 0,
GN_EXT_QUEUES = 1,
GN_EXT_MAX
} gnExtension;