search for: lpreserv

Displaying 5 results from an estimated 5 matches for "lpreserv".

Did you mean: preserv
2007 Mar 19
2
Wine crash
...80000, reason=0x1, reserved=0x0) [dll_entry.c:42] in winex11 (0x60bd077c) fixme:dbghelp:elf_load_debug_info_from_map Alpha-support for Dwarf2 information for ntdll<elf> 19 0x7efb8595 call_dll_entry_point+0x15 in ntdll (0x7efb8595) 20 0x7efb99af MODULE_InitDLL+0x8f(wm=0x153550, reason=0x1, lpReserved=0x0) [/usr/src/wine-0.9.19/dlls/ntdll/loader.c:831] in ntdll (0x7efb99af) 21 0x7efb9c03 process_attach+0xa3(wm=0x153550, lpReserved=0x0) [/usr/src/wine-0.9.19/dlls/ntdll/loader.c:901] in ntdll (0x7efb9c03) 22 0x7efbbd2b LdrLoadDll+0x8b(path_name=0x153470, flags=0x0, libname=0x34f5b0, hModule=...
2010 Aug 26
4
UT3 hangs at start
Hi!When start game through steam or shortcut on desktop,game halt when push "launch" button, after 2-5 seconds and unreal logo becomes gray.In terminal i have "wine: Unhandled stack overflow at address 0x34c7a12 (thread 0044), starting debugger..." and no more.Close game with compulsory exit.Before that game start perfectly on wine 1.2 or wine 1.3,the problem has appeared
2003 Oct 27
3
(PR#4806)
...2:10 test(x,y) The C++ code is below #include <windows.h> #include <R.h> #include <Rinternals.h> HWND hWndMain; HINSTANCE hInst; HGLOBAL hXloperArray; //32 bit Entry point #define CLASS_NAME_BUFFER 50 BOOL WINAPI DllMain(HINSTANCE hDLL, DWORD dwReason, LPVOID lpReserved) { extern HWND hWndMain; extern HINSTANCE hInst; hInst = hDLL; return TRUE; } extern "C" int FAR PASCAL WEP (int nArgument) { return 1; } extern "C" __declspec(dllexport) SEXP __stdcall out(SEXP x, SEXP y) {...
2002 Jun 27
1
Building from a source-code library under windows
...************************************* LIBRARY ZOTCIlag EXPORTS DllMain nlme_two_comp_zero_CI_lag #======= #if defined(DLL_LOAD) #include <windows.h> #include <Math.h> /* Standard DLL entry/exit procedure */ BOOL __stdcall DllMain(HINSTANCE hDllInstance, DWORD dwReason, LPVOID lpReserved) { switch (dwReason) { case DLL_PROCESS_ATTACH: /* initialization code here */ break; case DLL_PROCESS_DETACH: /* clean-up code here */ break; } return(TRUE); } #endif void nlme_two_comp_zero...
2004 Jan 01
1
[PATCH] Add winbind-backed NTLMSSP support to Cyrus-SASL
...;saslplug.h> +#include <saslutil.h> + +#include "plugin_common.h" + +#ifdef macintosh +#include <sasl_gssspnego_plugin_decl.h> +#endif + +#ifdef WIN32 +BOOL APIENTRY DllMain( HANDLE hModule, + DWORD ul_reason_for_call, + LPVOID lpReserved + ) +{ + switch (ul_reason_for_call) + { + case DLL_PROCESS_ATTACH: + case DLL_THREAD_ATTACH: + case DLL_THREAD_DETACH: + case DLL_PROCESS_DETACH: + break; + } + return TRUE; +} +#endif + +SASL_CLIENT_PLUG_INIT( gssspnego ) +SASL_SERVER_PLUG_INIT( gssspnego ) + --- /dev/null 2...