Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

Windows CE support

atmapuri
Beginner
382 Views
Hi!
Are there any versions of theIPP that also support Windows CE
for Intel x86 CPU's?
Thanks!
Atmapuri
0 Kudos
4 Replies
Intel_C_Intel
Employee
382 Views

There is no special version of IPP for Windows CE. But, it seems for me that IPP for Windows should work under Windows CE for x86, but we never tested it. So, you can try, at least.

0 Kudos
Shmaya_Frankel
Beginner
382 Views

I have a problem to link with the libs

I get alikn error

error LNK2019: unresolved external symbol ippStaticInit

I use the VS2008

the sample at

ipp-samples\advanced-usage\wincex86

is very old -is theresample for VS2008 ?

0 Kudos
Gennady_F_Intel
Moderator
382 Views

1)"error LNK2019: unresolved external symbol ippStaticInit" - Please check the IPPROOT environment variable.

2) there is no such examples for MVSC2008

--Gennady

0 Kudos
Shmaya_Frankel
Beginner
382 Views

I am using the #pragma comment lib - so is os not the case.

this is the all the code I have:

#pragma comment(linker, "/nodefaultlib:libc.lib")

#pragma comment(linker, "/nodefaultlib:libcd.lib")

// NOTE - this value is not strongly correlated to the Windows CE OS version being targeted

#define WINVER _WIN32_WCE

#include

#include "C:\Program Files (x86)\Intel\IPP\6.1.4.052\ia32\include\ipp.h"

#pragma comment(lib,"C:\\Program Files (x86)\\Intel\\IPP\\6.1.4.052\\ia32\\stublib\\ippcore.lib")

int WINAPI WinMain(HINSTANCE hInstance,

HINSTANCE hPrevInstance,

LPTSTR lpCmdLine,

int nCmdShow)

{

IppStatus retval = ippStsNoErr;

retval = ippStaticInit();

return (int)retval;

}

0 Kudos
Reply