- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Atmapuri
コピーされたリンク
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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 ?
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
1)"error LNK2019: unresolved external symbol ippStaticInit" - Please check the IPPROOT environment variable.
2) there is no such examples for MVSC2008
--Gennady
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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;
}