Search found 14 matches

by zapadepowday
Sun Feb 13, 2022 11:15 am
Forum: Coding Questions
Topic: Pointers and more Pointers
Replies: 9
Views: 689

Re: Pointers and more Pointers

Fantastic AZJIO, That works perfectly, Your a Genius.
Genuine thanks for your help you have saved my brain
I of course meant 70MB, it was late, my eyes had gone to bed...Oh imagine a 70GB Wav file. HaHa.
by zapadepowday
Sat Feb 12, 2022 11:56 pm
Forum: Coding Questions
Topic: Pointers and more Pointers
Replies: 9
Views: 689

Re: Pointers and more Pointers

I Have also tried including wav files as Binary (includeBinary) in a Data Section, but getting above 70mgb I immediately get a POLINK Linker Error. Cannot find out why so tried to resort to LoadSound, But then I have no idea where the Wav is.
Maybe I'll load it and run a search through memory until ...
by zapadepowday
Sat Feb 12, 2022 11:27 pm
Forum: Coding Questions
Topic: Pointers and more Pointers
Replies: 9
Views: 689

Re: Pointers and more Pointers

Thanks AZJIO, But the address is not where the wav file is. I am Missing something here, But I don't know what it is
I feel Like Dylans Mr Jones.
by zapadepowday
Sat Feb 12, 2022 11:19 pm
Forum: Coding Questions
Topic: Pointers and more Pointers
Replies: 9
Views: 689

Re: Pointers and more Pointers

Well almost, Anybody know a way to do this? If I instead use a pointer to access the returned value and hopefully give me the address
of the loaded Wav. The value is incorrect. Does anybody know how to find a Loaded Soundfile ?
by zapadepowday
Sat Feb 12, 2022 10:51 pm
Forum: Coding Questions
Topic: Pointers and more Pointers
Replies: 9
Views: 689

Re: Pointers and more Pointers

Thankyou.. That solves that.
by zapadepowday
Sat Feb 12, 2022 9:25 pm
Forum: Coding Questions
Topic: Pointers and more Pointers
Replies: 9
Views: 689

Pointers and more Pointers

Hi, PB Pointers are new to me, what am I missing here.
I wish to load the wav file and copy it from its loading buffer to a different memory location.
InitSound()

*NewBuffer =AllocateMemory(50000000)

*SoundBuffer = LoadSound (1,"D:\Smart music\New Mix Runoffs\Everyone we Told Remix With Vox (2 ...
by zapadepowday
Sun Jan 30, 2022 11:18 pm
Forum: Coding Questions
Topic: POLINK Internal Error Including Binary files
Replies: 8
Views: 841

Re: POLINK Internal Error Including Binary files

Have really tried everything now, can only assume its a bug.
X64 Paid version, Very disappointing.
by zapadepowday
Sun Jan 30, 2022 10:14 am
Forum: Coding Questions
Topic: POLINK Internal Error Including Binary files
Replies: 8
Views: 841

Re: POLINK Internal Error Including Binary files

Hi, Yes all includes are in the Data Section. I guess Ill have to load everything into an allocate memory and store the address offsets in array, I assume that way there will be no Label addresses.
by zapadepowday
Sat Jan 29, 2022 11:57 pm
Forum: Coding Questions
Topic: POLINK Internal Error Including Binary files
Replies: 8
Views: 841

Re: POLINK Internal Error Including Binary files

mmm, No Luck, All the Virus Stuff off, still Linker error when Compiling
by zapadepowday
Sat Jan 29, 2022 9:10 pm
Forum: Coding Questions
Topic: POLINK Internal Error Including Binary files
Replies: 8
Views: 841

Re: POLINK Internal Error Including Binary files

ahh, just suddenly fell in, My Virus Scanner, ok thankyou.
But I think I do not have one installed, maybe its the windows one, I'll Check.. Thanks
by zapadepowday
Sat Jan 29, 2022 9:05 pm
Forum: Coding Questions
Topic: POLINK Internal Error Including Binary files
Replies: 8
Views: 841

Re: POLINK Internal Error Including Binary files

Thankyou for the reply, but I have no idea what.. Check your Viren scanner (Add exception project folder) means.
Excuse my thickness,
by zapadepowday
Fri Jan 28, 2022 9:15 pm
Forum: Coding Questions
Topic: POLINK Internal Error Including Binary files
Replies: 8
Views: 841

POLINK Internal Error Including Binary files

Hi,
Am having a problem with the Polink:Fatel error: write executable image.
When I am trying to include a few Wav Files (see below)
I am purely trying to create an exe file, no dll etc.
Just to add in another few includes causes the error when compiling.
These are not big files, but it seems to be ...
by zapadepowday
Tue Jan 05, 2010 8:21 pm
Forum: Coding Questions
Topic: DLL for C++
Replies: 3
Views: 896

Re: DLL for C++

That was the problem...I had to tell the Linker where it was and what it was called, so thanks for that
by zapadepowday
Tue Jan 05, 2010 5:54 pm
Forum: Coding Questions
Topic: DLL for C++
Replies: 3
Views: 896

DLL for C++

HI,
I am having a problem creating a PB DLL that I can include in a Microsoft Visual C++ application,
I am compiling the PB code as a DLL with only one Procedure..ie ProcedureC mydll()
I have also tried the variation... ProcedureCDLL, but the C++ application will not compile either the DLL
or ...