Ignore:
Timestamp:
Oct 19, 1999, 8:29:47 PM (26 years ago)
Author:
cbratschi
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/options.h

    r4 r1363  
    1 /* $Id: options.h,v 1.1 1999-05-24 20:19:16 ktk Exp $ */
     1/* $Id: options.h,v 1.2 1999-10-19 18:29:47 cbratschi Exp $ */
    22
    33/*
     
    55 *
    66 * Copyright 1994 Alexandre Julliard
     7 * Copyright 1999 Christoph Bratschi
    78 */
    89
     
    1314
    1415  /* Supported languages */
    15   /* When adding a new language look at ole/ole2nls.c 
     16  /* When adding a new language look at ole/ole2nls.c
    1617   * for the LANG_Xx name to choose, and uncomment there
    1718   * the proper case line
    1819   */
    1920typedef enum
    20 {   LANG_Xx,  /* Just to ensure value 0 is not used */ 
     21{   LANG_Xx,  /* Just to ensure value 0 is not used */
    2122    LANG_En,  /* English */
    2223    LANG_Es,  /* Spanish */
     
    7071    int    debug;
    7172    int    failReadOnly;    /* Opening a read only file will fail
    72                                if write access is requested */
     73                               if write access is requested */
    7374    WINE_MODE mode;         /* Start Wine in selected mode
    74                                (standard/enhanced) */
     75                               (standard/enhanced) */
    7576    WINE_LANGUAGE language; /* Current language */
    76     int    managed;         /* Managed windows */
     77    int    managed;         /* Managed windows */
    7778    int    perfectGraphics; /* Favor correctness over speed for graphics */
    7879    int    noDGA;           /* Disable XFree86 DGA extensions */
     
    8384extern struct options Options;
    8485
    85 /* Profile functions */
     86/* Odin profile functions */
    8687
    87 extern int PROFILE_LoadWineIni(void);
    88 extern void PROFILE_UsageWineIni(void);
    89 extern int PROFILE_GetWineIniString( const char *section, const char *key_name,
    90                                      const char *def, char *buffer, int len );
    91 extern int PROFILE_GetWineIniInt( const char *section, const char *key_name,
    92                                   int def );
    93 extern int PROFILE_EnumerateWineIniSection(
    94     char const *section,
    95     void (*callback)(char const *key, char const *name, void *user),
    96     void *userptr );                 
    97 extern int PROFILE_GetWineIniBool( char const *section, char const *key_name,
    98                                    int def );
    99 extern char* PROFILE_GetStringItem( char* );
     88#define ODINCOLORS      "COLORS"
     89#define ODINDIRECTORIES "DIRECTORIES"
     90
     91int WINAPI PROFILE_GetOdinIniString(LPCSTR section,LPCSTR key_name,LPCSTR def,LPCSTR buffer,int len);
     92int WINAPI PROFILE_SetOdinIniString(LPCSTR section,LPCSTR key_name,LPCSTR value);
     93int WINAPI PROFILE_GetOdinIniInt(LPCSTR section,LPCSTR key_name,int def);
     94int WINAPI PROFILE_SetOdinIniInt(LPCSTR section,LPCSTR key_name,int value);
     95int WINAPI PROFILE_GetOdinIniBool(LPCSTR section,LPCSTR key_name,int def);
     96int WINAPI PROFILE_SetOdinIniBool(LPCSTR section,LPCSTR key_name,int value);
     97int WINAPI PROFILE_SaveOdinIni(void);
    10098
    10199/* Version functions */
Note: See TracChangeset for help on using the changeset viewer.