wine/include/loadorder.h
Peter Ganten c7c4246a99 - Always store the full path name of 32bit modules in WINE_MODREF
- 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.
2000-08-28 21:33:28 +00:00

29 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