PInvoke .NET ~ C++
摘要: http://www.codeproject.com/KB/dotnet/PInvoke.aspx
PInvoke is the mechanism by which .NET languages can call unmanaged functions in DLLs. This is especially useful for calling Windows API functions tha...
阅读全文
posted @
2010-02-26 14:08 jerry data 阅读(74) |
评论 (0) 编辑
how to call the member function?( C++ ) . or ->
摘要: // Declare a new object of type Point.
Point ptOrigin;
// Member function calls use the . member-selection operator.
ptOrigin.SetX( 0 );
ptOrigin.SetY( 0 );
// Declare a pointer to an object of...
阅读全文
posted @
2010-02-05 14:30 jerry data 阅读(8) |
评论 (0) 编辑