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

C / C++ / MFC

 
Generalmultithreading Pin
summo24-Mar-03 1:38
summo24-Mar-03 1:38 
GeneralRe: multithreading Pin
Ravi Bhavnani24-Mar-03 2:08
professionalRavi Bhavnani24-Mar-03 2:08 
Generalaccessing union inside struct Pin
M. Agamawi24-Mar-03 1:20
M. Agamawi24-Mar-03 1:20 
GeneralRe: accessing union inside struct Pin
_Theo_24-Mar-03 1:43
_Theo_24-Mar-03 1:43 
GeneralRe: accessing union inside struct Pin
M. Agamawi24-Mar-03 1:48
M. Agamawi24-Mar-03 1:48 
GeneralRe: accessing union inside struct Pin
_Theo_24-Mar-03 2:03
_Theo_24-Mar-03 2:03 
GeneralRe: accessing union inside struct Pin
Anonymous24-Mar-03 2:14
Anonymous24-Mar-03 2:14 
GeneralRe: accessing union inside struct Pin
jbarton24-Mar-03 3:50
jbarton24-Mar-03 3:50 
Just to clarify why this works:

Microsoft uses a #define for DUMMYUNIONNAME so that the same include file can be used with compilers that don't support unnamed unions. When you compile using Visual C++, the DUMMYUNIONNAME is #defined to a blank string, so the union doesn't have a name (and its members can be accessed directly). When you compile on a compiler which doesn't support unnamed unions, it is #defined to u (and you would need to include the .u before the member name).
GeneralPrecision Problem Pin
emrosa24-Mar-03 1:02
emrosa24-Mar-03 1:02 
GeneralRe: Precision Problem Pin
Jambolo25-Mar-03 17:00
Jambolo25-Mar-03 17:00 
QuestionHow to smooth fonts Pin
Ph@ntom24-Mar-03 0:13
Ph@ntom24-Mar-03 0:13 
GeneralReading MessageBox Pin
udayGovekar23-Mar-03 23:54
udayGovekar23-Mar-03 23:54 
GeneralRe: Reading MessageBox Pin
_Theo_24-Mar-03 1:01
_Theo_24-Mar-03 1:01 
GeneralRe: Reading MessageBox Pin
udayGovekar24-Mar-03 1:20
udayGovekar24-Mar-03 1:20 
GeneralRe: Reading MessageBox Pin
jhwurmbach24-Mar-03 1:26
jhwurmbach24-Mar-03 1:26 
GeneralRe: Reading MessageBox Pin
_Theo_24-Mar-03 1:27
_Theo_24-Mar-03 1:27 
GeneralRe: Reading MessageBox Pin
Brian Delahunty24-Mar-03 4:26
Brian Delahunty24-Mar-03 4:26 
GeneralOwner Drawn Menus Pin
Mihir Gore23-Mar-03 23:44
Mihir Gore23-Mar-03 23:44 
GeneralRe: Owner Drawn Menus Pin
Roger Allen24-Mar-03 1:23
Roger Allen24-Mar-03 1:23 
GeneralCMyListCtrl - Limit subitem charactercount Pin
JensB23-Mar-03 23:41
JensB23-Mar-03 23:41 
GeneralRe: CMyListCtrl - Limit subitem charactercount Pin
Roger Allen24-Mar-03 1:25
Roger Allen24-Mar-03 1:25 
GeneralRe: CMyListCtrl - Limit subitem charactercount Pin
JensB24-Mar-03 2:28
JensB24-Mar-03 2:28 
GeneralUndo/Redo in DHTML Control Pin
Reservoir Dog23-Mar-03 23:37
Reservoir Dog23-Mar-03 23:37 
GeneralNeed YOUR help!!! Pin
Sharkky23-Mar-03 23:28
Sharkky23-Mar-03 23:28 
GeneralRe: Need YOUR help!!! Pin
DodgyG23-Mar-03 23:30
DodgyG23-Mar-03 23:30 

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.