- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
How to use IPP static library in Windows Kernel Mode ?
and where can I download a sample of driver develop?
コピーされたリンク
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hi Gongyi L,
What kind of function from IPP you want to use in kernel model?
You may refer to the sample and user guide in
to build your program.
Best Regards,
Ying H.
Intel IPP Consulting
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
such as ippStaticInit(),ippiResizeYUV422_8u_C2R;
What kind of ipp-linkage-models can use in window kernel model?
below is my code : ( error LINK2019: unresolved external symbol _ippStaticInit()……)
#include <ntddk.h>
#include "ipp.h"
#pragma comment( lib, "ippcoremt" )
typedef struct _DEVICE_EXTENSION {
PDEVICE_OBJECT pDevice;
} DEVICE_EXTENSION, *PDEVICE_EXTENSION;
#define SymLinkName L"\\DosDevices\\Global\\DebugDemo"
#pragma code_seg("INIT")
NTSTATUS CreateDevice (
IN PDRIVER_OBJECT pDriverObject)
{
NTSTATUS status;
PDEVICE_OBJECT pDevObj;
PDEVICE_EXTENSION pDevExt;
UNICODE_STRING devName;
UNICODE_STRING symLinkName;
RtlInitUnicodeString(&devName,L"\\Device\\DebugDemo");
status = IoCreateDevice( pDriverObject,
sizeof(DEVICE_EXTENSION),
&devName,
FILE_DEVICE_UNKNOWN,
0, TRUE,
&pDevObj );
ippStaticInit();
if (!NT_SUCCESS(status))
return status;
……
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hi Gongyi,
I send your private message and include one driver developer sample. You may refer to it.
Best Regards,
Ying
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
If I am not mistaken, ippStaticInit() function is deprecated and removed in newer IPP versions. You should call ippInit() instead.