Displaying 9 results from an estimated 9 matches for "farproc".
2014 Feb 20
2
Monitor Wireless Networks OT
...ferent one.
> Thank you,
> Joe
> _______________________________________________
> CentOS mailing list
> CentOS at centos.org
> http://lists.centos.org/mailman/listinfo/centos
>
There is a really good Android app, WIFI analyzer
https://play.google.com/store/apps/details?id=com.farproc.wifi.analyzer if
you have access to a phone or better yet a tablet. Very nice and allows
you to look at all kinds of things, I also know of another one called Wifi
Radar for linux but not nears as good.
2004 Sep 22
1
Problem compiling Corel-WINE
...cessing token
thunk.c:402:58: pasting "." and "DestroyIcon32" does not give a valid
preprocessing token
thunk.c:403:60: pasting "." and "UserSignalProc" does not give a valid
preprocessing token
This is the code:
#define GETADDR( var, name ) \
*(FARPROC *)&Callout.##var = GetProcAddress( hModule, name )
GETADDR( PeekMessageA, "PeekMessageA" );
GETADDR( PeekMessageW, "PeekMessageW" );
GETADDR( GetMessageA, "GetMessageA" );
GETADDR( GetMessageW, "GetMessageW" );...
2001 Jun 22
2
DDE Error
On Thu, 21 Jun 2001 20:53:30 +0200, Flo <sherpac@gmx.de> wrote:
>
>DdeInitialize(InstId, (PFNCALLBACK)(FARPROC)
>CallBackProc, APPCMD_CLIENTONLY, 0) == DMLERR_NO_ERROR, file
>..\dde\MyDDE.cpp,
>line 238
>
>happens after the following cmd line (wine) message:
>
>fixme:ddeml:DdeConnect (0x1,49180,49181,(nil)): stub
>
>
>The application may try to run MSIE at this point. Is ther...
2006 Mar 23
0
Win32API patch?
...39;'
RegFormat = Win32API.new(''user32'', ''RegisterClipboardFormat'', ''P'', ''I'')
RegFormat.call(1) # Boom!
I''ve traced the error to line 194 in Win32API.c:
ret = ApiFunction(param);
Where ApiFunction is defined as:
FARPROC ApiFunction = (FARPROC)NUM2ULONG(obj_proc);
Any idea what the patch should be? I''d rather get a TypeError than see
a segfault.
Dan
2007 Sep 28
1
Help with win32/api, windows-api
Hi all,
I must have been testing windows-pr with an old version of windows-api,
because now when I run ''rake test'' for windows-pr I get this:
C:\Documents and Settings\djberge\workspace\windows-pr>rake test
C:0:Warning: require_gem is obsolete. Use gem instead.
(in C:/Documents and Settings/djberge/workspace/windows-pr)
C:/ruby/lib/ruby/site_ruby/1.8/windows/api.rb:288:
2015 Nov 04
2
Two WiFi routers
On 11/04/2015 09:10 AM, Bowie Bailey wrote:
> If all of the routers are providing access to the same network, you
> can set up the same SSID, wifi password, and security type for all the
> routers and the clients should seamlessly switch between them as they
> move around.
As a point of clarification: The setup that you're describing isn't
multiple WiFi routers, it's
2008 Jan 26
0
JRuby version of win32-api - initial try
...first, last = ''A'', ''W''
end
# Try the original function, then the ANSI version, then Wide
version.
# Try the Wide version first if $KCODE is set to UTF8.
#--
# Unlike the C version we won''t be using the FARPROC. This is
mostly
# for validation because the JNA function can''t be rescued
directly.
if @func == 0
@function_name += first
@func = GetProcAddress.invokeInt([@library,
@function_name].to_java)
if @func == 0
@funct...
2008 Jun 10
7
Unraveling a FAR*
Hi all,
Just looking over fole_s_connect() in win32ole.c and I noticed this bit:
hr = CLSIDFromProgID(pBuf, &clsid);
...
hr = GetActiveObject(&clsid, 0, &pUnknown);
...
hr = pUnknown->lpVtbl->QueryInterface(
pUnknown,
&IID_IDispatch,
(void **)&pDispatch
);
Using win32-api, that would be something like:
IID_IUnknown =
2009 Oct 09
0
Wine release 1.1.31
...ders.
advapi32: Retrieve the current user SID from the server in lookup_user_account_name.
Fix empty function prototypes.
advapi32: Use strict prototypes in the VTableProvStruc definition.
winhlp32: Use explicit prototypes for the dll callbacks.
winhlp32: Don't use FARPROC for functions that take variable number of arguments.
programs: Build all programs with -DWINE_STRICT_PROTOTYPES.
configure: Build with -Wstrict-prototypes if supported.
libport: Remove unnecessary function prototypes.
kernel32: Move the 16-bit string functions to kernel16.c...