'dll import'에 해당되는 글 1건

  1. 2009.04.10 [.NET CF] 네이티브 dll 가져다 쓰기

[.NET CF] 네이티브 dll 가져다 쓰기

.Net Compact Framework 2009. 4. 10. 00:45
쉽다.
dll을 가져다 쓴다고 선언하고, dll에 들어 있는 API를 선언해 주면 된다.

그리고 막 가져다 쓰면 된다.

소스코드
  1. using System.Runtime.InteropServices;  
  2.   
  3. [DllImport( "coredll.dll", EntryPoint="CreateMutex", SetLastError=true )]  
  4. public static extern IntPtr CreateMutex(  
  5.             IntPtr lpMutexAttributes,  
  6.             bool InitialOwner,  
  7.             string MutexName );  
  8.   
  9. [DllImport( "coredll.dll", EntryPoint="ReleaseMutex", SetLastError=true )]  
  10. public static extern bool ReleaseMutex( IntPtr hMutex );  

: