From 870ff2b13dafb87c420205c1835ffa6d7ab15d87 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Tue, 11 Jan 2000 02:59:25 +0000 Subject: [PATCH] Mumit Khan's fixes to allow DLL compilation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5337 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/db/dbtest.cpp | 2 +- samples/db/listdb.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/db/dbtest.cpp b/samples/db/dbtest.cpp index 18cc8f144a..a8afaf4139 100644 --- a/samples/db/dbtest.cpp +++ b/samples/db/dbtest.cpp @@ -46,7 +46,7 @@ #include /* Required in the file which will get the data source connection */ #include /* Has the wxTable object from which all data objects will inherit their data table functionality */ -extern DbList* WXDLLEXPORT PtrBegDbList; /* from db.cpp, used in getting back error results from db connections */ +extern DbList WXDLLEXPORT *PtrBegDbList; /* from db.cpp, used in getting back error results from db connections */ #include "dbtest.h" /* Header file for this demonstration program */ #include "listdb.h" /* Code to support the "Lookup" button on the editor dialog */ diff --git a/samples/db/listdb.cpp b/samples/db/listdb.cpp index 675b9b97ba..f5181d5d9c 100644 --- a/samples/db/listdb.cpp +++ b/samples/db/listdb.cpp @@ -56,7 +56,7 @@ #include -extern DbList* WXDLLEXPORT PtrBegDbList; /* from db.cpp, used in getting back error results from db connections */ +extern DbList WXDLLEXPORT *PtrBegDbList; /* from db.cpp, used in getting back error results from db connections */ #include "listdb.h" -- 2.45.2