Desktop Functions: Smart Device Functions:
|
Search Results for "STARTF" in [All]advapi32
Public Startf_UseStdHandles As Int32 = &H100
startupInfo.flags = startupInfo.flags And Startf_UseStdHandles
public const Int32 Startf_UseStdHandles = 0x00000100;
startupInfo.flags &= Startf_UseStdHandles; Interfaces
Public Shared Sub CreateNewShortcut(LNKLocation As String, LNKTarget As String, Optional TargetArgs As String = Nothing, Optional StartFolder As String = Nothing, Constants3: NERR_
public const int RplBootStartFailed = 2518;
public const int NERR_RplBootStartFailed = 0x000009D6; kernel325: CreateThread
SecurityAttributes, uint StackSize, System.Threading.ThreadStart StartFunction,
(ByVal SecurityAttributes As Long, ByVal StackSize As Long, ByVal StartFunction As LongPtr, _
Private Const STARTF_TITLESHORTCUT = &H800
si.dwFlags = si.dwFlags And STARTF_TITLESHORTCUT
private enum RestartFlags
private static extern uint RegisterApplicationRestart(string pwsCommandLine, RestartFlags dwFlags);
int RegisterResult = RegisterApplicationRestart(APPLICATION_CRASHED, RestartFlags.NONE); Enums8: STARTF
public enum STARTF : uint
STARTF_USESHOWWINDOW = 0x00000001,
STARTF_USESIZE = 0x00000002,
STARTF_USEPOSITION = 0x00000004,
STARTF_USECOUNTCHARS = 0x00000008,
STARTF_USEFILLATTRIBUTE = 0x00000010,
STARTF_RUNFULLSCREEN = 0x00000020, // ignored for non-x86 platforms
STARTF_FORCEONFEEDBACK = 0x00000040,
STARTF_FORCEOFFFEEDBACK = 0x00000080,
STARTF_USESTDHANDLES = 0x00000100,
STARTF_USEHOTKEY = 0x00000200,
STARTF_TITLEISLINKNAME = 0x00000800,
STARTF_TITLEISAPPID = 0x00001000,
STARTF_PREVENTPINNING = 0x00002000,
STARTF_UNTRUSTEDSOURCE = 0x00008000,
Enum STARTF as Integer
STARTF_USESHOWWINDOW = &H1
STARTF_USESIZE = &H2
STARTF_USEPOSITION = &H4
STARTF_USECOUNTCHARS = &H8
STARTF_USEFILLATTRIBUTE = &H10
STARTF_RUNFULLSCREEN = &H20
STARTF_FORCEONFEEDBACK = &H40
STARTF_FORCEOFFFEEDBACK = &H80
STARTF_USESTDHANDLES = &H100
STARTF_USEHOTKEY = &H200 |