コード例 #1
0
ファイル: NativeUser32Api.cs プロジェクト: viticm/pap2
 public static extern bool UpdateLayeredWindow(IntPtr hwnd, IntPtr hdcDst, ref POINTAPI pptDst, ref SIZE psize, IntPtr hdcSrc, ref POINTAPI pprSrc, int crKey, ref BLENDFUNCTION pblend, int dwFlags);
コード例 #2
0
ファイル: NativeGdi32Api.cs プロジェクト: westybsa/MP.LSharp
 public static extern bool AlphaBlend(
   IntPtr hdcDest,                 // handle to destination DC
   int nXOriginDest,            // x-coord of upper-left corner
   int nYOriginDest,            // y-coord of upper-left corner
   int nWidthDest,              // destination width
   int nHeightDest,             // destination height
   IntPtr hdcSrc,                  // handle to source DC
   int nXOriginSrc,             // x-coord of upper-left corner
   int nYOriginSrc,             // y-coord of upper-left corner
   int nWidthSrc,               // source width
   int nHeightSrc,              // source height
   BLENDFUNCTION blendFunction  // alpha-blending function
 );
コード例 #3
0
ファイル: NativeUser32Api.cs プロジェクト: uvbs/FullSource
 public static extern bool UpdateLayeredWindow(IntPtr hwnd, IntPtr hdcDst, ref POINTAPI pptDst, ref SIZE psize, IntPtr hdcSrc, ref POINTAPI pprSrc, int crKey, ref BLENDFUNCTION pblend, int dwFlags);