How do you translate this to VB?
[DllImport("shell32.Dll")]
public static extern System.Int32 Shell_NotifyIcon(NotifyCommand cmd, ref NotifyIconData data);
Here is what I have but I don't know what the VB version of extern is?
<DllImport("shell32.Dll")> _
Public Shared External Function Shell_NotifyIcon(ByVal cmd As NotifyCommand, ByRef data As NotifyIconData) As Int32
