Help! In function ... error ... was not declared in this scope

I am trying to use Targettio's (GitHub - targettio/Arduino-IR-remote: A modified version of Ken's Library that allows sending and recieving from the same sketch) modified version of Ken Shiriff's (GitHub - Arduino-IRremote/Arduino-IRremote: Infrared remote library for Arduino: send and receive infrared signals with multiple protocols) IRremote library, but am running into some compile errors. It was working fine yesterday, but today I get errors.... I have made sure that the header files exist in the libraries folder....

Here are the errors:
IRSketch.cpp: In function 'void storeCode(decode_results*)':
IRSketch:122: error: 'SAMSUNG' was not declared in this scope
IRSketch:126: error: 'JVC' was not declared in this scope
IRSketch:130: error: 'PANASONIC' was not declared in this scope
IRSketch:134: error: 'SHARP' was not declared in this scope
IRSketch:138: error: 'DISH' was not declared in this scope
IRSketch.cpp: In function 'void sendCode(int)':
IRSketch:211: error: 'SAMSUNG' was not declared in this scope
IRSketch:212: error: 'class IRsend' has no member named 'sendSamsung'
IRSketch:216: error: 'PANASONIC' was not declared in this scope
IRSketch:217: error: 'class IRsend' has no member named 'sendPanasonic'
IRSketch:221: error: 'JVC' was not declared in this scope
IRSketch:222: error: 'class IRsend' has no member named 'sendJVC'
IRSketch:226: error: 'SHARP' was not declared in this scope
IRSketch:227: error: 'class IRsend' has no member named 'sendSharp'
IRSketch:231: error: 'DISH' was not declared in this scope
IRSketch:232: error: 'class IRsend' has no member named 'sendDISH'

Any idea what I am missing?

It was working fine yesterday,

THink you changed something (unintentionally) in the code, download it again is the first option that comes in mind

I downloaded the library again, but am still getting the same errors. I'm not sure what is causing the problems...

Bcarroll:
I downloaded the library again, but am still getting the same errors. I'm not sure what is causing the problems...

Post your code (not the library code).