uintptr_t _beginthread( // NATIVE CODE  
   void( __cdecl *start_address )( void * ),  
   unsigned stack_size,  
   void *arglist   
);  
uintptr_t _beginthread( // MANAGED CODE  
   void( __clrcall *start_address )( void * ),  
   unsigned stack_size,  
   void *arglist   
);  
uintptr_t _beginthreadex( // NATIVE CODE  
   void *security,  
   unsigned stack_size,  
   unsigned ( __stdcall *start_address )( void * ),  
   void *arglist,  
   unsigned initflag,  
   unsigned *thrdaddr   
);  
uintptr_t _beginthreadex( // MANAGED CODE  
   void *security,  
   unsigned stack_size,  
   unsigned ( __clrcall *start_address )( void * ),  
   void *arglist,  
   unsigned initflag,  
   unsigned *thrdaddr   
);  


native code vs managed code -> c, c++ vs java, c#

'Programming > C,C++' 카테고리의 다른 글

ansi2uni in Win32  (0) 2017.01.07
Multithreading Applications in Win32  (0) 2017.01.05
scanf 주의사항  (0) 2017.01.04
scanf_s  (0) 2017.01.04
Hello, World  (0) 2017.01.03
Posted by 루나s
,