Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Fusione colori - errori.h

errori.h

Caricato da: AldoBaldo
Scarica il programma completo

  1. #ifndef ERRORI_H_INCLUDED
  2. #define ERRORI_H_INCLUDED
  3.  
  4. #include <windows.h>
  5.  
  6. // il XXIX bit e' impostato per gli errori specifici di
  7. // un'applicazione; non impostato per quelli di sistema
  8. #define ERR_PROGRAMMA   0x10000000
  9.  
  10. enum {
  11.     kErrNessunErrore, // zero
  12.     kErrLimMinErr = ERR_PROGRAMMA,
  13.  
  14.     kErrMemoriaInsufficiente,
  15.     kErrFinestraNonCreata,
  16.     kErrTesseraOffscreenNonCreata,
  17.  
  18.     kErrLimMaxErr
  19. };
  20.  
  21. INT32 Errore( INT32 codice, HWND genitrice );
  22. void Notifica( const char *msg, HWND genitrice );
  23.  
  24.  
  25. #endif // ERRORI_H_INCLUDED