No Description

TestApp1.cpp 478B

1234567891011121314151617181920212223242526
  1. // TestApp1.cpp : Defines the entry point for the application.
  2. //
  3. #ifdef _WIN32
  4. #include "Win32/stdafx.h"
  5. #endif
  6. #include <DK.h>
  7. class TestApp1 : public DKApplication
  8. {
  9. public:
  10. };
  11. #ifdef _WIN32
  12. int APIENTRY wWinMain(_In_ HINSTANCE hInstance,
  13. _In_opt_ HINSTANCE hPrevInstance,
  14. _In_ LPWSTR lpCmdLine,
  15. _In_ int nCmdShow)
  16. #else
  17. int main(int argc, const char * argv[])
  18. #endif
  19. {
  20. return TestApp1().Run();
  21. }