Changeset a3f0fea in git for resources


Ignore:
Timestamp:
Jan 24, 2019, 1:08:04 PM (5 years ago)
Author:
Reimer Behrends <behrends@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
756676ef1fcf4cff300fb1607a6d21293b253245
Parents:
25fe907e3f7e0d124b25f97832c0b71e96c515e2
Message:
Modify variable declarions for pSingular.
Location:
resources
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • resources/feFopen.cc

    r25fe907 ra3f0fea  
    1919
    2020extern "C" {
    21 void (*WerrorS_callback)(const char *s) = NULL;
    22 void (*PrintS_callback)(const char *s) = NULL;
    23 short errorreported=0;
     21VAR void (*WerrorS_callback)(const char *s) = NULL;
     22VAR void (*PrintS_callback)(const char *s) = NULL;
     23VAR short errorreported=0;
    2424void WerrorS(const char *s)
    2525{
  • resources/feFopen.h

    r25fe907 ra3f0fea  
    2828#endif
    2929
    30 extern short errorreported;
     30EXTERN_VAR short errorreported;
    3131void    WerrorS(const char *s);
    32 extern void (*WerrorS_callback)(const char *s);
    33 extern void (*PrintS_callback)(const char *s);
     32EXTERN_VAR void (*WerrorS_callback)(const char *s);
     33EXTERN_VAR void (*PrintS_callback)(const char *s);
    3434
    3535#ifdef __cplusplus
  • resources/feResource.cc

    r25fe907 ra3f0fea  
    1717
    1818
    19 char* feArgv0 = NULL;
     19VAR char* feArgv0 = NULL;
    2020
    2121#ifdef AIX_4
     
    5252// 1.) '/' characters are replaced by respective directory - separators
    5353// 2.) ';' characters are replaced by respective path separators
    54 feResourceConfig_s feResourceConfigs[] =
     54VAR feResourceConfig_s feResourceConfigs[] =
    5555{
    5656  {"SearchPath",    's', feResPath,  NULL,
  • resources/feResource.h

    r25fe907 ra3f0fea  
    3030typedef feResourceConfig_s * feResourceConfig;
    3131
    32 extern feResourceConfig_s feResourceConfigs[];
     32EXTERN_VAR feResourceConfig_s feResourceConfigs[];
    3333
    3434// returns value of Resource as read-only string, or NULL
     
    5353#endif /* end ifdef __cplusplus */
    5454
    55 extern char* feArgv0;
     55EXTERN_VAR char* feArgv0;
    5656
    5757const char fePathSep = ':' ;
Note: See TracChangeset for help on using the changeset viewer.