fix include pathname
This commit is contained in:
parent
e12b8a9e5c
commit
d33bcd601c
@ -1,5 +1,5 @@
|
||||
#include<hgl/thread/Semaphore.h>
|
||||
#include<hgl/LogInfo.h>
|
||||
#include<hgl/thread/Semaphore.h>
|
||||
#include<hgl/log/LogInfo.h>
|
||||
|
||||
namespace hgl
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include<hgl/filesystem/EnumFile.h>
|
||||
#include<hgl/LogInfo.h>
|
||||
#include<hgl/log/LogInfo.h>
|
||||
#include<unistd.h>
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include<hgl/platform/ExternalModule.h>
|
||||
#include<hgl/platform/Platform.h>
|
||||
#include<hgl/LogInfo.h>
|
||||
#include<hgl/log/LogInfo.h>
|
||||
|
||||
#include<dlfcn.h>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include<hgl/proc/Fifo.h>
|
||||
#include<hgl/Str.h>
|
||||
#include<hgl/type/StrChar.h>
|
||||
#include<sys/stat.h>
|
||||
|
||||
namespace hgl
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include<hgl/filesystem/FileSystem.h>
|
||||
#include<hgl/LogInfo.h>
|
||||
#include<hgl/log/LogInfo.h>
|
||||
#include<hgl/io/FileInputStream.h>
|
||||
#include<hgl/io/FileOutputStream.h>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include<hgl/io/FileAccess.h>
|
||||
#include<hgl/LogInfo.h>
|
||||
#include<hgl/log/LogInfo.h>
|
||||
#include<unistd.h>
|
||||
#include<stdlib.h>
|
||||
#include<fcntl.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include<hgl/Logger.h>
|
||||
#include<hgl/log/Logger.h>
|
||||
#include<hgl/CodePage.h>
|
||||
#include<hgl/thread/ThreadMutex.h>
|
||||
#include<unistd.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include<hgl/thread/Semaphore.h>
|
||||
#include<hgl/LogInfo.h>
|
||||
#include<hgl/log/LogInfo.h>
|
||||
#include<pthread.h>
|
||||
#include<semaphore.h>
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
#include<hgl/thread/Thread.h>
|
||||
#include<hgl/thread/CondVar.h>
|
||||
#include<hgl/LogInfo.h>
|
||||
#include<hgl/log/LogInfo.h>
|
||||
#include<signal.h>
|
||||
#include<errno.h>
|
||||
#include<hgl/Str.h>
|
||||
#include<hgl/type/StrChar.h>
|
||||
|
||||
namespace hgl
|
||||
{
|
||||
|
@ -91,6 +91,14 @@ namespace hgl
|
||||
win_name.Length(), win_name.c_str());
|
||||
}
|
||||
|
||||
void XCBWindow::ToMinWindow()
|
||||
{
|
||||
}
|
||||
|
||||
void XCBWindow::ToMaxWindow()
|
||||
{
|
||||
}
|
||||
|
||||
bool XCBWindow::MessageProc()
|
||||
{
|
||||
return(true);
|
||||
|
@ -13,7 +13,6 @@ namespace hgl
|
||||
private:
|
||||
|
||||
bool InitConnection();
|
||||
VkSurfaceKHR CreateSurface(VkInstance) override;
|
||||
|
||||
public:
|
||||
|
||||
@ -32,6 +31,10 @@ namespace hgl
|
||||
|
||||
void Show()override{}
|
||||
void Hide()override{}
|
||||
|
||||
void ToMinWindow() override;
|
||||
void ToMaxWindow() override;
|
||||
|
||||
bool MessageProc() override;
|
||||
bool WaitMessage() override;
|
||||
};//class XCBWindow:public Window
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include<hgl/platform/SystemInfo.h>
|
||||
#include<hgl/platform/SystemInfo.h>
|
||||
//#include<hgl/platform/ConsoleSystemInitInfo.h>
|
||||
#include<hgl/LogInfo.h>
|
||||
#include<hgl/log/LogInfo.h>
|
||||
#include<hgl/PlugIn.h>
|
||||
#include<hgl/filesystem/FileSystem.h>
|
||||
#include<wchar.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user