mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
c7c4246a99
- Add the possibility to use path names with the --dll command line option - Add the possibility to use the --dll command line option several times. - Note: The colon-sign is now exchanged with the plus-sign, as it is part of dos path names.
28 lines
680 B
C
28 lines
680 B
C
/*
|
|
* Module/Library loadorder
|
|
*
|
|
* Copyright 1999 Bertho Stultiens
|
|
*/
|
|
|
|
#ifndef __WINE_LOADORDER_H
|
|
#define __WINE_LOADORDER_H
|
|
|
|
#include "windef.h"
|
|
|
|
#define MODULE_LOADORDER_INVALID 0 /* Must be 0 */
|
|
#define MODULE_LOADORDER_DLL 1 /* Native DLLs */
|
|
#define MODULE_LOADORDER_ELFDLL 2 /* Elf-dlls */
|
|
#define MODULE_LOADORDER_SO 3 /* Native .so libraries */
|
|
#define MODULE_LOADORDER_BI 4 /* Built-in modules */
|
|
#define MODULE_LOADORDER_NTYPES 4
|
|
|
|
typedef struct module_loadorder {
|
|
char *modulename;
|
|
char loadorder[MODULE_LOADORDER_NTYPES];
|
|
} module_loadorder_t;
|
|
|
|
BOOL MODULE_InitLoadOrder(void);
|
|
module_loadorder_t *MODULE_GetLoadOrder(const char *path, BOOL win32);
|
|
|
|
#endif
|
|
|