Desktop Functions: Smart Device Functions:
|
Search Results for "dll_" in [All]oleacc1: hello #define DLL_FUNC __declspec(dllexport) //DLL_FUNC int __cdecl Hello(int , int );
DLL_FUNC int Hello(int a, int b) kernel322: dll_
Dim dll_hInst As IntPtr
dll_hInst = LoadLibraryEx(Filename.Text, 0, 1)
If Not dll_hInst.Equals(IntPtr.Zero) Then
EnumResourceNames(dll_hInst, "AVI", AddressOf EnumResNameProc, IntPtr.Zero)
FreeLibrary(dll_hInst) Structures4: DEBUG_EVENT
public LOAD_DLL_DEBUG_INFO LoadDll
get { return GetDebugInfo<LOAD_DLL_DEBUG_INFO>(); }
public UNLOAD_DLL_DEBUG_INFO UnloadDll
get { return GetDebugInfo<UNLOAD_DLL_DEBUG_INFO>(); } EXCEPTION_DEBUG_INFO CREATE_THREAD_DEBUG_INFO CREATE_PROCESS_DEBUG_INFO EXIT_THREAD_DEBUG_INFO EXIT_PROCESS_DEBUG_INFO LOAD_DLL_DEBUG_INFO UNLOAD_DLL_DEBUG_INFO OUTPUT_DEBUG_STRING_INFO RIP_INFO
IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE = 0x0040,
IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY = 0x0080,
IMAGE_DLL_CHARACTERISTICS_NX_COMPAT = 0x0100,
IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE = 0x0040,
IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY = 0x0080,
IMAGE_DLL_CHARACTERISTICS_NX_COMPAT = 0x0100, user329: LoadImage
DONT_RESOLVE_DLL_REFERENCES = 0x00000001, Constants10: WINERROR
public const int ERROR_DLL_INIT_FAILED = 1114;
public const int ERROR_DLL_NOT_FOUND = 1157;
public const int ERROR_SXS_DUPLICATE_DLL_NAME = 14021;
public const int NTE_PROVIDER_DLL_FAIL = (int)(0x8009001D - 0x100000000);
public const int NTE_PROV_DLL_NOT_FOUND = (int)(0x8009001E - 0x100000000);
public const int OSS_OID_DLL_NOT_LINKED = (int)(0x8009301A - 0x100000000);
public const int OSS_REAL_DLL_NOT_LINKED = (int)(0x8009301F - 0x100000000);
public const int OSS_COPIER_DLL_NOT_LINKED = (int)(0x80093022 - 0x100000000);
public const int OSS_CONSTRAINT_DLL_NOT_LINKED = (int)(0x80093023 - 0x100000000);
public const int OSS_COMPARATOR_DLL_NOT_LINKED = (int)(0x80093024 - 0x100000000);
public const int OSS_MEM_MGR_DLL_NOT_LINKED = (int)(0x80093026 - 0x100000000);
public const int OSS_PDV_DLL_NOT_LINKED = (int)(0x80093027 - 0x100000000);
public const int OSS_API_DLL_NOT_LINKED = (int)(0x80093029 - 0x100000000);
public const int OSS_BERDER_DLL_NOT_LINKED = (int)(0x8009302A - 0x100000000);
public const int OSS_PER_DLL_NOT_LINKED = (int)(0x8009302B - 0x100000000); Enums11: HRESULT
public const int NTE_PROVIDER_DLL_FAIL = unchecked((int)0x8009001D);
public const int NTE_PROV_DLL_NOT_FOUND = unchecked((int)0x8009001E);
public const int OSS_OID_DLL_NOT_LINKED = unchecked((int)0x8009301A);
public const int OSS_REAL_DLL_NOT_LINKED = unchecked((int)0x8009301F);
public const int OSS_COPIER_DLL_NOT_LINKED = unchecked((int)0x80093022);
public const int OSS_CONSTRAINT_DLL_NOT_LINKED = unchecked((int)0x80093023);
public const int OSS_COMPARATOR_DLL_NOT_LINKED = unchecked((int)0x80093024);
public const int OSS_MEM_MGR_DLL_NOT_LINKED = unchecked((int)0x80093026);
public const int OSS_PDV_DLL_NOT_LINKED = unchecked((int)0x80093027);
public const int OSS_API_DLL_NOT_LINKED = unchecked((int)0x80093029);
public const int OSS_BERDER_DLL_NOT_LINKED = unchecked((int)0x8009302A);
public const int OSS_PER_DLL_NOT_LINKED = unchecked((int)0x8009302B);
Public Const NTE_PROVIDER_DLL_FAIL As Integer = CInt(&H8009001dUI)
Public Const NTE_PROV_DLL_NOT_FOUND As Integer = CInt(&H8009001eUI)
Public Const OSS_OID_DLL_NOT_LINKED As Integer = CInt(&H8009301aUI)
Public Const OSS_REAL_DLL_NOT_LINKED As Integer = CInt(&H8009301fUI)
Public Const OSS_COPIER_DLL_NOT_LINKED As Integer = CInt(&H80093022UI)
Public Const OSS_CONSTRAINT_DLL_NOT_LINKED As Integer = CInt(&H80093023UI)
Public Const OSS_COMPARATOR_DLL_NOT_LINKED As Integer = CInt(&H80093024UI)
Public Const OSS_MEM_MGR_DLL_NOT_LINKED As Integer = CInt(&H80093026UI)
Public Const OSS_PDV_DLL_NOT_LINKED As Integer = CInt(&H80093027UI)
Public Const OSS_API_DLL_NOT_LINKED As Integer = CInt(&H80093029UI)
Public Const OSS_BERDER_DLL_NOT_LINKED As Integer = CInt(&H8009302aUI)
Public Const OSS_PER_DLL_NOT_LINKED As Integer = CInt(&H8009302bUI) 12: LoadLibraryFlags
DONT_RESOLVE_DLL_REFERENCES = 0x00000001,
LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR = 0x00000100,
DONT_RESOLVE_DLL_REFERENCES = &H1 dbghelp |