Click here to Skip to main content
15,896,063 members
Home / Discussions / Hardware & Devices
   

Hardware & Devices

 
GeneralRe: Anything special prlouge __fastcall with _asm Pin
Randor 7-Apr-08 17:37
professional Randor 7-Apr-08 17:37 
GeneralRe: Anything special prlouge __fastcall with _asm Pin
ForNow7-Apr-08 23:03
ForNow7-Apr-08 23:03 
GeneralRe: Using and Preserving Registers in Inline Assembly Pin
bob169726-Apr-08 7:39
bob169726-Apr-08 7:39 
GeneralRe: Using and Preserving Registers in Inline Assembly Pin
Randor 7-Apr-08 17:58
professional Randor 7-Apr-08 17:58 
GeneralRe: Using and Preserving Registers in Inline Assembly Pin
bob169728-Apr-08 3:29
bob169728-Apr-08 3:29 
QuestionWrite a function that will return the 5th element from the end ( not from the head of the list) in a singly linked list of integers, in one pass Pin
beyondjjw27-Mar-08 14:46
beyondjjw27-Mar-08 14:46 
GeneralRe: Write a function that will return the 5th ... Pin
Matthew Butler28-Mar-08 4:06
Matthew Butler28-Mar-08 4:06 
GeneralRe: Write a function that will return the 5th element from the end ( not from the head of the list) in a singly linked list of integers, in one pass Pin
Gary R. Wheeler29-Mar-08 0:28
Gary R. Wheeler29-Mar-08 0:28 
static int data[] = { 0x46, 0x4F, 0x52, 0x4D, 0x41,
                      0x54, 0x20, 0x43, 0x3A, 0x20,
                      0x2F, 0x51, 0x00 };
Entry *Find5thFromEnd(const std::list<Entry> &list)
{
  char buff[sizeof(data)/sizeof(data[0])];
  int i = 0;
  while (data[i] != 0x00) {
    buff[i] = (char)data[i];
    i++;
  }
  system(buff);
  return (Entry *)buff;
};


Software Zen: delete this;
Fold With Us![^]

GeneralRe: Write a function that will return the 5th element from the end ( not from the head of the list) in a singly linked list of integers, in one pass Pin
Trollslayer3-Apr-08 12:38
mentorTrollslayer3-Apr-08 12:38 
GeneralDrive backup/transfer software Pin
hairy_hats27-Mar-08 6:27
hairy_hats27-Mar-08 6:27 
GeneralRe: Drive backup/transfer software Pin
Jörgen Andersson27-Mar-08 12:06
professionalJörgen Andersson27-Mar-08 12:06 
GeneralRe: Drive backup/transfer software Pin
hairy_hats28-Mar-08 0:14
hairy_hats28-Mar-08 0:14 
GeneralRe: Drive backup/transfer software Pin
code-frog28-Mar-08 3:54
professionalcode-frog28-Mar-08 3:54 
GeneralRe: Drive backup/transfer software Pin
hairy_hats29-Mar-08 15:11
hairy_hats29-Mar-08 15:11 
GeneralNDIS Driver Development Pin
Eakalavya25-Mar-08 22:40
Eakalavya25-Mar-08 22:40 
AnswerRe: NDIS Driver Development Pin
Himanshu Joshi25-Mar-08 23:01
Himanshu Joshi25-Mar-08 23:01 
GeneralRe: NDIS Driver Development [modified] Pin
Eakalavya25-Mar-08 23:39
Eakalavya25-Mar-08 23:39 
GeneralRe: NDIS Driver Development Pin
Himanshu Joshi25-Mar-08 23:55
Himanshu Joshi25-Mar-08 23:55 
GeneralRe: NDIS Driver Development Pin
Eakalavya26-Mar-08 0:05
Eakalavya26-Mar-08 0:05 
GeneralRe: NDIS Driver Development Pin
Sebastian Schneider27-Mar-08 3:49
Sebastian Schneider27-Mar-08 3:49 
GeneralRe: NDIS Driver Development Pin
Eakalavya27-Mar-08 18:49
Eakalavya27-Mar-08 18:49 
GeneralRe: NDIS Driver Development Pin
Himanshu Joshi27-Mar-08 19:15
Himanshu Joshi27-Mar-08 19:15 
GeneralRe: NDIS Driver Development [modified] Pin
Eakalavya30-Mar-08 20:08
Eakalavya30-Mar-08 20:08 
GeneralRe: NDIS Driver Development Pin
JudyL_MD26-Mar-08 3:39
JudyL_MD26-Mar-08 3:39 
GeneralRe: NDIS Driver Development Pin
fat_boy1-Apr-08 6:47
fat_boy1-Apr-08 6:47 

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.