Click here to Skip to main content
16,007,610 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: Crashing of .NET IDE when placing custom designer control in toolbox Pin
Anonymous5-Feb-04 17:05
Anonymous5-Feb-04 17:05 
GeneralGetting an HINSTANCE in a managed C++ dll Pin
dabs2-Feb-04 2:09
dabs2-Feb-04 2:09 
GeneralRe: Getting an HINSTANCE in a managed C++ dll Pin
Anonymous13-Feb-04 12:28
Anonymous13-Feb-04 12:28 
QuestionCasting of a Object * to a Enum value question?? Pin
araelgig2-Feb-04 1:27
araelgig2-Feb-04 1:27 
AnswerRe: Casting of a Object * to a Enum value question?? Pin
araelgig3-Feb-04 1:08
araelgig3-Feb-04 1:08 
GeneralLNK2005 Error. Pin
adarsh_sebiz1-Feb-04 19:05
adarsh_sebiz1-Feb-04 19:05 
GeneralRe: LNK2005 Error. Pin
Mike Dimmick2-Feb-04 2:36
Mike Dimmick2-Feb-04 2:36 
GeneralRe: LNK2005 Error. Pin
adarsh_sebiz10-Feb-04 1:46
adarsh_sebiz10-Feb-04 1:46 
Hi Mike..

Thankyou very much for replying me...

I find the line 647 in WinNT.h file and looked at the respective keyword
The code at line 647 is as follows:

__inline ULONGLONG
NTAPI
Int64ShllMod32 (
ULONGLONG Value,
DWORD ShiftCount
)
{
__asm {
mov ecx, ShiftCount
mov eax, dword ptr [Value]
mov edx, dword ptr [Value+4]
shld edx, eax, cl
shl eax, cl
}
}

__inline LONGLONG
NTAPI
Int64ShraMod32 (
LONGLONG Value,
DWORD ShiftCount
)
{
__asm {
mov ecx, ShiftCount
mov eax, dword ptr [Value]
mov edx, dword ptr [Value+4]
shrd eax, edx, cl
sar edx, cl
}
}

__inline ULONGLONG
NTAPI
Int64ShrlMod32 (
ULONGLONG Value,
DWORD ShiftCount
)
{
__asm {
mov ecx, ShiftCount
mov eax, dword ptr [Value]
mov edx, dword ptr [Value+4]
shrd eax, edx, cl
shr edx, cl
}
}



The solution suggested by you seems to be very beneficial to me..
but, i am not getting the solution suggested by you regarding __inline keyword in WinNT.h file,

So, Please suggest me solution in detail i.e. what i have to do to remove this error..


Thanks in advance.

ADARSH
S.E.Biz. Infotech Pvt. Ltd.,
Chandigarh.
Generalargument and matrix Pin
Dheeraj Mehta1-Feb-04 18:10
Dheeraj Mehta1-Feb-04 18:10 
Questionset /clr option in MFC application? Pin
scoct31-Jan-04 21:10
scoct31-Jan-04 21:10 
Generalreading inputs Pin
Liyana30-Jan-04 12:13
Liyana30-Jan-04 12:13 
GeneralRe: reading inputs Pin
Roger Wright3-Feb-04 4:25
professionalRoger Wright3-Feb-04 4:25 
GeneralRe: reading inputs Pin
Nik Vogiatzis18-Feb-04 17:22
Nik Vogiatzis18-Feb-04 17:22 
GeneralC++ and Database Pin
vin29-Jan-04 19:22
vin29-Jan-04 19:22 
GeneralRe: C++ and Database Pin
Selvam R2-Feb-04 6:31
professionalSelvam R2-Feb-04 6:31 
GeneralVirtual destructor causes LNK2001 !!! Pin
balkanese27-Jan-04 22:18
balkanese27-Jan-04 22:18 
Generalswfsource: wanted code regarding creating buttons, please help! Pin
adarsh_sebiz26-Jan-04 23:29
adarsh_sebiz26-Jan-04 23:29 
Questionlicensed control? Pin
Roger Alsing26-Jan-04 22:56
Roger Alsing26-Jan-04 22:56 
QuestionHow can I get the name of current theme from OS? Pin
rafamarmar25-Jan-04 5:36
rafamarmar25-Jan-04 5:36 
Questionclass wide arrays? Pin
paulcsf24-Jan-04 12:40
paulcsf24-Jan-04 12:40 
GeneralServer 2003 DDK, ZMODEM Pin
Shahin7723-Jan-04 6:42
Shahin7723-Jan-04 6:42 
GeneralRegistering Key events when minimized Pin
Tank_Aviator22-Jan-04 18:22
Tank_Aviator22-Jan-04 18:22 
GeneralUsing old STRUCTs in managed classes Pin
Nik Vogiatzis21-Jan-04 19:47
Nik Vogiatzis21-Jan-04 19:47 
GeneralDeclaring indexed property in C++ Class Library Pin
fin21-Jan-04 12:51
fin21-Jan-04 12:51 
GeneralMystery solved Pin
fin21-Jan-04 17:23
fin21-Jan-04 17:23 

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.