Rev 82 | Rev 92 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 82 | Rev 88 | ||
---|---|---|---|
Line 9... | Line 9... | ||
9 | { |
9 | { |
10 | if (module_path == NULL) |
10 | if (module_path == NULL) |
11 | DLLHandle = LoadLibrary("libxxusb.dll"); |
11 | DLLHandle = LoadLibrary("libxxusb.dll"); |
12 | else |
12 | else |
13 | DLLHandle = LoadLibrary(module_path); |
13 | DLLHandle = LoadLibrary(module_path); |
14 | if (!DLLHandle) |
14 | if (!DLLHandle) { |
- | 15 | printf ("\n\nFailed to Open libxxusb.dll \n"); |
|
- | 16 | return; |
|
15 | 17 | } |
|
16 | if (!(xxusb_register_read_Ptr = (void*) GetProcAddress(DLLHandle,"xxusb_register_read"))) exit(1); |
18 | if (!(xxusb_register_read_Ptr = (void*) GetProcAddress(DLLHandle,"xxusb_register_read"))) exit(1); |
17 | if (!(xxusb_stack_read_Ptr = (void*) GetProcAddress(DLLHandle,"xxusb_stack_read"))) exit(1); |
19 | if (!(xxusb_stack_read_Ptr = (void*) GetProcAddress(DLLHandle,"xxusb_stack_read"))) exit(1); |
18 | if (!(xxusb_stack_write_Ptr = (void*) GetProcAddress(DLLHandle,"xxusb_stack_write"))) exit(1); |
20 | if (!(xxusb_stack_write_Ptr = (void*) GetProcAddress(DLLHandle,"xxusb_stack_write"))) exit(1); |
19 | if (!(xxusb_stack_execute_Ptr = (void*) GetProcAddress(DLLHandle,"xxusb_stack_execute"))) exit(1); |
21 | if (!(xxusb_stack_execute_Ptr = (void*) GetProcAddress(DLLHandle,"xxusb_stack_execute"))) exit(1); |
20 | if (!(xxusb_longstack_execute_Ptr = (void*) GetProcAddress(DLLHandle,"xxusb_longstack_execute"))) exit(1); |
22 | if (!(xxusb_longstack_execute_Ptr = (void*) GetProcAddress(DLLHandle,"xxusb_longstack_execute"))) exit(1); |