comparison src/syswindows.h @ 531:0493e9f3c27f

[xemacs-hg @ 2001-05-12 11:16:12 by ben] event-msw.c: eliminate cygwin warnings. dired.c, syswindows.h, win32.c: find the Net* functions the hard way to avoid errors on win 9x. find-paths.el: fix error with null EXCLUDE-REGEXP. font-lock.el: fix problem reported by hrvoje with buffers starting with a space. lib-complete.el: add a variable to control where `find-library' looks, analogous to `find-function-source-path'. etags.c: new version from Francesco. Makefile.in.in: i'm getting real tired of incomplete commits. is this getting worse or something?
author ben
date Sat, 12 May 2001 11:16:25 +0000
parents abe6d1db359e
children 666d73d6ac56
comparison
equal deleted inserted replaced
530:c948643d954f 531:0493e9f3c27f
76 #endif 76 #endif
77 #include <mmsystem.h> 77 #include <mmsystem.h>
78 #include <shellapi.h> 78 #include <shellapi.h>
79 #include <ddeml.h> 79 #include <ddeml.h>
80 #endif 80 #endif
81
82 #include <lmaccess.h>
83 #include <lmapibuf.h>
84 #include <lmerr.h>
81 85
82 /* mmsystem.h defines. */ 86 /* mmsystem.h defines. */
83 #ifndef SND_ASYNC 87 #ifndef SND_ASYNC
84 #define SND_ASYNC 1 88 #define SND_ASYNC 1
85 #endif 89 #endif
287 extern DWORD (WINAPI *xSHGetFileInfoA) (LPCSTR, DWORD, SHFILEINFOA FAR *, UINT, 291 extern DWORD (WINAPI *xSHGetFileInfoA) (LPCSTR, DWORD, SHFILEINFOA FAR *, UINT,
288 UINT); 292 UINT);
289 extern DWORD (WINAPI *xSHGetFileInfoW) (LPCWSTR, DWORD, SHFILEINFOW FAR *, 293 extern DWORD (WINAPI *xSHGetFileInfoW) (LPCWSTR, DWORD, SHFILEINFOW FAR *,
290 UINT, UINT); 294 UINT, UINT);
291 295
296 extern NET_API_STATUS (NET_API_FUNCTION *xNetUserEnum)
297 (
298 IN LPCWSTR servername OPTIONAL,
299 IN DWORD level,
300 IN DWORD filter,
301 OUT LPBYTE *bufptr,
302 IN DWORD prefmaxlen,
303 OUT LPDWORD entriesread,
304 OUT LPDWORD totalentries,
305 IN OUT LPDWORD resume_handle OPTIONAL
306 );
307
308 extern NET_API_STATUS (NET_API_FUNCTION *xNetApiBufferFree)
309 (
310 IN LPVOID Buffer
311 );
312
292 #endif /* INCLUDED_syswindows_h_ */ 313 #endif /* INCLUDED_syswindows_h_ */