码迷,mamicode.com
首页 > Windows程序 > 详细

x64内联汇编调用API(需intel编译器,vc不支持x64内联汇编)

时间:2017-01-23 22:47:02      阅读:886      评论:0      收藏:0      [点我收藏+]

标签:type   lin   href   assets   studio   _for   tracking   ref   http   

[cpp] view plain copy
 
 技术分享技术分享
  1. #include "stdafx.h"  
  2. #include <windows.h>  
  3.   
  4. STARTUPINFOW StartInfo  = {0};  
  5. PROCESS_INFORMATION pi = {0};  
  6. TCHAR szCommandLine[MAX_PATH] = TEXT("C:\\Windows\\NOTEPAD.EXE D:\\parallel_studio_xe_2013_update4_for_windows.txt");  
  7.   
  8. int _tmain(int argc, _TCHAR* argv[])  
  9. {  
  10.     StartInfo .cb = sizeof(StartInfo);  
  11.   
  12.     __asm  
  13.     {  
  14.         sub rsp, 80  
  15.         lea rax, pi  
  16.         mov qword ptr [rsp+72], rax  
  17.         lea rax, StartInfo  
  18.         mov qword ptr [rsp+64], rax  
  19.         mov qword ptr [rsp+56], 0  
  20.         mov qword ptr [rsp+48], 0  
  21.         mov qword ptr [rsp+40], 0  
  22.         mov qword ptr [rsp+32], 0  
  23.         xor r9, r9  
  24.         xor r8, r8  
  25.         lea rax, szCommandLine  
  26.         mov rdx, rax  
  27.         xor rcx, rcx  
  28.         mov  rsi, qword ptr CreateProcessW  
  29.         call rsi  
  30.         add rsp, 80  
  31.     }  
  32.     //CreateProcess(0, szCommandLine, NULL, NULL, FALSE, 0, NULL, NULL, &StartInfo, &pi);  
  33.     return 0;  

 

http://blog.csdn.net/zwfgdlc/article/details/17467453

x64内联汇编调用API(需intel编译器,vc不支持x64内联汇编)

标签:type   lin   href   assets   studio   _for   tracking   ref   http   

原文地址:http://www.cnblogs.com/findumars/p/6345023.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!