Changeset 5311 for trunk/include
- Timestamp:
- Mar 14, 2001, 12:13:28 AM (25 years ago)
- Location:
- trunk/include/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/dplay.h
r4384 r5311 1 // $Id: dplay.h,v 1. 6 2000-10-02 17:37:41 sandervlExp $1 // $Id: dplay.h,v 1.7 2001-03-13 23:13:26 hugh Exp $ 2 2 #ifndef __WINE_DPLAY_H 3 3 #define __WINE_DPLAY_H 4 5 /* FIXME: GCC doesn't yet support annon structures so some of the structures defined here don't match the sdk exactly.6 * I've tried to come up with suitably terse names, but this file won't cut it for inclusion into a WineLib app.7 */8 4 9 5 #include "wine/obj_base.h" … … 182 178 LPWSTR lpszShortName; 183 179 LPSTR lpszShortNameA; 184 } psn;180 } DUMMYUNIONNAME1; 185 181 186 182 union /*playerLongName */ /* Player's formal/real name */ … … 188 184 LPWSTR lpszLongName; 189 185 LPSTR lpszLongNameA; 190 } pln;186 } DUMMYUNIONNAME2; 191 187 192 188 } DPNAME, *LPDPNAME; … … 232 228 LPWSTR lpszSessionName; 233 229 LPSTR lpszSessionNameA; 234 } sess;230 } DUMMYUNIONNAME1; 235 231 236 232 union /* Optional password */ … … 238 234 LPWSTR lpszPassword; 239 235 LPSTR lpszPasswordA; 240 } pass;236 } DUMMYUNIONNAME2; 241 237 242 238 DWORD dwReserved1; … … 289 285 LPWSTR lpszMessage; /* Unicode */ 290 286 LPSTR lpszMessageA; /* ANSI */ 291 } msgstr;287 } DUMMYUNIONNAME; 292 288 } DPCHAT, *LPDPCHAT; 293 289 … … 307 303 LPWSTR lpszSSPIProvider; /* Unicode */ 308 304 LPSTR lpszSSPIProviderA; /* ANSI */ 309 } sspi;305 } DUMMYUNIONNAME1; 310 306 union 311 307 { /* CAPI provider name */ 312 308 LPWSTR lpszCAPIProvider; /* Unicode */ 313 309 LPSTR lpszCAPIProviderA; /* ANSI */ 314 } capi;310 } DUMMYUNIONNAME2; 315 311 DWORD dwCAPIProviderType; /* Crypto Service Provider type */ 316 312 DWORD dwEncryptionAlgorithm; /* Encryption Algorithm type */ … … 327 323 LPWSTR lpszUsername; /* Unicode */ 328 324 LPSTR lpszUsernameA; /* ANSI */ 329 } name;325 } DUMMYUNIONNAME1; 330 326 union 331 327 { /* Password of the account */ 332 328 LPWSTR lpszPassword; /* Unicode */ 333 329 LPSTR lpszPasswordA; /* ANSI */ 334 } pass;330 } DUMMYUNIONNAME2; 335 331 union 336 332 { /* Domain name of the account */ 337 333 LPWSTR lpszDomain; /* Unicode */ 338 334 LPSTR lpszDomainA; /* ANSI */ 339 } domain;335 } DUMMYUNIONNAME3; 340 336 } DPCREDENTIALS, *LPDPCREDENTIALS; 341 337 … … 358 354 LPVOID lpContext); /* User given */ 359 355 360 typedef const GUID *LPCGUID; 356 #ifndef __LPCGUID_DEFINED__ 357 #define __LPCGUID_DEFINED__ 358 typedef const GUID *LPCGUID; 359 #endif 361 360 362 361 typedef const DPNAME *LPCDPNAME; -
trunk/include/win/dplobby.h
r4384 r5311 1 // $Id: dplobby.h,v 1. 5 2000-10-02 17:37:42 sandervlExp $1 // $Id: dplobby.h,v 1.6 2001-03-13 23:13:27 hugh Exp $ 2 2 #ifndef __WINE_DPLOBBY_H 3 3 #define __WINE_DPLOBBY_H … … 276 276 LPSTR lpszAppNameA; 277 277 LPWSTR lpszAppName; 278 } appName;278 } DUMMYUNIONNAME; 279 279 280 280 } DPLAPPINFO, *LPDPLAPPINFO; … … 298 298 LPSTR lpszApplicationNameA; 299 299 LPWSTR lpszApplicationName; 300 } appName;300 } DUMMYUNIONNAME1; 301 301 302 302 GUID guidApplication; … … 306 306 LPSTR lpszFilenameA; 307 307 LPWSTR lpszFilename; 308 } fileName;308 } DUMMYUNIONNAME2; 309 309 310 310 union … … 312 312 LPSTR lpszCommandLineA; 313 313 LPWSTR lpszCommandLine; 314 } cmdLine;314 } DUMMYUNIONNAME3; 315 315 316 316 union … … 318 318 LPSTR lpszPathA; 319 319 LPWSTR lpszPath; 320 } path;320 } DUMMYUNIONNAME4; 321 321 322 322 union … … 324 324 LPSTR lpszCurrentDirectoryA; 325 325 LPWSTR lpszCurrentDirectory; 326 } curDir;326 } DUMMYUNIONNAME5; 327 327 328 328 LPSTR lpszDescriptionA;
Note:
See TracChangeset
for help on using the changeset viewer.