Commit c912749b authored by Klaas van Gend's avatar Klaas van Gend Committed by Alexandre Julliard

Create a new subdirectory for the common dialog box DLL and move all

code from /misc/commdlg.c to this directory. Also made a start in documenting the API calls.
parent b0d52b00
......@@ -30,6 +30,7 @@ LIBSUBDIRS = \
console \
dlls/advapi32 \
dlls/comctl32 \
dlls/commdlg \
dlls/imagehlp \
dlls/msacm \
dlls/msacm32 \
......@@ -101,6 +102,7 @@ LIBOBJS = \
console/console.o \
dlls/advapi32/advapi32.o \
dlls/comctl32/comctl32.o \
dlls/commdlg/commdlg.o \
dlls/imagehlp/imagehlp.o \
dlls/msacm/msacm.o \
dlls/msacm32/msacm32.o \
......
......@@ -4598,6 +4598,7 @@ debugger/Makefile
dlls/Makefile
dlls/advapi32/Makefile
dlls/comctl32/Makefile
dlls/commdlg/Makefile
dlls/imagehlp/Makefile
dlls/msacm/Makefile
dlls/msacm32/Makefile
......@@ -4758,6 +4759,7 @@ debugger/Makefile
dlls/Makefile
dlls/advapi32/Makefile
dlls/comctl32/Makefile
dlls/commdlg/Makefile
dlls/imagehlp/Makefile
dlls/msacm/Makefile
dlls/msacm32/Makefile
......
......@@ -623,6 +623,7 @@ debugger/Makefile
dlls/Makefile
dlls/advapi32/Makefile
dlls/comctl32/Makefile
dlls/commdlg/Makefile
dlls/imagehlp/Makefile
dlls/msacm/Makefile
dlls/msacm32/Makefile
......
SUBDIRS = \
advapi32 \
comctl32 \
commdlg \
imagehlp \
msacm \
msacm32 \
......
DEFS = @DLLFLAGS@ -D__WINE__
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = commdlg
C_SRCS = \
colordlg.c \
filedlg.c \
finddlg.c \
fontdlg.c \
generic.c \
printdlg.c
all: $(MODULE).o
@MAKE_RULES@
### Dependencies:
/*
* COMMDLG functions
*
* Copyright 1994 Martin Ayotte
* Copyright 1996 Albrecht Kleine
* Copyright 1999 Klaas van Gend
*/
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include "winbase.h"
#include "wine/winbase16.h"
#include "wine/winuser16.h"
#include "win.h"
#include "heap.h"
#include "message.h"
#include "commdlg.h"
#include "resource.h"
#include "dialog.h"
#include "dlgs.h"
#include "module.h"
#include "drive.h"
#include "debug.h"
#include "font.h"
#include "winproc.h"
static DWORD CommDlgLastError = 0;
/***********************************************************************
* CommDlgExtendedError (COMMDLG.26)
*/
DWORD WINAPI CommDlgExtendedError(void)
{
return CommDlgLastError;
}
......@@ -9,7 +9,6 @@ C_SRCS = \
callback.c \
cdrom.c \
comm.c \
commdlg.c \
crtdll.c \
cpu.c \
ddeml.c \
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment