- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to use IPP static library in Windows Kernel Mode ?
and where can I download a sample of driver develop?
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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;
……
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Gongyi,
I send your private message and include one driver developer sample. You may refer to it.
Best Regards,
Ying
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If I am not mistaken, ippStaticInit() function is deprecated and removed in newer IPP versions. You should call ippInit() instead.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page