From: Holger Schönstedt on
Hello,

I build BDA drivers with the new WDK build 6000. I use a batch file to
set environmentals and calling the WDK setenv.bat and the build utility.
My batch file is called from Visual Studio 6.

I want to use the (bsc) browse informations. The setenv is called with
bscmake and w.r.t. this NO_BROWSE_FILE is not set.
But my problem is that no browse files will be generated and additional
no errors in the build log files are listed.

So has anybody some hints what to do to build bsc files with the new
WDK? Is there any additional installation stuff needed or some
additional environment settings?

Additional I've tried to copy the bscmake.exe into different PATHs so it
could be found but this doesn't help.

Regards
Holger
From: Tim Roberts on
Holger Sch�nstedt <holger.schoenstedt(a)arcor.de> wrote:
>
>I build BDA drivers with the new WDK build 6000. I use a batch file to
>set environmentals and calling the WDK setenv.bat and the build utility.
> My batch file is called from Visual Studio 6.
>
>I want to use the (bsc) browse informations. The setenv is called with
>bscmake and w.r.t. this NO_BROWSE_FILE is not set.

But are you setting BROWSER_INFO? That's the key thing that triggers
browse creation.

However, I don't think that's changed since 3790...
--
Tim Roberts, timr(a)probo.com
Providenza & Boekelheide, Inc.
From: David J. Craig on
Did he copy bscmake.exe into the appropriate directory? It ships with the
SDK and Visual Studio, but not the WDK.

"Tim Roberts" <timr(a)probo.com> wrote in message
news:pcsgq2dhp0rnnvu0dkjse06058nr5igdv4(a)4ax.com...
> Holger Sch�nstedt <holger.schoenstedt(a)arcor.de> wrote:
>>
>>I build BDA drivers with the new WDK build 6000. I use a batch file to
>>set environmentals and calling the WDK setenv.bat and the build utility.
>> My batch file is called from Visual Studio 6.
>>
>>I want to use the (bsc) browse informations. The setenv is called with
>>bscmake and w.r.t. this NO_BROWSE_FILE is not set.
>
> But are you setting BROWSER_INFO? That's the key thing that triggers
> browse creation.
>
> However, I don't think that's changed since 3790...
> --
> Tim Roberts, timr(a)probo.com
> Providenza & Boekelheide, Inc.


From: Holger Schönstedt on
Tim Roberts schrieb:
> Holger Sch�nstedt <holger.schoenstedt(a)arcor.de> wrote:
>> I build BDA drivers with the new WDK build 6000. I use a batch file to
>> set environmentals and calling the WDK setenv.bat and the build utility.
>> My batch file is called from Visual Studio 6.
>>
>> I want to use the (bsc) browse informations. The setenv is called with
>> bscmake and w.r.t. this NO_BROWSE_FILE is not set.
>
> But are you setting BROWSER_INFO? That's the key thing that triggers
> browse creation.
>
> However, I don't think that's changed since 3790...

Thanks Tim for the hint to set BROWSER_INFO. For a DDK build I set this
one in the sources file. But with the WDK I got a BLD1007 error, so I
removed it and never found something in the documentation that I must
set this. So now I set it in my build batch and all works fine and the
browse info is generated.


THX
From: Gary G. Little on
You set it as an environment variable, which what the error says when you
try to set it in the SOURCES file.

--
The personal opinion of
Gary G. Little

"Holger Sch�nstedt" <holger.schoenstedt(a)arcor.de> wrote in message
news:45ab70e7$0$5727$9b4e6d93(a)newsspool3.arcor-online.net...
> Tim Roberts schrieb:
>> Holger Sch�nstedt <holger.schoenstedt(a)arcor.de> wrote:
>>> I build BDA drivers with the new WDK build 6000. I use a batch file to
>>> set environmentals and calling the WDK setenv.bat and the build utility.
>>> My batch file is called from Visual Studio 6.
>>>
>>> I want to use the (bsc) browse informations. The setenv is called with
>>> bscmake and w.r.t. this NO_BROWSE_FILE is not set.
>>
>> But are you setting BROWSER_INFO? That's the key thing that triggers
>> browse creation.
>>
>> However, I don't think that's changed since 3790...
>
> Thanks Tim for the hint to set BROWSER_INFO. For a DDK build I set this
> one in the sources file. But with the WDK I got a BLD1007 error, so I
> removed it and never found something in the documentation that I must set
> this. So now I set it in my build batch and all works fine and the browse
> info is generated.
>
>
> THX