Click here to Skip to main content
15,915,094 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: LoadString... Pin
Not Active19-Sep-01 6:04
mentorNot Active19-Sep-01 6:04 
GeneralRe: LoadString... Pin
19-Sep-01 8:06
suss19-Sep-01 8:06 
GeneralRe: LoadString... Pin
Not Active19-Sep-01 9:59
mentorNot Active19-Sep-01 9:59 
GeneralRe: LoadString... Pin
Steen Krogsgaard19-Sep-01 23:39
Steen Krogsgaard19-Sep-01 23:39 
GeneralRe: LoadString... Pin
Carlos Antollini19-Sep-01 10:20
Carlos Antollini19-Sep-01 10:20 
GeneralRe: LoadString... Pin
The_Server19-Sep-01 21:08
The_Server19-Sep-01 21:08 
GeneralRe: LoadString... Pin
The_Server19-Sep-01 21:09
The_Server19-Sep-01 21:09 
GeneralRe: LoadString... Pin
Steen Krogsgaard19-Sep-01 23:31
Steen Krogsgaard19-Sep-01 23:31 
Nope, the first one was correct: Long Pointer to Const Tchar String

in WinNT.h: (well, this isn't directly transcript, but you'll get the idea)
#ifdef UNICODE
typedef wchar_t WCHAR;
typedef CONST WCHAR *LPCWSTR; // Long Poiner to Const WCHAR String
typedef WCHAR *LPWSTR; // Long Pointer to WCHAR String
typedef WCHAR TCHAR;  // build-type independent char type
typedef LPCWSTR LPCTSTR;  // build-type independent const string type
typdef LPWSTR LPTSTR; // build-type independent non-const string type
#else
typedef char CHAR;
typedef CONST CHAR *LPCSTR; // Long Pointer to Const String
typedef CHAR *LPSTR;
typedef CHAR TCHAR;     // \
typedef LPCSTR LPCTSTR; // = build-type independent strings.
typedef LPSTR LPTSTR;   // /
#endif


not that it really matters in the long run Wink | ;)

Cheers
Steen.

"To claim that computer games influence children is rediculous. If Pacman had influenced children born in the 80'ies we would see a lot of youngsters running around in dark rooms eating pills while listening to monotonous music"
GeneralRe: LoadString... Pin
Carlos Antollini19-Sep-01 8:26
Carlos Antollini19-Sep-01 8:26 
GeneralTwo Basic Questions about SnapIn Pin
19-Sep-01 4:43
suss19-Sep-01 4:43 
GeneralRe: Two Basic Questions about SnapIn Pin
Jeremy Pullicino19-Sep-01 5:02
Jeremy Pullicino19-Sep-01 5:02 
GeneralRe: Two Basic Questions about SnapIn Pin
19-Sep-01 8:49
suss19-Sep-01 8:49 
GeneralRe: Two Basic Questions about SnapIn Pin
Jeremy Pullicino19-Sep-01 21:32
Jeremy Pullicino19-Sep-01 21:32 
Generalmenu at Right Side...VC++ Pin
Ahmad9919-Sep-01 3:51
Ahmad9919-Sep-01 3:51 
GeneralRe: menu at Right Side...VC++ Pin
Not Active19-Sep-01 6:11
mentorNot Active19-Sep-01 6:11 
GeneralRe: menu at Right Side...VC++ Pin
Michael Dunn19-Sep-01 8:16
sitebuilderMichael Dunn19-Sep-01 8:16 
GeneralRe: menu at Right Side...VC++ Pin
20-Sep-01 21:13
suss20-Sep-01 21:13 
GeneralRe: menu at Right Side...VC++ Pin
Michael Dunn20-Sep-01 21:58
sitebuilderMichael Dunn20-Sep-01 21:58 
GeneralReloading FTP Pin
José Luis Sogorb19-Sep-01 2:53
José Luis Sogorb19-Sep-01 2:53 
GeneralAccessing database Pin
19-Sep-01 1:37
suss19-Sep-01 1:37 
GeneralRe: Accessing database Pin
[James Pullicino]19-Sep-01 2:05
[James Pullicino]19-Sep-01 2:05 
GeneralPlay multiple mediaplayer in Win NT Pin
Dhanavanth19-Sep-01 1:04
Dhanavanth19-Sep-01 1:04 
QuestionWhat kind of VIEW is beeing used in different progs? Pin
18-Sep-01 23:34
suss18-Sep-01 23:34 
AnswerRe: What kind of VIEW is beeing used in different progs? Pin
Michael P Butler18-Sep-01 23:40
Michael P Butler18-Sep-01 23:40 
GeneralRe: What kind of VIEW is beeing used in different progs? Pin
18-Sep-01 23:51
suss18-Sep-01 23:51 

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.