Fixed the case of "Winelib".
This commit is contained in:
parent
09e8daf542
commit
e550ebe429
@ -437,7 +437,7 @@ NAMING CONVENTIONS FOR NON-API FUNCTIONS AND TYPES
|
|||||||
==================================================
|
==================================================
|
||||||
|
|
||||||
Functions and data which are internal to your code (or at least shouldn't be
|
Functions and data which are internal to your code (or at least shouldn't be
|
||||||
visible to any WineLib or Windows program) should be preceded by
|
visible to any Winelib or Windows program) should be preceded by
|
||||||
an identifier to the module:
|
an identifier to the module:
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#ifndef __WINE_DPLAY_H
|
#ifndef __WINE_DPLAY_H
|
||||||
#define __WINE_DPLAY_H
|
#define __WINE_DPLAY_H
|
||||||
|
|
||||||
/* FIXME: GCC doesn't yet support annon structures so some of the structures defined here don't match the sdk exactly.
|
/* FIXME: GCC doesn't yet support annon structures so some of the structures
|
||||||
* I've tried to come up with suitably terse names, but this file won't cut it for inclusion into a WineLib app.
|
* defined here don't match the sdk exactly. I've tried to come up with
|
||||||
|
* suitably terse names, but this file won't cut it for inclusion into a
|
||||||
|
* Winelib app.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "wine/obj_base.h"
|
#include "wine/obj_base.h"
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#ifndef __WINE_DPLOBBY_H
|
#ifndef __WINE_DPLOBBY_H
|
||||||
#define __WINE_DPLOBBY_H
|
#define __WINE_DPLOBBY_H
|
||||||
|
|
||||||
/* FIXME: GCC doesn't yet support annon structures so some of the structures defined here don't match the sdk exactly.
|
/* FIXME: GCC doesn't yet support annon structures so some of the structures
|
||||||
* I've tried to come up with suitably terse names, but this file won't cut it for inclusion into a WineLib app.
|
* defined here don't match the sdk exactly. I've tried to come up with
|
||||||
|
* suitably terse names, but this file won't cut it for inclusion into a
|
||||||
|
* Winelib app.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "dplay.h"
|
#include "dplay.h"
|
||||||
|
@ -178,7 +178,7 @@ HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW);
|
|||||||
BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage);
|
BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Property sheet support (UNICODE-WineLib)
|
* Property sheet support (UNICODE-Winelib)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
DECL_WINELIB_TYPE_AW(PROPSHEETPAGE)
|
DECL_WINELIB_TYPE_AW(PROPSHEETPAGE)
|
||||||
|
@ -17,12 +17,12 @@
|
|||||||
* define the ICOM_USE_COM_INTERFACE_ATTRIBUTE macro below. This may also
|
* define the ICOM_USE_COM_INTERFACE_ATTRIBUTE macro below. This may also
|
||||||
* require the addition of the -vtable-thunks option for g++.
|
* require the addition of the -vtable-thunks option for g++.
|
||||||
*
|
*
|
||||||
* If you aren't interested in WineLib C++ compatability at all, leave both
|
* If you aren't interested in Winelib C++ compatibility at all, leave both
|
||||||
* options off.
|
* options off.
|
||||||
*
|
*
|
||||||
* The preferable method for using ICOM_USE_COM_INTERFACE_ATTRIBUTE macro
|
* The preferable method for using ICOM_USE_COM_INTERFACE_ATTRIBUTE macro
|
||||||
* would be to define it only for your WineLib application. This allows you
|
* would be to define it only for your Winelib application. This allows you
|
||||||
* to have both binary and WineLib compatibility for C and C++ at the same
|
* to have both binary and Winelib compatibility for C and C++ at the same
|
||||||
* time :)
|
* time :)
|
||||||
*/
|
*/
|
||||||
/* #define ICOM_MSVTABLE_COMPAT 1 */
|
/* #define ICOM_MSVTABLE_COMPAT 1 */
|
||||||
|
@ -185,7 +185,7 @@ extern "C" {
|
|||||||
/* internal flags for GetDateFormat system */
|
/* internal flags for GetDateFormat system */
|
||||||
#define DATE_DATEVARSONLY 0x00000100 /* only date stuff: yMdg */
|
#define DATE_DATEVARSONLY 0x00000100 /* only date stuff: yMdg */
|
||||||
#define TIME_TIMEVARSONLY 0x00000200 /* only time stuff: hHmst */
|
#define TIME_TIMEVARSONLY 0x00000200 /* only time stuff: hHmst */
|
||||||
/* use this in a WineLib program if you really want all types */
|
/* use this in a Winelib program if you really want all types */
|
||||||
#define LOCALE_TIMEDATEBOTH 0x00000300 /* full set */
|
#define LOCALE_TIMEDATEBOTH 0x00000300 /* full set */
|
||||||
|
|
||||||
/* Tests that we currently implement */
|
/* Tests that we currently implement */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user