Fixed the case of "Winelib".

This commit is contained in:
Francois Gouget 2000-12-02 20:17:13 +00:00 committed by Alexandre Julliard
parent 09e8daf542
commit e550ebe429
6 changed files with 14 additions and 10 deletions

View File

@ -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
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:
Examples:

View File

@ -1,8 +1,10 @@
#ifndef __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.
* I've tried to come up with suitably terse names, but this file won't cut it for inclusion into a WineLib app.
/* FIXME: GCC doesn't yet support annon structures so some of the structures
* 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"

View File

@ -1,8 +1,10 @@
#ifndef __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.
* I've tried to come up with suitably terse names, but this file won't cut it for inclusion into a WineLib app.
/* FIXME: GCC doesn't yet support annon structures so some of the structures
* 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"

View File

@ -178,7 +178,7 @@ HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW);
BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage);
/*
* Property sheet support (UNICODE-WineLib)
* Property sheet support (UNICODE-Winelib)
*/
DECL_WINELIB_TYPE_AW(PROPSHEETPAGE)

View File

@ -17,12 +17,12 @@
* define the ICOM_USE_COM_INTERFACE_ATTRIBUTE macro below. This may also
* 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.
*
* The preferable method for using ICOM_USE_COM_INTERFACE_ATTRIBUTE macro
* 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
* 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
* time :)
*/
/* #define ICOM_MSVTABLE_COMPAT 1 */

View File

@ -185,7 +185,7 @@ extern "C" {
/* internal flags for GetDateFormat system */
#define DATE_DATEVARSONLY 0x00000100 /* only date stuff: yMdg */
#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 */
/* Tests that we currently implement */