mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
move gmm callbacks to windows subdirectory Resolves: NEO-3365 Change-Id: I073fef4b527fb5bd0d829eb672bfd71176b0d317 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
14 lines
272 B
C++
14 lines
272 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
long(__stdcall *notifyAubCaptureImpl)(void *csrHandle, uint64_t gfxAddress, size_t gfxSize, bool allocate) = nullptr;
|
|
} // namespace NEO
|