Greetings, I'm trying to see the samples provided by the SDK. When I complie most of the samples without changing the .rsp file as suggested by the documentation (Adding READER_PLUGIN, removing PI_ACROCOLOR_VERSION=0x00060000, and set the value of ACRO_SDK_LEVE to 0x000A0000) I get them compiled without any error. Unfortunatley when building them after changing the .rsp file as suggested I got a lot of errors.
For example: BatesNumbering Sample after setting the correct setting for .rsp file, I got these errors:
********
1>------ Rebuild All started: Project: BatesNumbering, Configuration: Debug Win32 ------
1>Deleting intermediate and output files for project 'BatesNumbering', configuration 'Debug|Win32'
1>Compiling...
1>PIMain.c
1>Compiling...
1>BatesNumberingInit.cpp
1>BatesNumbering.cpp
1>d:\sdk100_v1_win\adobe\acrobat 10 sdk\version 1\pluginsupport\samples\batesnumbering\sources\batesnumbering.cpp(261 ) : error C2065: 'PDDocAddBatesNumberingSELPROTO' : undeclared identifier
1>d:\sdk100_v1_win\adobe\acrobat 10 sdk\version 1\pluginsupport\samples\batesnumbering\sources\batesnumbering.cpp(300 ) : error C2065: 'PDDocRemoveBatesNumberingSELPROTO' : undeclared identifier
1>Generating Code...
1>Creating browse information file...
1>Microsoft Browse Information Maintenance Utility Version 9.00.21022
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>Build log was saved at "file://d:\sdk100_v1_win\Adobe\Acrobat 10 SDK\Version 1\PluginSupport\Samples\BatesNumbering\win32\Debug\BuildLog.htm"
1>BatesNumbering - 2 error(s), 0 warning(s)
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
*****
Another example: DdeServer:
1>------ Rebuild All started: Project: DdeServer, Configuration: Debug Win32 ------
1>Deleting intermediate and output files for project 'DdeServer', configuration 'Debug|Win32'
1>Compiling...
1>PIMain.c
1>Compiling...
1>DdeServerInit.cpp
1>DdeServer.cpp
1>d:\sdk100_v1_win\adobe\acrobat 10 sdk\version 1\pluginsupport\samples\ddeserver\sources\ddeserver.cpp(164) : error C2065: 'PDPageAddNewAnnotSELPROTO' : undeclared identifier
1>d:\sdk100_v1_win\adobe\acrobat 10 sdk\version 1\pluginsupport\samples\ddeserver\sources\ddeserver.cpp(164) : error C2064: term does not evaluate to a function taking 4 arguments
1>d:\sdk100_v1_win\adobe\acrobat 10 sdk\version 1\pluginsupport\samples\ddeserver\sources\ddeserver.cpp(165) : error C2065: 'PDAnnotSetTitleSELPROTO' : undeclared identifier
1>d:\sdk100_v1_win\adobe\acrobat 10 sdk\version 1\pluginsupport\samples\ddeserver\sources\ddeserver.cpp(165) : error C2064: term does not evaluate to a function taking 3 arguments
1>d:\sdk100_v1_win\adobe\acrobat 10 sdk\version 1\pluginsupport\samples\ddeserver\sources\ddeserver.cpp(166) : error C2065: 'PDTextAnnotSetContentsSELPROTO' : undeclared identifier
1>d:\sdk100_v1_win\adobe\acrobat 10 sdk\version 1\pluginsupport\samples\ddeserver\sources\ddeserver.cpp(166) : error C2064: term does not evaluate to a function taking 3 arguments
1>d:\sdk100_v1_win\adobe\acrobat 10 sdk\version 1\pluginsupport\samples\ddeserver\sources\ddeserver.cpp(167) : error C2065: 'PDTextAnnotSetOpenSELPROTO' : undeclared identifier
1>d:\sdk100_v1_win\adobe\acrobat 10 sdk\version 1\pluginsupport\samples\ddeserver\sources\ddeserver.cpp(167) : error C2064: term does not evaluate to a function taking 2 arguments
1>Generating Code...
1>Creating browse information file...
1>Microsoft Browse Information Maintenance Utility Version 9.00.21022
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>Build log was saved at "file://d:\sdk100_v1_win\Adobe\Acrobat 10 SDK\Version 1\PluginSupport\Samples\DdeServer\win32\Debug\BuildLog.htm"
1>DdeServer - 8 error(s), 0 warning(s)
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
Any help?!!!!