Click here to Skip to main content
15,900,517 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionError : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
Le@rner15-Apr-11 19:48
Le@rner15-Apr-11 19:48 
AnswerRe: Error : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
Hans Dietrich15-Apr-11 20:05
mentorHans Dietrich15-Apr-11 20:05 
GeneralRe: Error : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
Le@rner15-Apr-11 20:35
Le@rner15-Apr-11 20:35 
AnswerRe: Error : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
Hans Dietrich15-Apr-11 20:52
mentorHans Dietrich15-Apr-11 20:52 
AnswerRe: Error : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
«_Superman_»15-Apr-11 21:09
professional«_Superman_»15-Apr-11 21:09 
GeneralRe: Error : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
Le@rner15-Apr-11 21:37
Le@rner15-Apr-11 21:37 
GeneralRe: Error : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
«_Superman_»15-Apr-11 21:46
professional«_Superman_»15-Apr-11 21:46 
AnswerRe: Error : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
David Crow16-Apr-11 3:59
David Crow16-Apr-11 3:59 
AnswerRe: Error : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
linc_lee16-Apr-11 4:15
linc_lee16-Apr-11 4:15 
GeneralRe: Error : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
David Crow16-Apr-11 10:32
David Crow16-Apr-11 10:32 
AnswerRe: Error : 'strcpy_s' : none of the 2 overloads could convert all the argument types. Pin
refla17-Apr-11 1:41
refla17-Apr-11 1:41 
QuestionVisual Studio 4.1 Pin
venkat11615-Apr-11 19:15
venkat11615-Apr-11 19:15 
AnswerRe: Visual Studio 4.1 Pin
«_Superman_»15-Apr-11 21:17
professional«_Superman_»15-Apr-11 21:17 
QuestionAlgorithm [modified] Pin
Cyclone_S15-Apr-11 13:40
Cyclone_S15-Apr-11 13:40 
AnswerRe: Algorithm Pin
Hans Dietrich15-Apr-11 18:07
mentorHans Dietrich15-Apr-11 18:07 
QuestionVC, Linker Tools Warning LNK4086 Pin
refla15-Apr-11 13:22
refla15-Apr-11 13:22 
AnswerRe: VC, Linker Tools Warning LNK4086 Pin
Hans Dietrich15-Apr-11 18:55
mentorHans Dietrich15-Apr-11 18:55 
GeneralRe: VC, Linker Tools Warning LNK4086 Pin
refla17-Apr-11 1:31
refla17-Apr-11 1:31 
AnswerRe: VC, Linker Tools Warning LNK4086 Pin
Hans Dietrich17-Apr-11 1:35
mentorHans Dietrich17-Apr-11 1:35 
GeneralRe: VC, Linker Tools Warning LNK4086 Pin
refla17-Apr-11 2:09
refla17-Apr-11 2:09 
AnswerRe: VC, Linker Tools Warning LNK4086 Pin
Hans Dietrich17-Apr-11 2:30
mentorHans Dietrich17-Apr-11 2:30 
GeneralRe: VC, Linker Tools Warning LNK4086 Pin
refla18-Apr-11 10:44
refla18-Apr-11 10:44 
QuestionBuild Error - Creating a DirectSound secondary buffer [modified] Pin
Paul Hasler15-Apr-11 4:44
Paul Hasler15-Apr-11 4:44 
AnswerRe: Build Error - Creating a DirectSound secondary buffer Pin
Richard MacCutchan15-Apr-11 5:06
mveRichard MacCutchan15-Apr-11 5:06 
GeneralRe: Build Error - Creating a DirectSound secondary buffer Pin
Paul Hasler15-Apr-11 5:19
Paul Hasler15-Apr-11 5:19 
Thanks for your response Richard.

Below is the definiton in Dsound.h
I'm running XP PRO SP3 on this old laptop so it will be defining DirectSound Version 9.0
My understanding was that this was still based on the DirectSound8 interfaces etc.
Have I miss-understood? I'm only just starting to learn DirectSound, so that's highly likely. Sigh | :sigh:
#ifndef DIRECTSOUND_VERSION

#if (NTDDI_VERSION < NTDDI_WINXP) /* Windows 2000 */
#define DIRECTSOUND_VERSION 0x0700  /* Version 7.0 */
#elif (NTDDI_VERSION < NTDDI_WINXPSP2 || NTDDI_VERSION == NTDDI_WS03) /* Windows XP and SP1, or Windows Server 2003 */
#define DIRECTSOUND_VERSION 0x0800  /* Version 8.0 */
#else /* Windows XP SP2 and higher, Windows Server 2003 SP1 and higher, Longhorn, or higher */
#define DIRECTSOUND_VERSION 0x0900  /* Version 9.0 */
#endif

#endif // DIRECTSOUND_VERSION

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.