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

Windows CE support

atmapuri
ビギナー
1,959件の閲覧回数
Hi!
Are there any versions of theIPP that also support Windows CE
for Intel x86 CPU's?
Thanks!
Atmapuri
0 件の賞賛
4 返答(返信)
Intel_C_Intel
従業員
1,959件の閲覧回数

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.

Shmaya_Frankel
ビギナー
1,959件の閲覧回数

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 ?

Gennady_F_Intel
モデレーター
1,959件の閲覧回数

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

2) there is no such examples for MVSC2008

--Gennady

Shmaya_Frankel
ビギナー
1,959件の閲覧回数

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;

}

返信