source: trunk/src/shlwapi/ordinal.h@ 8045

Last change on this file since 8045 was 7820, checked in by sandervl, 24 years ago

Wine resync

File size: 1.1 KB
Line 
1/*
2 * Internal structures (read "undocumented") used by the
3 * ordinal entry points.
4 *
5 * Determined by experimentation.
6 */
7
8typedef struct {
9 INT size; /* [in] (always 0x18) */
10 LPCSTR ap1; /* [out] start of scheme */
11 INT sizep1; /* [out] size of scheme (until colon) */
12 LPCSTR ap2; /* [out] pointer following first colon */
13 INT sizep2; /* [out] size of remainder */
14 INT fcncde; /* [out] function match of p1 (0 if unknown) */
15} UNKNOWN_SHLWAPI_1;
16
17DWORD WINAPI SHLWAPI_1(LPCSTR x, UNKNOWN_SHLWAPI_1 *y);
18
19typedef struct {
20 INT size; /* [in] (always 0x18) */
21 LPCWSTR ap1; /* [out] start of scheme */
22 INT sizep1; /* [out] size of scheme (until colon) */
23 LPCWSTR ap2; /* [out] pointer following first colon */
24 INT sizep2; /* [out] size of remainder */
25 INT fcncde; /* [out] function match of p1 (0 if unknown) */
26} UNKNOWN_SHLWAPI_2;
27
28DWORD WINAPI SHLWAPI_2(LPCWSTR x, UNKNOWN_SHLWAPI_2 *y);
29
Note: See TracBrowser for help on using the repository browser.